145 lines
6.9 KiB
C#
145 lines
6.9 KiB
C#
namespace VAR.Toolbox.UI
|
|
{
|
|
partial class FrmProxyCmd
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.splitMain = new System.Windows.Forms.SplitContainer();
|
|
this.txtOutput = new System.Windows.Forms.TextBox();
|
|
this.txtInput = new System.Windows.Forms.TextBox();
|
|
this.ddlCurrentConfig = new System.Windows.Forms.ComboBox();
|
|
this.btnConfig = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitMain)).BeginInit();
|
|
this.splitMain.Panel1.SuspendLayout();
|
|
this.splitMain.Panel2.SuspendLayout();
|
|
this.splitMain.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitMain
|
|
//
|
|
this.splitMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.splitMain.BackColor = System.Drawing.SystemColors.ControlDark;
|
|
this.splitMain.Location = new System.Drawing.Point(0, 28);
|
|
this.splitMain.Name = "splitMain";
|
|
this.splitMain.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitMain.Panel1
|
|
//
|
|
this.splitMain.Panel1.Controls.Add(this.txtOutput);
|
|
//
|
|
// splitMain.Panel2
|
|
//
|
|
this.splitMain.Panel2.Controls.Add(this.txtInput);
|
|
this.splitMain.Size = new System.Drawing.Size(413, 418);
|
|
this.splitMain.SplitterDistance = 353;
|
|
this.splitMain.SplitterWidth = 10;
|
|
this.splitMain.TabIndex = 3;
|
|
this.splitMain.TabStop = false;
|
|
//
|
|
// txtOutput
|
|
//
|
|
this.txtOutput.BackColor = System.Drawing.Color.Black;
|
|
this.txtOutput.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtOutput.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txtOutput.ForeColor = System.Drawing.Color.Silver;
|
|
this.txtOutput.Location = new System.Drawing.Point(0, 0);
|
|
this.txtOutput.Multiline = true;
|
|
this.txtOutput.Name = "txtOutput";
|
|
this.txtOutput.ReadOnly = true;
|
|
this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.txtOutput.Size = new System.Drawing.Size(413, 353);
|
|
this.txtOutput.TabIndex = 1;
|
|
this.txtOutput.TabStop = false;
|
|
//
|
|
// txtInput
|
|
//
|
|
this.txtInput.BackColor = System.Drawing.Color.Black;
|
|
this.txtInput.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtInput.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.txtInput.ForeColor = System.Drawing.Color.Silver;
|
|
this.txtInput.Location = new System.Drawing.Point(0, 0);
|
|
this.txtInput.Multiline = true;
|
|
this.txtInput.Name = "txtInput";
|
|
this.txtInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
this.txtInput.Size = new System.Drawing.Size(413, 55);
|
|
this.txtInput.TabIndex = 0;
|
|
this.txtInput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtInput_KeyDown);
|
|
//
|
|
// ddlCurrentConfig
|
|
//
|
|
this.ddlCurrentConfig.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.ddlCurrentConfig.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.ddlCurrentConfig.FormattingEnabled = true;
|
|
this.ddlCurrentConfig.Location = new System.Drawing.Point(0, 1);
|
|
this.ddlCurrentConfig.Name = "ddlCurrentConfig";
|
|
this.ddlCurrentConfig.Size = new System.Drawing.Size(342, 21);
|
|
this.ddlCurrentConfig.TabIndex = 4;
|
|
this.ddlCurrentConfig.SelectedIndexChanged += new System.EventHandler(this.ddlCurrentConfig_SelectedIndexChanged);
|
|
//
|
|
// btnConfig
|
|
//
|
|
this.btnConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnConfig.Location = new System.Drawing.Point(348, 1);
|
|
this.btnConfig.Name = "btnConfig";
|
|
this.btnConfig.Size = new System.Drawing.Size(65, 23);
|
|
this.btnConfig.TabIndex = 5;
|
|
this.btnConfig.Text = "Config";
|
|
this.btnConfig.UseVisualStyleBackColor = true;
|
|
this.btnConfig.Click += new System.EventHandler(this.btnConfig_Click);
|
|
//
|
|
// FrmProxyCmd
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(413, 446);
|
|
this.Controls.Add(this.btnConfig);
|
|
this.Controls.Add(this.ddlCurrentConfig);
|
|
this.Controls.Add(this.splitMain);
|
|
this.Name = "FrmProxyCmd";
|
|
this.Text = "ProxyCmd";
|
|
this.splitMain.Panel1.ResumeLayout(false);
|
|
this.splitMain.Panel1.PerformLayout();
|
|
this.splitMain.Panel2.ResumeLayout(false);
|
|
this.splitMain.Panel2.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.splitMain)).EndInit();
|
|
this.splitMain.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitMain;
|
|
private System.Windows.Forms.TextBox txtOutput;
|
|
private System.Windows.Forms.TextBox txtInput;
|
|
private System.Windows.Forms.ComboBox ddlCurrentConfig;
|
|
private System.Windows.Forms.Button btnConfig;
|
|
}
|
|
} |