Here are the examples of the csharp api System.Windows.Forms.Control.ControlCollection.Add(System.Windows.Forms.Control) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
6647 Examples
19
View Source File : Form1.Designer.cs
License : GNU General Public License v3.0
Project Creator : 00000vish
License : GNU General Public License v3.0
Project Creator : 00000vish
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button3 = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.groupBox1.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(212)))), ((int)(((byte)(231)))));
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(323, 85);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Current HWID";
//
// label1
//
this.label1.AutoSize = true;
this.label1.ContextMenuStrip = this.contextMenuStrip1;
this.label1.Font = new System.Drawing.Font("Consolas", 9.25F);
this.label1.Location = new System.Drawing.Point(25, 37);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(0, 15);
this.label1.TabIndex = 0;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.copyToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(103, 26);
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(102, 22);
this.copyToolStripMenuItem.Text = "Copy";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
// button1
//
this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
this.button1.FlatAppearance.BorderSize = 0;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Location = new System.Drawing.Point(260, 103);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 1;
this.button1.Text = "Change";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
this.button2.FlatAppearance.BorderSize = 0;
this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button2.Location = new System.Drawing.Point(179, 103);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 2;
this.button2.Text = "Randomize";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(12, 105);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(242, 20);
this.textBox1.TabIndex = 3;
this.textBox1.Visible = false;
//
// button3
//
this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
this.button3.FlatAppearance.BorderSize = 0;
this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button3.Location = new System.Drawing.Point(260, 79);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(75, 23);
this.button3.TabIndex = 4;
this.button3.Text = "Cancel";
this.button3.UseVisualStyleBackColor = false;
this.button3.Visible = false;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(42)))));
this.ClientSize = new System.Drawing.Size(347, 141);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.textBox1);
this.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(212)))), ((int)(((byte)(231)))));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
this.Name = "Form1";
this.Text = "HWID_CHNGER";
this.TopMost = true;
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : settings.Designer.cs
License : GNU General Public License v3.0
Project Creator : 0x2b00b1e5
License : GNU General Public License v3.0
Project Creator : 0x2b00b1e5
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(settings));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.panel1 = new System.Windows.Forms.Panel();
this.sec_mode_sel = new System.Windows.Forms.RadioButton();
this.def_mode_selector = new System.Windows.Forms.RadioButton();
this.SecMode_txt = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.noPrj_txt = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.debugLevel_sel = new System.Windows.Forms.NumericUpDown();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
this.label7 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.dangerZone_enable = new System.Windows.Forms.CheckBox();
this.button1 = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.panel1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.debugLevel_sel)).BeginInit();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.panel1);
this.groupBox1.Controls.Add(this.SecMode_txt);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.noPrj_txt);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(399, 139);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "General Settings";
//
// panel1
//
this.panel1.Controls.Add(this.sec_mode_sel);
this.panel1.Controls.Add(this.def_mode_selector);
this.panel1.Location = new System.Drawing.Point(95, 99);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(277, 34);
this.panel1.TabIndex = 5;
//
// sec_mode_sel
//
this.sec_mode_sel.AutoSize = true;
this.sec_mode_sel.Location = new System.Drawing.Point(136, 10);
this.sec_mode_sel.Name = "sec_mode_sel";
this.sec_mode_sel.Size = new System.Drawing.Size(86, 17);
this.sec_mode_sel.TabIndex = 1;
this.sec_mode_sel.TabStop = true;
this.sec_mode_sel.Text = "Secret Mode";
this.sec_mode_sel.UseVisualStyleBackColor = true;
//
// def_mode_selector
//
this.def_mode_selector.AutoSize = true;
this.def_mode_selector.Location = new System.Drawing.Point(5, 10);
this.def_mode_selector.Name = "def_mode_selector";
this.def_mode_selector.Size = new System.Drawing.Size(88, 17);
this.def_mode_selector.TabIndex = 0;
this.def_mode_selector.TabStop = true;
this.def_mode_selector.Text = "Normal Mode";
this.def_mode_selector.UseVisualStyleBackColor = true;
//
// SecMode_txt
//
this.SecMode_txt.Location = new System.Drawing.Point(192, 73);
this.SecMode_txt.Name = "SecMode_txt";
this.SecMode_txt.Size = new System.Drawing.Size(180, 20);
this.SecMode_txt.TabIndex = 4;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(6, 111);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(73, 13);
this.label3.TabIndex = 3;
this.label3.Text = "Default mode:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 73);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(179, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Text to display when in secret mode:";
//
// noPrj_txt
//
this.noPrj_txt.Location = new System.Drawing.Point(165, 31);
this.noPrj_txt.Name = "noPrj_txt";
this.noPrj_txt.Size = new System.Drawing.Size(207, 20);
this.noPrj_txt.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 31);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(152, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Text to display if no project file:";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.numericUpDown1);
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.debugLevel_sel);
this.groupBox2.Location = new System.Drawing.Point(418, 13);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(258, 138);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Advanced Settings";
//
// numericUpDown1
//
this.numericUpDown1.Location = new System.Drawing.Point(126, 70);
this.numericUpDown1.Maximum = new decimal(new int[] {
120,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(38, 20);
this.numericUpDown1.TabIndex = 8;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 72);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(121, 13);
this.label5.TabIndex = 7;
this.label5.Text = "State refresh interval (s):";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(6, 33);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(114, 13);
this.label4.TabIndex = 6;
this.label4.Text = "Terminal Debug Level:";
//
// debugLevel_sel
//
this.debugLevel_sel.Location = new System.Drawing.Point(126, 30);
this.debugLevel_sel.Maximum = new decimal(new int[] {
3,
0,
0,
0});
this.debugLevel_sel.Name = "debugLevel_sel";
this.debugLevel_sel.Size = new System.Drawing.Size(30, 20);
this.debugLevel_sel.TabIndex = 0;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.numericUpDown2);
this.groupBox3.Controls.Add(this.label7);
this.groupBox3.Controls.Add(this.textBox1);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Enabled = false;
this.groupBox3.Location = new System.Drawing.Point(683, 43);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(234, 108);
this.groupBox3.TabIndex = 2;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Danger Zone";
//
// numericUpDown2
//
this.numericUpDown2.Location = new System.Drawing.Point(87, 47);
this.numericUpDown2.Maximum = new decimal(new int[] {
65967,
0,
0,
0});
this.numericUpDown2.Minimum = new decimal(new int[] {
1,
0,
0,
-2147483648});
this.numericUpDown2.Name = "numericUpDown2";
this.numericUpDown2.Size = new System.Drawing.Size(38, 20);
this.numericUpDown2.TabIndex = 9;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(7, 49);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(74, 13);
this.label7.TabIndex = 2;
this.label7.Text = "Network Pipe:";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(102, 17);
this.textBox1.MaxLength = 18;
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(121, 20);
this.textBox1.TabIndex = 1;
this.textBox1.Text = "476022809429147648";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(7, 20);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(89, 13);
this.label6.TabIndex = 0;
this.label6.Text = "Discord Client ID:";
//
// dangerZone_enable
//
this.dangerZone_enable.AutoSize = true;
this.dangerZone_enable.Location = new System.Drawing.Point(683, 20);
this.dangerZone_enable.Name = "dangerZone_enable";
this.dangerZone_enable.Size = new System.Drawing.Size(165, 17);
this.dangerZone_enable.TabIndex = 3;
this.dangerZone_enable.Text = "Enable Danger Zone controls";
this.dangerZone_enable.UseVisualStyleBackColor = true;
this.dangerZone_enable.CheckedChanged += new System.EventHandler(this.dangerZone_enable_CheckedChanged);
//
// button1
//
this.button1.Location = new System.Drawing.Point(12, 157);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(399, 39);
this.button1.TabIndex = 4;
this.button1.Text = "SAVE!";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// settings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(932, 207);
this.Controls.Add(this.button1);
this.Controls.Add(this.dangerZone_enable);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.HelpButton = true;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(948, 246);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(948, 246);
this.Name = "settings";
this.Text = "Settings";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.debugLevel_sel)).EndInit();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Client.cs
License : BSD 3-Clause "New" or "Revised" License
Project Creator : 0xthirteen
License : BSD 3-Clause "New" or "Revised" License
Project Creator : 0xthirteen
public void CreateRdpConnection(string server, string user, string domain, string preplacedword, string command, string execw, string runelevated, bool condrive, bool tover, bool nla)
{
keycode = new Dictionary<String, Code>();
KeyCodes();
runtype = runelevated;
isdrive = condrive;
cmd = command;
target = server;
execwith = execw;
takeover = tover;
networkauth = nla;
void ProcessTaskThread()
{
var form = new Form();
form.Opacity = 0;
form.Visible = false;
form.WindowState = FormWindowState.Minimized;
form.ShowInTaskbar = false;
form.FormBorderStyle = FormBorderStyle.None;
form.Width = Screen.PrimaryScreen.WorkingArea.Width;
form.Height = Screen.PrimaryScreen.WorkingArea.Height;
form.Load += (sender, args) =>
{
var rdpConnection = new AxMsRdpClient9NotSafeForScripting();
form.Controls.Add(rdpConnection);
var rdpC = rdpConnection.GetOcx() as IMsRdpClientNonScriptable5;
IMsRdpExtendedSettings rdpc2 = rdpConnection.GetOcx() as IMsRdpExtendedSettings;
rdpC.AllowPromptingForCredentials = false;
rdpC.AllowCredentialSaving = false;
rdpConnection.Server = server;
rdpConnection.Domain = domain;
rdpConnection.UserName = user;
rdpConnection.AdvancedSettings9.allowBackgroundInput = 1;
rdpConnection.AdvancedSettings9.BitmapPersistence = 0;
if(condrive == true)
{
rdpConnection.AdvancedSettings5.RedirectDrives = true;
}
if (preplacedword != string.Empty || user != string.Empty)
{
rdpConnection.UserName = user;
rdpConnection.AdvancedSettings9.ClearTextPreplacedword = preplacedword;
}
else
{
rdpc2.set_Property("RestrictedLogon", true);
rdpc2.set_Property("DisableCredentialsDelegation", true);
}
rdpConnection.AdvancedSettings9.EnableCredSspSupport = true;
if(networkauth == true)
{
rdpC.NegotiateSecurityLayer = true;
}
if (true)
{
rdpConnection.OnDisconnected += RdpConnectionOnOnDisconnected;
rdpConnection.OnLoginComplete += RdpConnectionOnOnLoginComplete;
rdpConnection.OnLogonError += RdpConnectionOnOnLogonError;
}
rdpConnection.Connect();
rdpConnection.Enabled = false;
rdpConnection.Dock = DockStyle.Fill;
Application.Run(form);
};
form.Show();
}
var rdpClientThread = new Thread(ProcessTaskThread) { IsBackground = true };
rdpClientThread.SetApartmentState(ApartmentState.STA);
rdpClientThread.Start();
while (rdpClientThread.IsAlive)
{
Task.Delay(500).GetAwaiter().GetResult();
}
}
19
View Source File : DiscordWebhook.Designer.cs
License : MIT License
Project Creator : 1-EXON
License : MIT License
Project Creator : 1-EXON
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DiscordWebhook));
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.setting = new System.Windows.Forms.PictureBox();
this.Chat = new System.Windows.Forms.PictureBox();
this.replacedle = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.Send = new System.Windows.Forms.PictureBox();
this.logout = new System.Windows.Forms.PictureBox();
this.resetRepeat = new System.Windows.Forms.CheckBox();
this.label8 = new System.Windows.Forms.Label();
this.help_but = new System.Windows.Forms.PictureBox();
this.resetContent = new System.Windows.Forms.CheckBox();
this.buttonGradation = new System.Windows.Forms.CheckBox();
this.Thema = new System.Windows.Forms.CheckBox();
this.name = new Guna.UI2.WinForms.Guna2TextBox();
this.repeat = new Guna.UI2.WinForms.Guna2TextBox();
this.image = new Guna.UI2.WinForms.Guna2TextBox();
this.content = new Guna.UI2.WinForms.Guna2TextBox();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.setting)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Chat)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.Send)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.logout)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.help_but)).BeginInit();
this.SuspendLayout();
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Font = new System.Drawing.Font("Arial Narrow", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(112, 70);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(52, 23);
this.label2.TabIndex = 6;
this.label2.Text = "Name";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Font = new System.Drawing.Font("Arial Narrow", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.Color.White;
this.label3.Location = new System.Drawing.Point(112, 141);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(132, 23);
this.label3.TabIndex = 7;
this.label3.Text = "Profile Image Link";
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Font = new System.Drawing.Font("Arial Narrow", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.Color.White;
this.label4.Location = new System.Drawing.Point(112, 215);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(63, 23);
this.label4.TabIndex = 8;
this.label4.Text = "Content";
//
// label5
//
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.Transparent;
this.label5.Font = new System.Drawing.Font("Arial Narrow", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.Color.White;
this.label5.Location = new System.Drawing.Point(424, 70);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(60, 23);
this.label5.TabIndex = 10;
this.label5.Text = "Repeat";
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel1.Controls.Add(this.setting);
this.panel1.Controls.Add(this.Chat);
this.panel1.Location = new System.Drawing.Point(19, 12);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(68, 539);
this.panel1.TabIndex = 13;
//
// setting
//
this.setting.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("setting.BackgroundImage")));
this.setting.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.setting.Location = new System.Drawing.Point(10, 129);
this.setting.Name = "setting";
this.setting.Size = new System.Drawing.Size(47, 46);
this.setting.TabIndex = 16;
this.setting.TabStop = false;
this.setting.Click += new System.EventHandler(this.setting_Click);
//
// Chat
//
this.Chat.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Chat.BackgroundImage")));
this.Chat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.Chat.Location = new System.Drawing.Point(10, 32);
this.Chat.Name = "Chat";
this.Chat.Size = new System.Drawing.Size(47, 49);
this.Chat.TabIndex = 15;
this.Chat.TabStop = false;
this.Chat.Click += new System.EventHandler(this.Chat_Click);
//
// replacedle
//
this.replacedle.AutoSize = true;
this.replacedle.BackColor = System.Drawing.Color.Transparent;
this.replacedle.Font = new System.Drawing.Font("Arial Narrow", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.replacedle.ForeColor = System.Drawing.Color.White;
this.replacedle.Location = new System.Drawing.Point(104, 12);
this.replacedle.Name = "replacedle";
this.replacedle.Size = new System.Drawing.Size(77, 43);
this.replacedle.TabIndex = 14;
this.replacedle.Text = "replacedle";
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(114, 98);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(50, 18);
this.label1.TabIndex = 16;
this.label1.Text = "label1";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// label6
//
this.label6.AutoSize = true;
this.label6.BackColor = System.Drawing.Color.Transparent;
this.label6.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.ForeColor = System.Drawing.Color.White;
this.label6.Location = new System.Drawing.Point(114, 169);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(50, 18);
this.label6.TabIndex = 17;
this.label6.Text = "label6";
this.label6.Click += new System.EventHandler(this.label6_Click);
//
// label7
//
this.label7.AutoSize = true;
this.label7.BackColor = System.Drawing.Color.Transparent;
this.label7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.Color.White;
this.label7.Location = new System.Drawing.Point(114, 244);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(50, 18);
this.label7.TabIndex = 18;
this.label7.Text = "label7";
this.label7.Click += new System.EventHandler(this.label7_Click);
//
// Send
//
this.Send.BackColor = System.Drawing.Color.Transparent;
this.Send.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("Send.BackgroundImage")));
this.Send.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.Send.Location = new System.Drawing.Point(117, 500);
this.Send.Name = "Send";
this.Send.Size = new System.Drawing.Size(100, 50);
this.Send.TabIndex = 20;
this.Send.TabStop = false;
this.Send.Click += new System.EventHandler(this.Send_Click);
//
// logout
//
this.logout.BackColor = System.Drawing.Color.Transparent;
this.logout.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("logout.BackgroundImage")));
this.logout.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.logout.Location = new System.Drawing.Point(661, 12);
this.logout.Name = "logout";
this.logout.Size = new System.Drawing.Size(89, 43);
this.logout.TabIndex = 21;
this.logout.TabStop = false;
this.logout.Click += new System.EventHandler(this.logout_Click_1);
//
// resetRepeat
//
this.resetRepeat.AutoSize = true;
this.resetRepeat.BackColor = System.Drawing.Color.Transparent;
this.resetRepeat.ForeColor = System.Drawing.Color.White;
this.resetRepeat.Location = new System.Drawing.Point(117, 360);
this.resetRepeat.Name = "resetRepeat";
this.resetRepeat.Size = new System.Drawing.Size(102, 19);
this.resetRepeat.TabIndex = 23;
this.resetRepeat.Text = "Reset Repeat";
this.resetRepeat.UseVisualStyleBackColor = false;
this.resetRepeat.CheckedChanged += new System.EventHandler(this.resetRepeat_CheckedChanged);
//
// label8
//
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.Transparent;
this.label8.Font = new System.Drawing.Font("Arial Narrow", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.ForeColor = System.Drawing.Color.White;
this.label8.Location = new System.Drawing.Point(113, 309);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(56, 23);
this.label8.TabIndex = 24;
this.label8.Text = "Setting";
//
// help_but
//
this.help_but.BackColor = System.Drawing.Color.Transparent;
this.help_but.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("help_but.BackgroundImage")));
this.help_but.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.help_but.Location = new System.Drawing.Point(690, 516);
this.help_but.Name = "help_but";
this.help_but.Size = new System.Drawing.Size(60, 35);
this.help_but.TabIndex = 25;
this.help_but.TabStop = false;
this.help_but.Click += new System.EventHandler(this.help_but_Click);
//
// resetContent
//
this.resetContent.AutoSize = true;
this.resetContent.BackColor = System.Drawing.Color.Transparent;
this.resetContent.Checked = true;
this.resetContent.CheckState = System.Windows.Forms.CheckState.Checked;
this.resetContent.ForeColor = System.Drawing.Color.White;
this.resetContent.Location = new System.Drawing.Point(117, 385);
this.resetContent.Name = "resetContent";
this.resetContent.Size = new System.Drawing.Size(105, 19);
this.resetContent.TabIndex = 26;
this.resetContent.Text = "Reset Content";
this.resetContent.UseVisualStyleBackColor = false;
this.resetContent.CheckedChanged += new System.EventHandler(this.resetContent_CheckedChanged);
//
// buttonGradation
//
this.buttonGradation.AutoSize = true;
this.buttonGradation.BackColor = System.Drawing.Color.Transparent;
this.buttonGradation.ForeColor = System.Drawing.Color.White;
this.buttonGradation.Location = new System.Drawing.Point(117, 410);
this.buttonGradation.Name = "buttonGradation";
this.buttonGradation.Size = new System.Drawing.Size(118, 19);
this.buttonGradation.TabIndex = 27;
this.buttonGradation.Text = "Button Gradation";
this.buttonGradation.UseVisualStyleBackColor = false;
this.buttonGradation.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// Thema
//
this.Thema.AutoSize = true;
this.Thema.BackColor = System.Drawing.Color.Transparent;
this.Thema.Checked = true;
this.Thema.CheckState = System.Windows.Forms.CheckState.Checked;
this.Thema.ForeColor = System.Drawing.Color.White;
this.Thema.Location = new System.Drawing.Point(117, 335);
this.Thema.Name = "Thema";
this.Thema.Size = new System.Drawing.Size(98, 19);
this.Thema.TabIndex = 28;
this.Thema.Text = "Black Thema";
this.Thema.UseVisualStyleBackColor = false;
this.Thema.CheckedChanged += new System.EventHandler(this.Thema_CheckedChanged);
//
// name
//
this.name.BackColor = System.Drawing.Color.Transparent;
this.name.BorderColor = System.Drawing.Color.Transparent;
this.name.BorderRadius = 15;
this.name.Cursor = System.Windows.Forms.Cursors.IBeam;
this.name.DefaultText = "";
this.name.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208)))));
this.name.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
this.name.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.name.DisabledState.Parent = this.name;
this.name.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.name.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.name.FocusedState.Parent = this.name;
this.name.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.name.ForeColor = System.Drawing.Color.Black;
this.name.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.name.HoverState.Parent = this.name;
this.name.Location = new System.Drawing.Point(112, 95);
this.name.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.name.Name = "name";
this.name.PreplacedwordChar = '\0';
this.name.PlaceholderText = "";
this.name.SelectedText = "";
this.name.ShadowDecoration.Parent = this.name;
this.name.Size = new System.Drawing.Size(214, 30);
this.name.TabIndex = 29;
this.name.KeyUp += new System.Windows.Forms.KeyEventHandler(this.name_KeyUp_1);
//
// repeat
//
this.repeat.BackColor = System.Drawing.Color.Transparent;
this.repeat.BorderColor = System.Drawing.Color.Transparent;
this.repeat.BorderRadius = 15;
this.repeat.Cursor = System.Windows.Forms.Cursors.IBeam;
this.repeat.DefaultText = "1";
this.repeat.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208)))));
this.repeat.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
this.repeat.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.repeat.DisabledState.Parent = this.repeat;
this.repeat.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.repeat.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.repeat.FocusedState.Parent = this.repeat;
this.repeat.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.repeat.ForeColor = System.Drawing.Color.Black;
this.repeat.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.repeat.HoverState.Parent = this.repeat;
this.repeat.Location = new System.Drawing.Point(428, 98);
this.repeat.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.repeat.Name = "repeat";
this.repeat.PreplacedwordChar = '\0';
this.repeat.PlaceholderText = "";
this.repeat.SelectedText = "";
this.repeat.SelectionStart = 1;
this.repeat.ShadowDecoration.Parent = this.repeat;
this.repeat.Size = new System.Drawing.Size(56, 30);
this.repeat.TabIndex = 30;
//
// image
//
this.image.BackColor = System.Drawing.Color.Transparent;
this.image.BorderColor = System.Drawing.Color.Black;
this.image.BorderRadius = 15;
this.image.Cursor = System.Windows.Forms.Cursors.IBeam;
this.image.DefaultText = "";
this.image.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208)))));
this.image.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
this.image.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.image.DisabledState.Parent = this.image;
this.image.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.image.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.image.FocusedState.Parent = this.image;
this.image.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.image.ForeColor = System.Drawing.Color.Black;
this.image.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.image.HoverState.Parent = this.image;
this.image.Location = new System.Drawing.Point(112, 168);
this.image.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.image.Name = "image";
this.image.PreplacedwordChar = '\0';
this.image.PlaceholderText = "";
this.image.SelectedText = "";
this.image.ShadowDecoration.Parent = this.image;
this.image.Size = new System.Drawing.Size(539, 30);
this.image.TabIndex = 31;
this.image.KeyUp += new System.Windows.Forms.KeyEventHandler(this.image_KeyUp_1);
//
// content
//
this.content.BackColor = System.Drawing.Color.Transparent;
this.content.BorderColor = System.Drawing.Color.Transparent;
this.content.BorderRadius = 15;
this.content.Cursor = System.Windows.Forms.Cursors.IBeam;
this.content.DefaultText = "";
this.content.DisabledState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(208)))), ((int)(((byte)(208)))));
this.content.DisabledState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(226)))), ((int)(((byte)(226)))));
this.content.DisabledState.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.content.DisabledState.Parent = this.content;
this.content.DisabledState.PlaceholderForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(138)))), ((int)(((byte)(138)))), ((int)(((byte)(138)))));
this.content.FocusedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.content.FocusedState.Parent = this.content;
this.content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.content.ForeColor = System.Drawing.Color.Black;
this.content.HoverState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.content.HoverState.Parent = this.content;
this.content.Location = new System.Drawing.Point(112, 242);
this.content.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.content.Multiline = true;
this.content.Name = "content";
this.content.PreplacedwordChar = '\0';
this.content.PlaceholderText = "";
this.content.SelectedText = "";
this.content.ShadowDecoration.Parent = this.content;
this.content.Size = new System.Drawing.Size(539, 234);
this.content.TabIndex = 32;
this.content.TextChanged += new System.EventHandler(this.content_TextChanged_1);
this.content.KeyUp += new System.Windows.Forms.KeyEventHandler(this.content_KeyUp);
//
// DiscordWebhook
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(762, 562);
this.Controls.Add(this.content);
this.Controls.Add(this.image);
this.Controls.Add(this.repeat);
this.Controls.Add(this.name);
this.Controls.Add(this.Thema);
this.Controls.Add(this.buttonGradation);
this.Controls.Add(this.resetContent);
this.Controls.Add(this.help_but);
this.Controls.Add(this.label8);
this.Controls.Add(this.resetRepeat);
this.Controls.Add(this.logout);
this.Controls.Add(this.Send);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.label1);
this.Controls.Add(this.replacedle);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.Name = "DiscordWebhook";
this.Text = " DisHook";
this.Load += new System.EventHandler(this.DiscordWebhook_Load);
this.panel1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.setting)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Chat)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.Send)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.logout)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.help_but)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : 1y0n
License : MIT License
Project Creator : 1y0n
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.button1 = new System.Windows.Forms.Button();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.button2 = new System.Windows.Forms.Button();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.textBox1 = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.linkLabel3 = new System.Windows.Forms.LinkLabel();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.label2 = new System.Windows.Forms.Label();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.textBox2 = new System.Windows.Forms.TextBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label6 = new System.Windows.Forms.Label();
this.comboBox4 = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(10, 128);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(174, 25);
this.button1.TabIndex = 5;
this.button1.Text = "生成免杀执行器";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(200, 128);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(174, 25);
this.button2.TabIndex = 9;
this.button2.Text = "一行命令免杀上线";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(410, -1);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(65, 12);
this.linkLabel1.TabIndex = 10;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "如何生成?";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.textBox1);
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Location = new System.Drawing.Point(11, 170);
this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox1.Size = new System.Drawing.Size(516, 462);
this.groupBox1.TabIndex = 13;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "粘贴 msfvenom 或 CobaltStrike 生成的 c 或 c# 格式 shellcode 到下方";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(1, 15);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.textBox1.Size = new System.Drawing.Size(514, 449);
this.textBox1.TabIndex = 4;
this.textBox1.Text = resources.GetString("textBox1.Text");
//
// groupBox2
//
this.groupBox2.Controls.Add(this.checkBox3);
this.groupBox2.Controls.Add(this.checkBox2);
this.groupBox2.Controls.Add(this.numericUpDown1);
this.groupBox2.Controls.Add(this.checkBox1);
this.groupBox2.Controls.Add(this.linkLabel3);
this.groupBox2.Controls.Add(this.radioButton2);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.radioButton1);
this.groupBox2.Controls.Add(this.textBox2);
this.groupBox2.Controls.Add(this.pictureBox1);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.comboBox4);
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.comboBox1);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Location = new System.Drawing.Point(9, 10);
this.groupBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.groupBox2.Size = new System.Drawing.Size(518, 106);
this.groupBox2.TabIndex = 16;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "基础配置";
//
// checkBox3
//
this.checkBox3.AutoSize = true;
this.checkBox3.Enabled = false;
this.checkBox3.Font = new System.Drawing.Font("宋体", 10F);
this.checkBox3.Location = new System.Drawing.Point(370, 79);
this.checkBox3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.checkBox3.Name = "checkBox3";
this.checkBox3.Size = new System.Drawing.Size(124, 18);
this.checkBox3.TabIndex = 35;
this.checkBox3.Text = "变量函数随机化";
this.checkBox3.UseVisualStyleBackColor = true;
this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged);
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Font = new System.Drawing.Font("宋体", 10F);
this.checkBox2.Location = new System.Drawing.Point(242, 79);
this.checkBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(110, 18);
this.checkBox2.TabIndex = 34;
this.checkBox2.Text = "隐藏执行界面";
this.checkBox2.UseVisualStyleBackColor = true;
this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
//
// numericUpDown1
//
this.numericUpDown1.Enabled = false;
this.numericUpDown1.Location = new System.Drawing.Point(148, 78);
this.numericUpDown1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.numericUpDown1.Maximum = new decimal(new int[] {
300,
0,
0,
0});
this.numericUpDown1.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(58, 21);
this.numericUpDown1.TabIndex = 33;
this.numericUpDown1.Value = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Font = new System.Drawing.Font("宋体", 10F);
this.checkBox1.Location = new System.Drawing.Point(7, 79);
this.checkBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(152, 18);
this.checkBox1.TabIndex = 32;
this.checkBox1.Text = "延时执行(秒、约):";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// linkLabel3
//
this.linkLabel3.AutoSize = true;
this.linkLabel3.Font = new System.Drawing.Font("宋体", 10F);
this.linkLabel3.LinkColor = System.Drawing.Color.Black;
this.linkLabel3.Location = new System.Drawing.Point(166, 17);
this.linkLabel3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.linkLabel3.Name = "linkLabel3";
this.linkLabel3.Size = new System.Drawing.Size(126, 14);
this.linkLabel3.TabIndex = 29;
this.linkLabel3.TabStop = true;
this.linkLabel3.Text = "执行方式(区别?):";
this.linkLabel3.VisitedLinkColor = System.Drawing.Color.Black;
this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(121, 43);
this.radioButton2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(41, 16);
this.radioButton2.TabIndex = 27;
this.radioButton2.Text = "x64";
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("宋体", 10F);
this.label2.Location = new System.Drawing.Point(473, 32);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 14);
this.label2.TabIndex = 31;
this.label2.Text = "图标";
this.label2.Click += new System.EventHandler(this.label2_Click);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(76, 43);
this.radioButton1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(41, 16);
this.radioButton1.TabIndex = 26;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "x86";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(374, 41);
this.textBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(86, 21);
this.textBox2.TabIndex = 25;
this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
//
// pictureBox1
//
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox1.Location = new System.Drawing.Point(468, 16);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(42, 45);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 30;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("宋体", 10F);
this.label6.Location = new System.Drawing.Point(371, 16);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(77, 14);
this.label6.TabIndex = 24;
this.label6.Text = "注入进程:";
//
// comboBox4
//
this.comboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox4.Font = new System.Drawing.Font("宋体", 10F);
this.comboBox4.FormattingEnabled = true;
this.comboBox4.Items.AddRange(new object[] {
"直接执行(VirtualAlloc)",
"直接执行(VirtualProtect)",
"新进程注入(VirtualAllocEx)",
"[x64]新进程注入(SYSCALL)",
"注入现有进程(VirtualAllocEx)",
"[x64]注入现有进程(SYSCALL)",
"进程镂空(Process Hollowing)"});
this.comboBox4.Location = new System.Drawing.Point(168, 41);
this.comboBox4.Name = "comboBox4";
this.comboBox4.Size = new System.Drawing.Size(197, 21);
this.comboBox4.TabIndex = 22;
this.comboBox4.SelectedIndexChanged += new System.EventHandler(this.comboBox4_SelectedIndexChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("宋体", 10F);
this.label3.Location = new System.Drawing.Point(74, 17);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(77, 14);
this.label3.TabIndex = 19;
this.label3.Text = "目标架构:";
//
// comboBox1
//
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.Font = new System.Drawing.Font("宋体", 10F);
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
".exe",
".js",
".xsl"});
this.comboBox1.Location = new System.Drawing.Point(7, 41);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(58, 21);
this.comboBox1.TabIndex = 16;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 10F);
this.label1.Location = new System.Drawing.Point(4, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 14);
this.label1.TabIndex = 17;
this.label1.Text = "生成格式:";
//
// button3
//
this.button3.Location = new System.Drawing.Point(390, 128);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(135, 25);
this.button3.TabIndex = 17;
this.button3.Text = "关于掩日";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(536, 638);
this.Controls.Add(this.button3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "掩日 - 免杀执行器生成工具 v1.0 beta ©1y0n.com";
this.Load += new System.EventHandler(this.Form1_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : 1y0n
License : MIT License
Project Creator : 1y0n
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.comboBox5 = new System.Windows.Forms.ComboBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.panel1 = new System.Windows.Forms.Panel();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.label8 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.radioButton6 = new System.Windows.Forms.RadioButton();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.radioButton3 = new System.Windows.Forms.RadioButton();
this.label6 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.comboBox2 = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.comboBox3 = new System.Windows.Forms.ComboBox();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.panel1.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
this.SuspendLayout();
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Font = new System.Drawing.Font("微软雅黑", 8F);
this.linkLabel1.LinkColor = System.Drawing.Color.Blue;
this.linkLabel1.Location = new System.Drawing.Point(187, 56);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(56, 20);
this.linkLabel1.TabIndex = 0;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "🔻进阶";
this.toolTip1.SetToolTip(this.linkLabel1, "打开进阶选项");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(23, 13);
this.textBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(265, 27);
this.textBox1.TabIndex = 3;
this.textBox1.Text = "127.0.0.1:4444";
this.toolTip1.SetToolTip(this.textBox1, "格式为 IP:端口,支持输入多个IP:端口,英文 , 隔开。如果填入多个IP(最多3个),程序在运行时将随机连接一个地址,连接失败会自动重试其他地址");
//
// button1
//
this.button1.Font = new System.Drawing.Font("宋体", 9F);
this.button1.Location = new System.Drawing.Point(103, 46);
this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(84, 26);
this.button1.TabIndex = 5;
this.button1.Text = "生成";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(272, 52);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(30, 20);
this.label3.TabIndex = 8;
this.label3.Text = "🛠";
this.toolTip1.SetToolTip(this.label3, "关于");
this.label3.Click += new System.EventHandler(this.label3_Click);
//
// toolTip1
//
this.toolTip1.AutoPopDelay = 15000;
this.toolTip1.InitialDelay = 500;
this.toolTip1.ReshowDelay = 100;
//
// comboBox5
//
this.comboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox5.Font = new System.Drawing.Font("微软雅黑", 8F);
this.comboBox5.FormattingEnabled = true;
this.comboBox5.Location = new System.Drawing.Point(102, 134);
this.comboBox5.Name = "comboBox5";
this.comboBox5.Size = new System.Drawing.Size(185, 27);
this.comboBox5.TabIndex = 23;
this.toolTip1.SetToolTip(this.comboBox5, "已经自带了简单的反沙箱功能,可以按需再选");
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(102, 92);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(185, 27);
this.textBox2.TabIndex = 15;
this.textBox2.Text = "notepad.exe";
this.toolTip1.SetToolTip(this.textBox2, "注入新进程建议输入 notepad.exe 或 calc.exe 等");
//
// panel1
//
this.panel1.Controls.Add(this.richTextBox1);
this.panel1.Controls.Add(this.comboBox5);
this.panel1.Controls.Add(this.label8);
this.panel1.Controls.Add(this.panel2);
this.panel1.Controls.Add(this.textBox2);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.comboBox2);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.comboBox1);
this.panel1.Controls.Add(this.label1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel1.Location = new System.Drawing.Point(0, 78);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(305, 403);
this.panel1.TabIndex = 9;
this.panel1.Visible = false;
//
// richTextBox1
//
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.richTextBox1.ForeColor = System.Drawing.Color.Gray;
this.richTextBox1.Location = new System.Drawing.Point(0, 232);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(305, 171);
this.richTextBox1.TabIndex = 10;
this.richTextBox1.Text = "粘贴msfvenom或CobaltStrike生成的shellcode到此, shellcode必须为 c 或 c# 格式";
this.richTextBox1.Click += new System.EventHandler(this.richTextBox1_Click);
this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(11, 138);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(105, 20);
this.label8.TabIndex = 22;
this.label8.Text = "虚拟机/沙箱:";
//
// panel2
//
this.panel2.Controls.Add(this.radioButton6);
this.panel2.Controls.Add(this.pictureBox3);
this.panel2.Controls.Add(this.radioButton3);
this.panel2.Controls.Add(this.label6);
this.panel2.Location = new System.Drawing.Point(2, 172);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(301, 62);
this.panel2.TabIndex = 19;
//
// radioButton6
//
this.radioButton6.AutoSize = true;
this.radioButton6.Location = new System.Drawing.Point(166, 30);
this.radioButton6.Name = "radioButton6";
this.radioButton6.Size = new System.Drawing.Size(75, 24);
this.radioButton6.TabIndex = 28;
this.radioButton6.Text = "自定义";
this.radioButton6.UseVisualStyleBackColor = true;
this.radioButton6.CheckedChanged += new System.EventHandler(this.radioButton6_CheckedChanged);
//
// pictureBox3
//
this.pictureBox3.Location = new System.Drawing.Point(250, 19);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(35, 35);
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox3.TabIndex = 27;
this.pictureBox3.TabStop = false;
//
// radioButton3
//
this.radioButton3.AutoSize = true;
this.radioButton3.Checked = true;
this.radioButton3.Location = new System.Drawing.Point(100, 30);
this.radioButton3.Name = "radioButton3";
this.radioButton3.Size = new System.Drawing.Size(45, 24);
this.radioButton3.TabIndex = 21;
this.radioButton3.TabStop = true;
this.radioButton3.Text = "无";
this.radioButton3.UseVisualStyleBackColor = true;
this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(9, 1);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(84, 20);
this.label6.TabIndex = 20;
this.label6.Text = "设置图标:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(11, 96);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(99, 20);
this.label4.TabIndex = 14;
this.label4.Text = "注入进程名:";
//
// comboBox2
//
this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox2.Font = new System.Drawing.Font("微软雅黑", 8F);
this.comboBox2.FormattingEnabled = true;
this.comboBox2.Location = new System.Drawing.Point(101, 53);
this.comboBox2.Name = "comboBox2";
this.comboBox2.Size = new System.Drawing.Size(185, 27);
this.comboBox2.TabIndex = 13;
this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 56);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(84, 20);
this.label2.TabIndex = 12;
this.label2.Text = "执行方式:";
//
// comboBox1
//
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.Font = new System.Drawing.Font("微软雅黑", 8F);
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
"C",
"C#"});
this.comboBox1.Location = new System.Drawing.Point(102, 8);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(185, 27);
this.comboBox1.TabIndex = 11;
this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(11, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(84, 20);
this.label1.TabIndex = 10;
this.label1.Text = "编译语言:";
//
// comboBox3
//
this.comboBox3.BackColor = System.Drawing.SystemColors.Window;
this.comboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox3.Font = new System.Drawing.Font("微软雅黑", 8F);
this.comboBox3.ForeColor = System.Drawing.Color.Black;
this.comboBox3.FormattingEnabled = true;
this.comboBox3.Items.AddRange(new object[] {
"32位",
"64位"});
this.comboBox3.Location = new System.Drawing.Point(23, 48);
this.comboBox3.Name = "comboBox3";
this.comboBox3.Size = new System.Drawing.Size(48, 27);
this.comboBox3.TabIndex = 17;
this.comboBox3.SelectedIndexChanged += new System.EventHandler(this.comboBox3_SelectedIndexChanged);
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(305, 481);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label3);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.comboBox3);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "掩日 2.0 - 1y0n.com";
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.panel2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : 200Tigersbloxed
License : MIT License
Project Creator : 200Tigersbloxed
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.closeForm1 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button3 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.button4 = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.closeForm1);
this.panel1.Location = new System.Drawing.Point(-4, -3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(402, 36);
this.panel1.TabIndex = 0;
this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.Control;
this.label1.Location = new System.Drawing.Point(17, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 13);
this.label1.TabIndex = 2;
this.label1.Text = "BSMulti Installer v2";
//
// closeForm1
//
this.closeForm1.FlatAppearance.BorderSize = 0;
this.closeForm1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.closeForm1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.closeForm1.ForeColor = System.Drawing.SystemColors.Control;
this.closeForm1.Location = new System.Drawing.Point(353, 0);
this.closeForm1.Name = "closeForm1";
this.closeForm1.Size = new System.Drawing.Size(46, 36);
this.closeForm1.TabIndex = 1;
this.closeForm1.TabStop = false;
this.closeForm1.Text = "X";
this.closeForm1.UseVisualStyleBackColor = true;
this.closeForm1.Click += new System.EventHandler(this.closeForm1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Arial Narrow", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.SystemColors.Control;
this.label2.Location = new System.Drawing.Point(12, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 25);
this.label2.TabIndex = 3;
this.label2.Text = "Step 1";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.SystemColors.Control;
this.label3.Location = new System.Drawing.Point(14, 106);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(215, 16);
this.label3.TabIndex = 4;
this.label3.Text = "Please select your Beat Saber Directory";
//
// button1
//
this.button1.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.button1.FlatAppearance.BorderSize = 0;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.SystemColors.Control;
this.button1.Location = new System.Drawing.Point(12, 217);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(122, 38);
this.button1.TabIndex = 5;
this.button1.TabStop = false;
this.button1.Text = "STEAM";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label4.Location = new System.Drawing.Point(112, 186);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(168, 16);
this.label4.TabIndex = 6;
this.label4.Text = "AUTO FIND GAME DIRECTORY";
//
// button2
//
this.button2.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.button2.FlatAppearance.BorderSize = 0;
this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button2.ForeColor = System.Drawing.SystemColors.Control;
this.button2.Location = new System.Drawing.Point(261, 217);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(122, 38);
this.button2.TabIndex = 7;
this.button2.TabStop = false;
this.button2.Text = "OCULUS";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label5.Location = new System.Drawing.Point(183, 268);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(24, 16);
this.label5.TabIndex = 8;
this.label5.Text = "OR";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label6.Location = new System.Drawing.Point(96, 307);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(199, 16);
this.label6.TabIndex = 9;
this.label6.Text = "MANUALLY FIND GAME DIRECTORY";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(17, 339);
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(278, 20);
this.textBox1.TabIndex = 10;
//
// button3
//
this.button3.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.button3.FlatAppearance.BorderSize = 0;
this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button3.ForeColor = System.Drawing.SystemColors.Control;
this.button3.Location = new System.Drawing.Point(309, 339);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(74, 20);
this.button3.TabIndex = 11;
this.button3.TabStop = false;
this.button3.Text = "SELECT";
this.button3.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.button3.UseVisualStyleBackColor = false;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label7.Location = new System.Drawing.Point(14, 394);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(372, 16);
this.label7.TabIndex = 12;
this.label7.Text = "---------------------------------------------------------------------------------" +
"----------";
//
// button4
//
this.button4.BackColor = System.Drawing.SystemColors.GrayText;
this.button4.FlatAppearance.BorderSize = 0;
this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button4.ForeColor = System.Drawing.SystemColors.Control;
this.button4.Location = new System.Drawing.Point(16, 425);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(122, 38);
this.button4.TabIndex = 13;
this.button4.TabStop = false;
this.button4.Text = "NEXT";
this.button4.UseVisualStyleBackColor = false;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// pictureBox1
//
this.pictureBox1.Image = global::BSMulti_Installer2.Properties.Resources.cross;
this.pictureBox1.Location = new System.Drawing.Point(309, 62);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(69, 69);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 14;
this.pictureBox1.TabStop = false;
//
// linkLabel1
//
this.linkLabel1.LinkColor = System.Drawing.SystemColors.MenuHighlight;
this.linkLabel1.Location = new System.Drawing.Point(139, 231);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(117, 23);
this.linkLabel1.TabIndex = 29;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "README";
this.linkLabel1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.ForeColor = System.Drawing.SystemColors.Control;
this.label8.Location = new System.Drawing.Point(144, 425);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(113, 16);
this.label8.TabIndex = 30;
this.label8.Text = "Multiplayer Version:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label9.ForeColor = System.Drawing.SystemColors.Control;
this.label9.Location = new System.Drawing.Point(144, 447);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(133, 16);
this.label9.TabIndex = 31;
this.label9.Text = "MultiplayerLite Version:";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37)))));
this.ClientSize = new System.Drawing.Size(395, 484);
this.Controls.Add(this.label9);
this.Controls.Add(this.label8);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.button4);
this.Controls.Add(this.label7);
this.Controls.Add(this.button3);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label6);
this.Controls.Add(this.label5);
this.Controls.Add(this.button2);
this.Controls.Add(this.label4);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "BeatSaber Multiplayer Installer v2";
this.Load += new System.EventHandler(this.Form1_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ConditionTaskForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConditionTaskForm));
this.scb_condition1 = new CCWin.SkinControl.SkinComboBox();
this.label1 = new System.Windows.Forms.Label();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.deleteItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.upToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.downToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.task_name = new CCWin.SkinControl.SkinTextBox();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.scb_status3 = new CCWin.SkinControl.SkinComboBox();
this.btn_di3 = new System.Windows.Forms.Button();
this.scb_condition3 = new CCWin.SkinControl.SkinComboBox();
this.rb_q2 = new System.Windows.Forms.RadioButton();
this.rb_h2 = new System.Windows.Forms.RadioButton();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.scb_status2 = new CCWin.SkinControl.SkinComboBox();
this.scb_status1 = new CCWin.SkinControl.SkinComboBox();
this.btn_di2 = new System.Windows.Forms.Button();
this.rb_q1 = new System.Windows.Forms.RadioButton();
this.rb_h1 = new System.Windows.Forms.RadioButton();
this.scb_condition2 = new CCWin.SkinControl.SkinComboBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.button1 = new System.Windows.Forms.Button();
this.shell = new CCWin.SkinControl.SkinTextBox();
this.shell_name = new CCWin.SkinControl.SkinTextBox();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.scb_template = new CCWin.SkinControl.SkinListView();
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.var_list = new CCWin.SkinControl.SkinListView();
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// scb_condition1
//
this.scb_condition1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition1.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_condition1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_condition1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_condition1.Font = new System.Drawing.Font("宋体", 10F);
this.scb_condition1.FormattingEnabled = true;
this.scb_condition1.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition1.ItemHeight = 18;
this.scb_condition1.Location = new System.Drawing.Point(98, 19);
this.scb_condition1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_condition1.MouseColor = System.Drawing.Color.Orange;
this.scb_condition1.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_condition1.Name = "scb_condition1";
this.scb_condition1.Size = new System.Drawing.Size(192, 24);
this.scb_condition1.TabIndex = 1;
this.scb_condition1.WaterText = "";
this.scb_condition1.SelectedIndexChanged += new System.EventHandler(this.scb_condition1_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(68, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(22, 19);
this.label1.TabIndex = 2;
this.label1.Text = "当";
//
// customShellListView
//
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3});
this.customShellListView.ContextMenuStrip = this.contextMenuStrip1;
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(20, 290);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.LightSkyBlue;
this.customShellListView.Size = new System.Drawing.Size(955, 367);
this.customShellListView.TabIndex = 11;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AllKeyUp);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader2
//
this.columnHeader2.Text = "命令名称";
this.columnHeader2.Width = 200;
//
// columnHeader3
//
this.columnHeader3.Text = "Shell脚本";
this.columnHeader3.Width = 750;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.deleteItemToolStripMenuItem,
this.upToolStripMenuItem,
this.downToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
//
// deleteItemToolStripMenuItem
//
this.deleteItemToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.remove_16px;
this.deleteItemToolStripMenuItem.Name = "deleteItemToolStripMenuItem";
this.deleteItemToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.deleteItemToolStripMenuItem.Text = "Delete Item";
this.deleteItemToolStripMenuItem.Click += new System.EventHandler(this.deleteItemToolStripMenuItem_Click);
//
// upToolStripMenuItem
//
this.upToolStripMenuItem.Name = "upToolStripMenuItem";
this.upToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.upToolStripMenuItem.Text = "Up";
this.upToolStripMenuItem.Click += new System.EventHandler(this.upToolStripMenuItem_Click);
//
// downToolStripMenuItem
//
this.downToolStripMenuItem.Name = "downToolStripMenuItem";
this.downToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.downToolStripMenuItem.Text = "Down";
this.downToolStripMenuItem.Click += new System.EventHandler(this.downToolStripMenuItem_Click);
//
// task_name
//
this.task_name.BackColor = System.Drawing.Color.Transparent;
this.task_name.DownBack = null;
this.task_name.Icon = null;
this.task_name.IconIsButton = false;
this.task_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.task_name.IsPreplacedwordChat = '\0';
this.task_name.IsSystemPreplacedwordChar = false;
this.task_name.Lines = new string[0];
this.task_name.Location = new System.Drawing.Point(93, 19);
this.task_name.Margin = new System.Windows.Forms.Padding(0);
this.task_name.MaxLength = 32767;
this.task_name.MinimumSize = new System.Drawing.Size(28, 28);
this.task_name.MouseBack = null;
this.task_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.task_name.Multiline = false;
this.task_name.Name = "task_name";
this.task_name.NormlBack = null;
this.task_name.Padding = new System.Windows.Forms.Padding(5);
this.task_name.ReadOnly = false;
this.task_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.task_name.Size = new System.Drawing.Size(433, 28);
//
//
//
this.task_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.task_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.task_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.task_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.task_name.SkinTxt.Name = "BaseText";
this.task_name.SkinTxt.Size = new System.Drawing.Size(423, 18);
this.task_name.SkinTxt.TabIndex = 0;
this.task_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.task_name.SkinTxt.WaterText = "任务名称";
this.task_name.TabIndex = 12;
this.task_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.task_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.task_name.WaterText = "任务名称";
this.task_name.WordWrap = true;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(12, 23);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(74, 19);
this.label2.TabIndex = 13;
this.label2.Text = "任务名称:";
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
this.groupBox1.Controls.Add(this.groupBox5);
this.groupBox1.Controls.Add(this.groupBox4);
this.groupBox1.Location = new System.Drawing.Point(20, 110);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(427, 172);
this.groupBox1.TabIndex = 14;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "执行条件";
//
// groupBox5
//
this.groupBox5.Controls.Add(this.scb_status3);
this.groupBox5.Controls.Add(this.btn_di3);
this.groupBox5.Controls.Add(this.scb_condition3);
this.groupBox5.Controls.Add(this.rb_q2);
this.groupBox5.Controls.Add(this.rb_h2);
this.groupBox5.Location = new System.Drawing.Point(6, 108);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(415, 54);
this.groupBox5.TabIndex = 26;
this.groupBox5.TabStop = false;
//
// scb_status3
//
this.scb_status3.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status3.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_status3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_status3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_status3.Font = new System.Drawing.Font("宋体", 10F);
this.scb_status3.FormattingEnabled = true;
this.scb_status3.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status3.ItemHeight = 18;
this.scb_status3.Location = new System.Drawing.Point(295, 20);
this.scb_status3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_status3.MouseColor = System.Drawing.Color.Orange;
this.scb_status3.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_status3.Name = "scb_status3";
this.scb_status3.Size = new System.Drawing.Size(90, 24);
this.scb_status3.TabIndex = 24;
this.scb_status3.WaterText = "";
//
// btn_di3
//
this.btn_di3.Enabled = false;
this.btn_di3.Image = global::AppMonitor.Properties.Resources.remove_16px;
this.btn_di3.Location = new System.Drawing.Point(391, 22);
this.btn_di3.Name = "btn_di3";
this.btn_di3.Size = new System.Drawing.Size(20, 20);
this.btn_di3.TabIndex = 22;
this.btn_di3.UseVisualStyleBackColor = true;
this.btn_di3.Click += new System.EventHandler(this.btn_di3_Click);
//
// scb_condition3
//
this.scb_condition3.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition3.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_condition3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_condition3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_condition3.Enabled = false;
this.scb_condition3.Font = new System.Drawing.Font("宋体", 10F);
this.scb_condition3.FormattingEnabled = true;
this.scb_condition3.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition3.ItemHeight = 18;
this.scb_condition3.Location = new System.Drawing.Point(98, 19);
this.scb_condition3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_condition3.MouseColor = System.Drawing.Color.Orange;
this.scb_condition3.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_condition3.Name = "scb_condition3";
this.scb_condition3.Size = new System.Drawing.Size(192, 24);
this.scb_condition3.TabIndex = 23;
this.scb_condition3.WaterText = "";
this.scb_condition3.SelectedIndexChanged += new System.EventHandler(this.scb_condition3_SelectedIndexChanged);
//
// rb_q2
//
this.rb_q2.AutoSize = true;
this.rb_q2.Enabled = false;
this.rb_q2.Location = new System.Drawing.Point(8, 21);
this.rb_q2.Name = "rb_q2";
this.rb_q2.Size = new System.Drawing.Size(38, 21);
this.rb_q2.TabIndex = 21;
this.rb_q2.TabStop = true;
this.rb_q2.Text = "且";
this.rb_q2.UseVisualStyleBackColor = true;
this.rb_q2.CheckedChanged += new System.EventHandler(this.CheckBoxGroup2_CheckedChange);
//
// rb_h2
//
this.rb_h2.AutoSize = true;
this.rb_h2.Enabled = false;
this.rb_h2.Location = new System.Drawing.Point(52, 21);
this.rb_h2.Name = "rb_h2";
this.rb_h2.Size = new System.Drawing.Size(38, 21);
this.rb_h2.TabIndex = 22;
this.rb_h2.TabStop = true;
this.rb_h2.Text = "或";
this.rb_h2.UseVisualStyleBackColor = true;
this.rb_h2.CheckedChanged += new System.EventHandler(this.CheckBoxGroup2_CheckedChange);
//
// groupBox4
//
this.groupBox4.Controls.Add(this.scb_status2);
this.groupBox4.Controls.Add(this.scb_status1);
this.groupBox4.Controls.Add(this.btn_di2);
this.groupBox4.Controls.Add(this.scb_condition1);
this.groupBox4.Controls.Add(this.label1);
this.groupBox4.Controls.Add(this.rb_q1);
this.groupBox4.Controls.Add(this.rb_h1);
this.groupBox4.Controls.Add(this.scb_condition2);
this.groupBox4.Location = new System.Drawing.Point(6, 17);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(415, 92);
this.groupBox4.TabIndex = 25;
this.groupBox4.TabStop = false;
//
// scb_status2
//
this.scb_status2.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status2.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_status2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_status2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_status2.Font = new System.Drawing.Font("宋体", 10F);
this.scb_status2.FormattingEnabled = true;
this.scb_status2.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status2.ItemHeight = 18;
this.scb_status2.Location = new System.Drawing.Point(296, 57);
this.scb_status2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_status2.MouseColor = System.Drawing.Color.Orange;
this.scb_status2.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_status2.Name = "scb_status2";
this.scb_status2.Size = new System.Drawing.Size(90, 24);
this.scb_status2.TabIndex = 23;
this.scb_status2.WaterText = "";
//
// scb_status1
//
this.scb_status1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status1.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_status1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_status1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_status1.Font = new System.Drawing.Font("宋体", 10F);
this.scb_status1.FormattingEnabled = true;
this.scb_status1.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_status1.ItemHeight = 18;
this.scb_status1.Location = new System.Drawing.Point(296, 19);
this.scb_status1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_status1.MouseColor = System.Drawing.Color.Orange;
this.scb_status1.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_status1.Name = "scb_status1";
this.scb_status1.Size = new System.Drawing.Size(90, 24);
this.scb_status1.TabIndex = 22;
this.scb_status1.WaterText = "";
//
// btn_di2
//
this.btn_di2.Enabled = false;
this.btn_di2.Image = global::AppMonitor.Properties.Resources.remove_16px;
this.btn_di2.Location = new System.Drawing.Point(391, 59);
this.btn_di2.Name = "btn_di2";
this.btn_di2.Size = new System.Drawing.Size(20, 20);
this.btn_di2.TabIndex = 21;
this.btn_di2.UseVisualStyleBackColor = true;
this.btn_di2.Click += new System.EventHandler(this.btn_di2_Click);
//
// rb_q1
//
this.rb_q1.AutoSize = true;
this.rb_q1.Enabled = false;
this.rb_q1.Location = new System.Drawing.Point(8, 58);
this.rb_q1.Name = "rb_q1";
this.rb_q1.Size = new System.Drawing.Size(38, 21);
this.rb_q1.TabIndex = 17;
this.rb_q1.TabStop = true;
this.rb_q1.Text = "且";
this.rb_q1.UseVisualStyleBackColor = true;
this.rb_q1.CheckedChanged += new System.EventHandler(this.CheckBoxGroup1_CheckedChange);
//
// rb_h1
//
this.rb_h1.AutoSize = true;
this.rb_h1.Enabled = false;
this.rb_h1.Location = new System.Drawing.Point(52, 58);
this.rb_h1.Name = "rb_h1";
this.rb_h1.Size = new System.Drawing.Size(38, 21);
this.rb_h1.TabIndex = 18;
this.rb_h1.TabStop = true;
this.rb_h1.Text = "或";
this.rb_h1.UseVisualStyleBackColor = true;
this.rb_h1.CheckedChanged += new System.EventHandler(this.CheckBoxGroup1_CheckedChange);
//
// scb_condition2
//
this.scb_condition2.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition2.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_condition2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_condition2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_condition2.Enabled = false;
this.scb_condition2.Font = new System.Drawing.Font("宋体", 10F);
this.scb_condition2.FormattingEnabled = true;
this.scb_condition2.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_condition2.ItemHeight = 18;
this.scb_condition2.Location = new System.Drawing.Point(98, 56);
this.scb_condition2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_condition2.MouseColor = System.Drawing.Color.Orange;
this.scb_condition2.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_condition2.Name = "scb_condition2";
this.scb_condition2.Size = new System.Drawing.Size(192, 24);
this.scb_condition2.TabIndex = 19;
this.scb_condition2.WaterText = "";
this.scb_condition2.SelectedIndexChanged += new System.EventHandler(this.scb_condition2_SelectedIndexChanged);
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.Color.Transparent;
this.groupBox2.Controls.Add(this.task_name);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Location = new System.Drawing.Point(20, 35);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(788, 61);
this.groupBox2.TabIndex = 15;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "任务信息";
//
// groupBox3
//
this.groupBox3.BackColor = System.Drawing.Color.Transparent;
this.groupBox3.Controls.Add(this.linkLabel2);
this.groupBox3.Controls.Add(this.linkLabel1);
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.shell);
this.groupBox3.Controls.Add(this.shell_name);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Location = new System.Drawing.Point(453, 111);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(522, 172);
this.groupBox3.TabIndex = 18;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "任务命令";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(457, 68);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(56, 17);
this.linkLabel2.TabIndex = 20;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "插入变量";
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(456, 26);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(56, 17);
this.linkLabel1.TabIndex = 16;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "选择模版";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// button1
//
this.button1.Location = new System.Drawing.Point(456, 128);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(60, 38);
this.button1.TabIndex = 19;
this.button1.Text = "新增↓";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// shell
//
this.shell.BackColor = System.Drawing.Color.Transparent;
this.shell.DownBack = null;
this.shell.Icon = null;
this.shell.IconIsButton = false;
this.shell.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell.IsPreplacedwordChat = '\0';
this.shell.IsSystemPreplacedwordChar = false;
this.shell.Lines = new string[0];
this.shell.Location = new System.Drawing.Point(78, 56);
this.shell.Margin = new System.Windows.Forms.Padding(0);
this.shell.MaxLength = 32767;
this.shell.MinimumSize = new System.Drawing.Size(28, 28);
this.shell.MouseBack = null;
this.shell.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell.Multiline = true;
this.shell.Name = "shell";
this.shell.NormlBack = null;
this.shell.Padding = new System.Windows.Forms.Padding(5);
this.shell.ReadOnly = false;
this.shell.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.shell.Size = new System.Drawing.Size(372, 111);
//
//
//
this.shell.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shell.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shell.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shell.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shell.SkinTxt.Multiline = true;
this.shell.SkinTxt.Name = "BaseText";
this.shell.SkinTxt.Size = new System.Drawing.Size(362, 101);
this.shell.SkinTxt.TabIndex = 0;
this.shell.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell.SkinTxt.WaterText = "shell脚本";
this.shell.TabIndex = 14;
this.shell.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shell.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell.WaterText = "shell脚本";
this.shell.WordWrap = true;
this.shell.Enter += new System.EventHandler(this.shell_Enter);
//
// shell_name
//
this.shell_name.BackColor = System.Drawing.Color.Transparent;
this.shell_name.DownBack = null;
this.shell_name.Icon = null;
this.shell_name.IconIsButton = false;
this.shell_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell_name.IsPreplacedwordChat = '\0';
this.shell_name.IsSystemPreplacedwordChar = false;
this.shell_name.Lines = new string[0];
this.shell_name.Location = new System.Drawing.Point(78, 19);
this.shell_name.Margin = new System.Windows.Forms.Padding(0);
this.shell_name.MaxLength = 32767;
this.shell_name.MinimumSize = new System.Drawing.Size(28, 28);
this.shell_name.MouseBack = null;
this.shell_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell_name.Multiline = false;
this.shell_name.Name = "shell_name";
this.shell_name.NormlBack = null;
this.shell_name.Padding = new System.Windows.Forms.Padding(5);
this.shell_name.ReadOnly = false;
this.shell_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.shell_name.Size = new System.Drawing.Size(372, 28);
//
//
//
this.shell_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shell_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shell_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shell_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shell_name.SkinTxt.Name = "BaseText";
this.shell_name.SkinTxt.Size = new System.Drawing.Size(362, 18);
this.shell_name.SkinTxt.TabIndex = 0;
this.shell_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell_name.SkinTxt.WaterText = "命令/脚本名称";
this.shell_name.TabIndex = 13;
this.shell_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shell_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell_name.WaterText = "命令/脚本名称";
this.shell_name.WordWrap = true;
this.shell_name.Enter += new System.EventHandler(this.shell_name_Enter);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.Location = new System.Drawing.Point(27, 23);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(48, 19);
this.label5.TabIndex = 15;
this.label5.Text = "名称:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label6.Location = new System.Drawing.Point(27, 57);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(48, 19);
this.label6.TabIndex = 14;
this.label6.Text = "脚本:";
//
// button2
//
this.button2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.button2.Location = new System.Drawing.Point(814, 44);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(161, 52);
this.button2.TabIndex = 18;
this.button2.Text = "保存 Ctrl+S";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.label7.Location = new System.Drawing.Point(9, 101);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(980, 5);
this.label7.TabIndex = 19;
//
// scb_template
//
this.scb_template.BorderColor = System.Drawing.Color.LightGray;
this.scb_template.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader4,
this.columnHeader5});
this.scb_template.FullRowSelect = true;
this.scb_template.GridLines = true;
this.scb_template.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_template.Location = new System.Drawing.Point(484, 5);
this.scb_template.MultiSelect = false;
this.scb_template.Name = "scb_template";
this.scb_template.OwnerDraw = true;
this.scb_template.RowBackColor2 = System.Drawing.Color.White;
this.scb_template.SelectedColor = System.Drawing.Color.LightSteelBlue;
this.scb_template.Size = new System.Drawing.Size(370, 182);
this.scb_template.TabIndex = 21;
this.scb_template.UseCompatibleStateImageBehavior = false;
this.scb_template.View = System.Windows.Forms.View.Details;
this.scb_template.Visible = false;
this.scb_template.MouseClick += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseClick);
this.scb_template.MouseUp += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseUp);
//
// columnHeader4
//
this.columnHeader4.Text = "命令名称";
this.columnHeader4.Width = 120;
//
// columnHeader5
//
this.columnHeader5.Text = "Shell脚本";
this.columnHeader5.Width = 245;
//
// var_list
//
this.var_list.BorderColor = System.Drawing.Color.LightGray;
this.var_list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader6,
this.columnHeader7});
this.var_list.FullRowSelect = true;
this.var_list.GridLines = true;
this.var_list.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.var_list.Location = new System.Drawing.Point(539, 5);
this.var_list.MultiSelect = false;
this.var_list.Name = "var_list";
this.var_list.OwnerDraw = true;
this.var_list.RowBackColor2 = System.Drawing.Color.White;
this.var_list.SelectedColor = System.Drawing.Color.LightSteelBlue;
this.var_list.Size = new System.Drawing.Size(370, 182);
this.var_list.TabIndex = 22;
this.var_list.UseCompatibleStateImageBehavior = false;
this.var_list.View = System.Windows.Forms.View.Details;
this.var_list.Visible = false;
this.var_list.MouseClick += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseClick);
this.var_list.MouseUp += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseUp);
//
// columnHeader6
//
this.columnHeader6.Text = "变量";
this.columnHeader6.Width = 180;
//
// columnHeader7
//
this.columnHeader7.Text = "描述";
this.columnHeader7.Width = 185;
//
// ConditionTaskForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(997, 670);
this.Controls.Add(this.var_list);
this.Controls.Add(this.scb_template);
this.Controls.Add(this.label7);
this.Controls.Add(this.button2);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.customShellListView);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(718, 528);
this.Name = "ConditionTaskForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "条件任务";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.ConditionTaskForm_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : FileAttrForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileAttrForm));
this.panel1 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.button1 = new System.Windows.Forms.Button();
this.icon = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.text_type = new System.Windows.Forms.TextBox();
this.text_host = new System.Windows.Forms.TextBox();
this.text_location = new System.Windows.Forms.TextBox();
this.text_size = new System.Windows.Forms.TextBox();
this.text_modified = new System.Windows.Forms.TextBox();
this.text_owner = new System.Windows.Forms.TextBox();
this.text_group = new System.Windows.Forms.TextBox();
this.text_permiss = new System.Windows.Forms.TextBox();
this.text_name = new System.Windows.Forms.TextBox();
this.panel1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.icon)).BeginInit();
this.SuspendLayout();
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Gainsboro;
this.panel1.Controls.Add(this.button1);
this.panel1.Controls.Add(this.tabControl1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(8, 30);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(431, 476);
this.panel1.TabIndex = 0;
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Location = new System.Drawing.Point(6, 10);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(422, 423);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.text_name);
this.tabPage1.Controls.Add(this.text_permiss);
this.tabPage1.Controls.Add(this.text_group);
this.tabPage1.Controls.Add(this.text_owner);
this.tabPage1.Controls.Add(this.text_modified);
this.tabPage1.Controls.Add(this.text_size);
this.tabPage1.Controls.Add(this.text_location);
this.tabPage1.Controls.Add(this.text_host);
this.tabPage1.Controls.Add(this.text_type);
this.tabPage1.Controls.Add(this.label11);
this.tabPage1.Controls.Add(this.label10);
this.tabPage1.Controls.Add(this.label9);
this.tabPage1.Controls.Add(this.label8);
this.tabPage1.Controls.Add(this.label7);
this.tabPage1.Controls.Add(this.label6);
this.tabPage1.Controls.Add(this.label5);
this.tabPage1.Controls.Add(this.label4);
this.tabPage1.Controls.Add(this.label3);
this.tabPage1.Controls.Add(this.label2);
this.tabPage1.Controls.Add(this.icon);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(414, 397);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "General";
this.tabPage1.UseVisualStyleBackColor = true;
//
// button1
//
this.button1.Location = new System.Drawing.Point(350, 440);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 27);
this.button1.TabIndex = 1;
this.button1.Text = "确定";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// icon
//
this.icon.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.icon.Location = new System.Drawing.Point(21, 18);
this.icon.Name = "icon";
this.icon.Size = new System.Drawing.Size(64, 64);
this.icon.TabIndex = 0;
this.icon.TabStop = false;
//
// label2
//
this.label2.BackColor = System.Drawing.Color.Silver;
this.label2.Location = new System.Drawing.Point(17, 96);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(380, 1);
this.label2.TabIndex = 2;
//
// label3
//
this.label3.BackColor = System.Drawing.Color.Silver;
this.label3.Location = new System.Drawing.Point(17, 234);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(380, 1);
this.label3.TabIndex = 3;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(20, 111);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 4;
this.label4.Text = "Type:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(20, 141);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(41, 12);
this.label5.TabIndex = 5;
this.label5.Text = "Host:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(20, 171);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 6;
this.label6.Text = "Location:";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(20, 201);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(41, 12);
this.label7.TabIndex = 7;
this.label7.Text = "Size:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(20, 255);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(65, 12);
this.label8.TabIndex = 8;
this.label8.Text = "Modified:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(20, 288);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(47, 12);
this.label9.TabIndex = 9;
this.label9.Text = "Owner:";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(20, 321);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(47, 12);
this.label10.TabIndex = 10;
this.label10.Text = "Group:";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(20, 354);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(83, 12);
this.label11.TabIndex = 11;
this.label11.Text = "Permissions:";
//
// text_type
//
this.text_type.BackColor = System.Drawing.Color.White;
this.text_type.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_type.Location = new System.Drawing.Point(115, 111);
this.text_type.Name = "text_type";
this.text_type.ReadOnly = true;
this.text_type.Size = new System.Drawing.Size(280, 14);
this.text_type.TabIndex = 12;
//
// text_host
//
this.text_host.BackColor = System.Drawing.Color.White;
this.text_host.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_host.Location = new System.Drawing.Point(115, 141);
this.text_host.Name = "text_host";
this.text_host.ReadOnly = true;
this.text_host.Size = new System.Drawing.Size(280, 14);
this.text_host.TabIndex = 13;
//
// text_location
//
this.text_location.BackColor = System.Drawing.Color.White;
this.text_location.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_location.Location = new System.Drawing.Point(115, 171);
this.text_location.Name = "text_location";
this.text_location.ReadOnly = true;
this.text_location.Size = new System.Drawing.Size(280, 14);
this.text_location.TabIndex = 14;
//
// text_size
//
this.text_size.BackColor = System.Drawing.Color.White;
this.text_size.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_size.Location = new System.Drawing.Point(115, 201);
this.text_size.Name = "text_size";
this.text_size.ReadOnly = true;
this.text_size.Size = new System.Drawing.Size(280, 14);
this.text_size.TabIndex = 15;
//
// text_modified
//
this.text_modified.BackColor = System.Drawing.Color.White;
this.text_modified.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_modified.Location = new System.Drawing.Point(115, 256);
this.text_modified.Name = "text_modified";
this.text_modified.ReadOnly = true;
this.text_modified.Size = new System.Drawing.Size(280, 14);
this.text_modified.TabIndex = 16;
//
// text_owner
//
this.text_owner.BackColor = System.Drawing.Color.White;
this.text_owner.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_owner.Location = new System.Drawing.Point(115, 289);
this.text_owner.Name = "text_owner";
this.text_owner.ReadOnly = true;
this.text_owner.Size = new System.Drawing.Size(280, 14);
this.text_owner.TabIndex = 17;
//
// text_group
//
this.text_group.BackColor = System.Drawing.Color.White;
this.text_group.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_group.Location = new System.Drawing.Point(115, 322);
this.text_group.Name = "text_group";
this.text_group.ReadOnly = true;
this.text_group.Size = new System.Drawing.Size(280, 14);
this.text_group.TabIndex = 18;
//
// text_permiss
//
this.text_permiss.BackColor = System.Drawing.Color.White;
this.text_permiss.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_permiss.Location = new System.Drawing.Point(115, 355);
this.text_permiss.Name = "text_permiss";
this.text_permiss.ReadOnly = true;
this.text_permiss.Size = new System.Drawing.Size(280, 14);
this.text_permiss.TabIndex = 19;
//
// text_name
//
this.text_name.BackColor = System.Drawing.Color.White;
this.text_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.text_name.Location = new System.Drawing.Point(115, 39);
this.text_name.Multiline = true;
this.text_name.Name = "text_name";
this.text_name.ReadOnly = true;
this.text_name.Size = new System.Drawing.Size(280, 43);
this.text_name.TabIndex = 20;
//
// FileAttrForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(447, 514);
this.Controls.Add(this.panel1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FileAttrForm";
this.Text = "属性";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.FileAttrForm_Load);
this.panel1.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.icon)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : IceMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IceMonitorForm));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.定时任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.条件任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.btn_update = new System.Windows.Forms.Button();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.visitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.button1 = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_status = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.l_appname = new System.Windows.Forms.TextBox();
this.l_pro_path = new System.Windows.Forms.TextBox();
this.l_server_name = new System.Windows.Forms.TextBox();
this.l_node_port = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.定时任务ToolStripMenuItem,
this.条件任务ToolStripMenuItem});
this.contextMenu.Name = "contextMenuStrip1";
this.contextMenu.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// 定时任务ToolStripMenuItem
//
this.定时任务ToolStripMenuItem.Name = "定时任务ToolStripMenuItem";
this.定时任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.定时任务ToolStripMenuItem.Text = "定时任务";
this.定时任务ToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTask_Click);
//
// 条件任务ToolStripMenuItem
//
this.条件任务ToolStripMenuItem.Name = "条件任务ToolStripMenuItem";
this.条件任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.条件任务ToolStripMenuItem.Text = "条件任务";
this.条件任务ToolStripMenuItem.Click += new System.EventHandler(this.条件任务ToolStripMenuItem_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 193);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(295, 25);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(62, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(129, 25);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(62, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(212, 25);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(62, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// btn_update
//
this.btn_update.Location = new System.Drawing.Point(19, 25);
this.btn_update.Name = "btn_update";
this.btn_update.Size = new System.Drawing.Size(87, 28);
this.btn_update.TabIndex = 8;
this.btn_update.Text = "更新配置";
this.skinToolTip1.SetToolTip(this.btn_update, "更新config/***srv.xml配置");
this.btn_update.UseVisualStyleBackColor = true;
this.btn_update.Click += new System.EventHandler(this.btn_build_Click);
//
// projects
//
this.projects.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.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2});
this.projects.ContextMenuStrip = this.contextMenuStrip1;
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.LargeImageList = this.imageList1;
this.projects.Location = new System.Drawing.Point(452, 14);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(357, 143);
this.projects.SmallImageList = this.imageList1;
this.projects.StateImageList = this.imageList1;
this.projects.TabIndex = 20;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
//
// columnHeader2
//
this.columnHeader2.Text = "项目访问地址";
this.columnHeader2.Width = 350;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.visitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(101, 26);
//
// visitToolStripMenuItem
//
this.visitToolStripMenuItem.Name = "visitToolStripMenuItem";
this.visitToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
this.visitToolStripMenuItem.Text = "Visit";
this.visitToolStripMenuItem.Click += new System.EventHandler(this.visitToolStripMenuItem_Click);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "yellow_light_16px.png");
//
// button1
//
this.button1.BackColor = System.Drawing.Color.White;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.ForeColor = System.Drawing.Color.OrangeRed;
this.button1.Location = new System.Drawing.Point(381, 25);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(111, 28);
this.button1.TabIndex = 9;
this.button1.Text = "一键部署版本";
this.skinToolTip1.SetToolTip(this.button1, "用于程序发布新版本,一键完成发布操作");
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// groupBox2
//
this.groupBox2.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.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 176);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 331);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 301);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(39, 25);
this.label1.TabIndex = 12;
this.label1.Text = "Ice";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.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.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 223);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(65, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 13;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.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.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 194);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 168);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 158);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_update);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.l_appname);
this.groupBox1.Controls.Add(this.l_pro_path);
this.groupBox1.Controls.Add(this.l_server_name);
this.groupBox1.Controls.Add(this.l_node_port);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 165);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(406, 129);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "修改";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// l_appname
//
this.l_appname.BackColor = System.Drawing.SystemColors.Control;
this.l_appname.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_appname.Font = new System.Drawing.Font("宋体", 9F);
this.l_appname.Location = new System.Drawing.Point(99, 29);
this.l_appname.Name = "l_appname";
this.l_appname.ReadOnly = true;
this.l_appname.Size = new System.Drawing.Size(290, 14);
this.l_appname.TabIndex = 19;
//
// l_pro_path
//
this.l_pro_path.BackColor = System.Drawing.SystemColors.Control;
this.l_pro_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_pro_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_pro_path.Location = new System.Drawing.Point(99, 62);
this.l_pro_path.Name = "l_pro_path";
this.l_pro_path.ReadOnly = true;
this.l_pro_path.Size = new System.Drawing.Size(290, 14);
this.l_pro_path.TabIndex = 18;
//
// l_server_name
//
this.l_server_name.BackColor = System.Drawing.SystemColors.Control;
this.l_server_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_server_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_server_name.Location = new System.Drawing.Point(99, 96);
this.l_server_name.Name = "l_server_name";
this.l_server_name.ReadOnly = true;
this.l_server_name.Size = new System.Drawing.Size(290, 14);
this.l_server_name.TabIndex = 17;
//
// l_node_port
//
this.l_node_port.BackColor = System.Drawing.SystemColors.Control;
this.l_node_port.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_node_port.Font = new System.Drawing.Font("宋体", 9F);
this.l_node_port.Location = new System.Drawing.Point(99, 129);
this.l_node_port.Name = "l_node_port";
this.l_node_port.ReadOnly = true;
this.l_node_port.Size = new System.Drawing.Size(290, 14);
this.l_node_port.TabIndex = 16;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(29, 30);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 10;
this.label6.Text = "项目名称:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(29, 96);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 9;
this.label5.Text = "服务名称:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(29, 129);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 7;
this.label3.Text = "节点端口:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(29, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "项目路径:";
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// IceMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "IceMonitorForm";
this.Text = "MonitorWorkForm";
this.Load += new System.EventHandler(this.IceMonitorForm_Load);
this.contextMenu.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : MonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonitorForm));
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tab_terminal = new System.Windows.Forms.TabPage();
this.listBox1 = new System.Windows.Forms.ListBox();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tstb_shell = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStrip_more_sh = new System.Windows.Forms.ToolStripDropDownButton();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.newQuickConmandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.quickShellManageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.rtb_log = new System.Windows.Forms.RichTextBox();
this.shellMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.粘贴ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.copyPasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fullScreenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tab_sftp = new System.Windows.Forms.TabPage();
this.rtb_sftp_log = new System.Windows.Forms.RichTextBox();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.tstb_sftp = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
this.getserverFilepathlocalFilepathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.putlocalFilepathserverFilepathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolbtn_opensftp = new System.Windows.Forms.ToolStripButton();
this.tab_monitor = new System.Windows.Forms.TabPage();
this.right_panel = new System.Windows.Forms.Panel();
this.left_panel = new System.Windows.Forms.Panel();
this.treeView1 = new System.Windows.Forms.TreeView();
this.treeConMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.newItemToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.springBootAppToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.tomcatToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.nginxToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.iceSrvToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.treeNodeConMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.newItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.springBootAppToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tomcatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.nginxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.edireplacedemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.tabControl1.SuspendLayout();
this.tab_terminal.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.shellMenu.SuspendLayout();
this.tab_sftp.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.tab_monitor.SuspendLayout();
this.left_panel.SuspendLayout();
this.treeConMenu.SuspendLayout();
this.treeNodeConMenu.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
this.tabControl1.Controls.Add(this.tab_terminal);
this.tabControl1.Controls.Add(this.tab_sftp);
this.tabControl1.Controls.Add(this.tab_monitor);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Multiline = true;
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(930, 601);
this.tabControl1.TabIndex = 0;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
this.tabControl1.SizeChanged += new System.EventHandler(this.tabControl1_SizeChanged);
this.tabControl1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tabControl1_KeyUp);
//
// tab_terminal
//
this.tab_terminal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tab_terminal.Controls.Add(this.listBox1);
this.tab_terminal.Controls.Add(this.toolStrip1);
this.tab_terminal.Controls.Add(this.rtb_log);
this.tab_terminal.Location = new System.Drawing.Point(4, 25);
this.tab_terminal.Name = "tab_terminal";
this.tab_terminal.Padding = new System.Windows.Forms.Padding(3);
this.tab_terminal.Size = new System.Drawing.Size(922, 572);
this.tab_terminal.TabIndex = 1;
this.tab_terminal.Text = "Terminal";
this.tab_terminal.UseVisualStyleBackColor = true;
//
// listBox1
//
this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.listBox1.Font = new System.Drawing.Font("宋体", 10F);
this.listBox1.FormattingEnabled = true;
this.listBox1.Location = new System.Drawing.Point(5, 383);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(198, 160);
this.listBox1.TabIndex = 3;
this.listBox1.Visible = false;
this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
this.listBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listBox1_KeyUp);
//
// toolStrip1
//
this.toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.toolStrip1.BackColor = System.Drawing.Color.White;
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator1,
this.tstb_shell,
this.toolStripSeparator2,
this.toolStrip_more_sh,
this.toolStripDropDownButton1});
this.toolStrip1.Location = new System.Drawing.Point(3, 542);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.toolStrip1.Size = new System.Drawing.Size(885, 25);
this.toolStrip1.TabIndex = 2;
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// tstb_shell
//
this.tstb_shell.AutoSize = false;
this.tstb_shell.BackColor = System.Drawing.Color.White;
this.tstb_shell.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tstb_shell.Enabled = false;
this.tstb_shell.Font = new System.Drawing.Font("Courier New", 14F);
this.tstb_shell.ForeColor = System.Drawing.Color.DimGray;
this.tstb_shell.HideSelection = false;
this.tstb_shell.Name = "tstb_shell";
this.tstb_shell.Size = new System.Drawing.Size(810, 22);
this.tstb_shell.Text = "在此输入Shell指令";
this.tstb_shell.Enter += new System.EventHandler(this.tstb_shell_Enter);
this.tstb_shell.Leave += new System.EventHandler(this.tstb_shell_Leave);
this.tstb_shell.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tstb_shell_KeyDown);
this.tstb_shell.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tstb_shell_KeyUp);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// toolStrip_more_sh
//
this.toolStrip_more_sh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStrip_more_sh.Image = global::AppMonitor.Properties.Resources.Terminal_24px;
this.toolStrip_more_sh.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStrip_more_sh.Name = "toolStrip_more_sh";
this.toolStrip_more_sh.Size = new System.Drawing.Size(29, 22);
this.toolStrip_more_sh.Text = "toolStripDropDownButton1";
//
// toolStripDropDownButton1
//
this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newQuickConmandToolStripMenuItem,
this.quickShellManageToolStripMenuItem});
this.toolStripDropDownButton1.Image = global::AppMonitor.Properties.Resources.custom_24px;
this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
this.toolStripDropDownButton1.Size = new System.Drawing.Size(29, 22);
this.toolStripDropDownButton1.Text = "toolStripDropDownButton1";
//
// newQuickConmandToolStripMenuItem
//
this.newQuickConmandToolStripMenuItem.Name = "newQuickConmandToolStripMenuItem";
this.newQuickConmandToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.newQuickConmandToolStripMenuItem.Text = "New Quick Conmand";
this.newQuickConmandToolStripMenuItem.Click += new System.EventHandler(this.newQuickConmandToolStripMenuItem_Click);
//
// quickShellManageToolStripMenuItem
//
this.quickShellManageToolStripMenuItem.Name = "quickShellManageToolStripMenuItem";
this.quickShellManageToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
this.quickShellManageToolStripMenuItem.Text = "Quick Command Manage";
this.quickShellManageToolStripMenuItem.Click += new System.EventHandler(this.quickShellManageToolStripMenuItem_Click);
//
// rtb_log
//
this.rtb_log.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.rtb_log.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.rtb_log.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtb_log.ContextMenuStrip = this.shellMenu;
this.rtb_log.Font = new System.Drawing.Font("Courier New", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rtb_log.ForeColor = System.Drawing.Color.CadetBlue;
this.rtb_log.Location = new System.Drawing.Point(3, 3);
this.rtb_log.Name = "rtb_log";
this.rtb_log.ReadOnly = true;
this.rtb_log.Size = new System.Drawing.Size(914, 533);
this.rtb_log.TabIndex = 1;
this.rtb_log.Text = "";
this.rtb_log.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtb_log_KeyDown);
this.rtb_log.KeyUp += new System.Windows.Forms.KeyEventHandler(this.rtb_log_KeyUp);
this.rtb_log.MouseDown += new System.Windows.Forms.MouseEventHandler(this.rtb_log_MouseDown);
//
// shellMenu
//
this.shellMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.复制ToolStripMenuItem,
this.粘贴ToolStripMenuItem,
this.copyPasteToolStripMenuItem,
this.findToolStripMenuItem,
this.selectAllToolStripMenuItem,
this.fullScreenToolStripMenuItem});
this.shellMenu.Name = "shellMenu";
this.shellMenu.Size = new System.Drawing.Size(161, 136);
//
// 复制ToolStripMenuItem
//
this.复制ToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.copy;
this.复制ToolStripMenuItem.Name = "复制ToolStripMenuItem";
this.复制ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.复制ToolStripMenuItem.Text = "&Copy";
this.复制ToolStripMenuItem.Click += new System.EventHandler(this.复制ToolStripMenuItem_Click);
//
// 粘贴ToolStripMenuItem
//
this.粘贴ToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.paste;
this.粘贴ToolStripMenuItem.Name = "粘贴ToolStripMenuItem";
this.粘贴ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.粘贴ToolStripMenuItem.Text = "&Paste";
this.粘贴ToolStripMenuItem.Click += new System.EventHandler(this.粘贴ToolStripMenuItem_Click);
//
// copyPasteToolStripMenuItem
//
this.copyPasteToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.view_16px;
this.copyPasteToolStripMenuItem.Name = "copyPasteToolStripMenuItem";
this.copyPasteToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.copyPasteToolStripMenuItem.Text = "&CopyAndPaste";
this.copyPasteToolStripMenuItem.Click += new System.EventHandler(this.copyPasteToolStripMenuItem_Click);
//
// findToolStripMenuItem
//
this.findToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.find;
this.findToolStripMenuItem.Name = "findToolStripMenuItem";
this.findToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.findToolStripMenuItem.Text = "&Find";
this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
//
// selectAllToolStripMenuItem
//
this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.selectAllToolStripMenuItem.Text = "&Select All";
this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
//
// fullScreenToolStripMenuItem
//
this.fullScreenToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.fullScreen;
this.fullScreenToolStripMenuItem.Name = "fullScreenToolStripMenuItem";
this.fullScreenToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
this.fullScreenToolStripMenuItem.Text = "&Full Screen";
this.fullScreenToolStripMenuItem.Click += new System.EventHandler(this.fullScreenToolStripMenuItem_Click);
//
// tab_sftp
//
this.tab_sftp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tab_sftp.Controls.Add(this.rtb_sftp_log);
this.tab_sftp.Controls.Add(this.toolStrip2);
this.tab_sftp.Location = new System.Drawing.Point(4, 25);
this.tab_sftp.Name = "tab_sftp";
this.tab_sftp.Padding = new System.Windows.Forms.Padding(3);
this.tab_sftp.Size = new System.Drawing.Size(922, 572);
this.tab_sftp.TabIndex = 2;
this.tab_sftp.Text = "Sftp";
this.tab_sftp.UseVisualStyleBackColor = true;
//
// rtb_sftp_log
//
this.rtb_sftp_log.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.rtb_sftp_log.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.rtb_sftp_log.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtb_sftp_log.ContextMenuStrip = this.shellMenu;
this.rtb_sftp_log.Font = new System.Drawing.Font("Courier New", 14.25F);
this.rtb_sftp_log.ForeColor = System.Drawing.Color.CadetBlue;
this.rtb_sftp_log.Location = new System.Drawing.Point(3, 3);
this.rtb_sftp_log.Name = "rtb_sftp_log";
this.rtb_sftp_log.ReadOnly = true;
this.rtb_sftp_log.Size = new System.Drawing.Size(915, 536);
this.rtb_sftp_log.TabIndex = 4;
this.rtb_sftp_log.Text = "";
this.rtb_sftp_log.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtb_sftp_log_KeyDown);
this.rtb_sftp_log.KeyUp += new System.Windows.Forms.KeyEventHandler(this.rtb_sftp_log_KeyUp);
this.rtb_sftp_log.MouseDown += new System.Windows.Forms.MouseEventHandler(this.rtb_sftp_log_MouseDown);
//
// toolStrip2
//
this.toolStrip2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.toolStrip2.BackColor = System.Drawing.Color.White;
this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator3,
this.tstb_sftp,
this.toolStripSeparator4,
this.toolStripDropDownButton2,
this.toolbtn_opensftp});
this.toolStrip2.Location = new System.Drawing.Point(2, 542);
this.toolStrip2.Name = "toolStrip2";
this.toolStrip2.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.toolStrip2.Size = new System.Drawing.Size(879, 25);
this.toolStrip2.TabIndex = 3;
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// tstb_sftp
//
this.tstb_sftp.AutoSize = false;
this.tstb_sftp.BackColor = System.Drawing.Color.White;
this.tstb_sftp.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tstb_sftp.Enabled = false;
this.tstb_sftp.Font = new System.Drawing.Font("Courier New", 14F);
this.tstb_sftp.ForeColor = System.Drawing.Color.DimGray;
this.tstb_sftp.HideSelection = false;
this.tstb_sftp.Name = "tstb_sftp";
this.tstb_sftp.Size = new System.Drawing.Size(810, 22);
this.tstb_sftp.Text = "在此输入Sftp指令";
this.tstb_sftp.Enter += new System.EventHandler(this.sftp_text_enter);
this.tstb_sftp.Leave += new System.EventHandler(this.sftp_text_leave);
this.tstb_sftp.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tstb_sftp_KeyUp);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
// toolStripDropDownButton2
//
this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.getserverFilepathlocalFilepathToolStripMenuItem,
this.putlocalFilepathserverFilepathToolStripMenuItem,
this.helpToolStripMenuItem});
this.toolStripDropDownButton2.Image = global::AppMonitor.Properties.Resources.Terminal_24px;
this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
this.toolStripDropDownButton2.Size = new System.Drawing.Size(29, 22);
this.toolStripDropDownButton2.Text = "toolStripDropDownButton1";
//
// getserverFilepathlocalFilepathToolStripMenuItem
//
this.getserverFilepathlocalFilepathToolStripMenuItem.Name = "getserverFilepathlocalFilepathToolStripMenuItem";
this.getserverFilepathlocalFilepathToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
this.getserverFilepathlocalFilepathToolStripMenuItem.Text = "get [server filepath] [local filepath]";
this.getserverFilepathlocalFilepathToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
//
// putlocalFilepathserverFilepathToolStripMenuItem
//
this.putlocalFilepathserverFilepathToolStripMenuItem.Name = "putlocalFilepathserverFilepathToolStripMenuItem";
this.putlocalFilepathserverFilepathToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
this.putlocalFilepathserverFilepathToolStripMenuItem.Text = "put [local filepath] [server filepath]";
this.putlocalFilepathserverFilepathToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
this.helpToolStripMenuItem.Text = "help&";
this.helpToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
//
// toolbtn_opensftp
//
this.toolbtn_opensftp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolbtn_opensftp.Image = global::AppMonitor.Properties.Resources.ftp;
this.toolbtn_opensftp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolbtn_opensftp.Name = "toolbtn_opensftp";
this.toolbtn_opensftp.Size = new System.Drawing.Size(23, 22);
this.toolbtn_opensftp.Text = "toolStripButton1";
this.toolbtn_opensftp.Click += new System.EventHandler(this.toolbtn_opensftp_Click);
//
// tab_monitor
//
this.tab_monitor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tab_monitor.Controls.Add(this.right_panel);
this.tab_monitor.Controls.Add(this.left_panel);
this.tab_monitor.Location = new System.Drawing.Point(4, 25);
this.tab_monitor.Name = "tab_monitor";
this.tab_monitor.Padding = new System.Windows.Forms.Padding(3);
this.tab_monitor.Size = new System.Drawing.Size(922, 572);
this.tab_monitor.TabIndex = 0;
this.tab_monitor.Text = "Monitor";
this.tab_monitor.UseVisualStyleBackColor = true;
//
// right_panel
//
this.right_panel.BackColor = System.Drawing.SystemColors.Control;
this.right_panel.Location = new System.Drawing.Point(250, 0);
this.right_panel.Name = "right_panel";
this.right_panel.Size = new System.Drawing.Size(670, 570);
this.right_panel.TabIndex = 2;
//
// left_panel
//
this.left_panel.Controls.Add(this.treeView1);
this.left_panel.Location = new System.Drawing.Point(0, 0);
this.left_panel.Name = "left_panel";
this.left_panel.Size = new System.Drawing.Size(245, 570);
this.left_panel.TabIndex = 1;
//
// treeView1
//
this.treeView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(230)))), ((int)(((byte)(235)))));
this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.treeView1.ContextMenuStrip = this.treeConMenu;
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Font = new System.Drawing.Font("微软雅黑", 10F);
this.treeView1.FullRowSelect = true;
this.treeView1.ImageIndex = 0;
this.treeView1.ImageList = this.imageList1;
this.treeView1.Indent = 12;
this.treeView1.ItemHeight = 30;
this.treeView1.Location = new System.Drawing.Point(0, 0);
this.treeView1.Name = "treeView1";
this.treeView1.SelectedImageIndex = 0;
this.treeView1.Size = new System.Drawing.Size(245, 570);
this.treeView1.TabIndex = 0;
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
//
// treeConMenu
//
this.treeConMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newItemToolStripMenuItem1});
this.treeConMenu.Name = "treeConMenu";
this.treeConMenu.Size = new System.Drawing.Size(133, 26);
//
// newItemToolStripMenuItem1
//
this.newItemToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.springBootAppToolStripMenuItem2,
this.tomcatToolStripMenuItem1,
this.nginxToolStripMenuItem1,
this.iceSrvToolStripMenuItem});
this.newItemToolStripMenuItem1.Name = "newItemToolStripMenuItem1";
this.newItemToolStripMenuItem1.Size = new System.Drawing.Size(132, 22);
this.newItemToolStripMenuItem1.Text = "New Item";
//
// springBootAppToolStripMenuItem2
//
this.springBootAppToolStripMenuItem2.Name = "springBootAppToolStripMenuItem2";
this.springBootAppToolStripMenuItem2.Size = new System.Drawing.Size(170, 22);
this.springBootAppToolStripMenuItem2.Text = "SpringBoot App";
this.springBootAppToolStripMenuItem2.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// tomcatToolStripMenuItem1
//
this.tomcatToolStripMenuItem1.Name = "tomcatToolStripMenuItem1";
this.tomcatToolStripMenuItem1.Size = new System.Drawing.Size(170, 22);
this.tomcatToolStripMenuItem1.Text = "Tomcat";
this.tomcatToolStripMenuItem1.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// nginxToolStripMenuItem1
//
this.nginxToolStripMenuItem1.Name = "nginxToolStripMenuItem1";
this.nginxToolStripMenuItem1.Size = new System.Drawing.Size(170, 22);
this.nginxToolStripMenuItem1.Text = "Nginx";
this.nginxToolStripMenuItem1.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// iceSrvToolStripMenuItem
//
this.iceSrvToolStripMenuItem.Name = "iceSrvToolStripMenuItem";
this.iceSrvToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.iceSrvToolStripMenuItem.Text = "IceSrv";
this.iceSrvToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_48.png");
this.imageList1.Images.SetKeyName(1, "green_light_48.png");
this.imageList1.Images.SetKeyName(2, "org_light_48.png");
this.imageList1.Images.SetKeyName(3, "Terminal_24px.png");
//
// treeNodeConMenu
//
this.treeNodeConMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newItemToolStripMenuItem,
this.edireplacedemToolStripMenuItem,
this.removeItemToolStripMenuItem});
this.treeNodeConMenu.Name = "contextMenuStrip1";
this.treeNodeConMenu.Size = new System.Drawing.Size(154, 70);
//
// newItemToolStripMenuItem
//
this.newItemToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.springBootAppToolStripMenuItem,
this.tomcatToolStripMenuItem,
this.nginxToolStripMenuItem});
this.newItemToolStripMenuItem.Name = "newItemToolStripMenuItem";
this.newItemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.newItemToolStripMenuItem.Text = "New Item";
//
// springBootAppToolStripMenuItem
//
this.springBootAppToolStripMenuItem.Name = "springBootAppToolStripMenuItem";
this.springBootAppToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.springBootAppToolStripMenuItem.Text = "SpringBoot App";
this.springBootAppToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// tomcatToolStripMenuItem
//
this.tomcatToolStripMenuItem.Name = "tomcatToolStripMenuItem";
this.tomcatToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.tomcatToolStripMenuItem.Text = "Tomcat";
this.tomcatToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// nginxToolStripMenuItem
//
this.nginxToolStripMenuItem.Name = "nginxToolStripMenuItem";
this.nginxToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.nginxToolStripMenuItem.Text = "Nginx";
this.nginxToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
//
// edireplacedemToolStripMenuItem
//
this.edireplacedemToolStripMenuItem.Name = "edireplacedemToolStripMenuItem";
this.edireplacedemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.edireplacedemToolStripMenuItem.Text = "Edit Item";
this.edireplacedemToolStripMenuItem.Click += new System.EventHandler(this.edireplacedemToolStripMenuItem_Click);
//
// removeItemToolStripMenuItem
//
this.removeItemToolStripMenuItem.Name = "removeItemToolStripMenuItem";
this.removeItemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.removeItemToolStripMenuItem.Text = "Remove Item";
this.removeItemToolStripMenuItem.Click += new System.EventHandler(this.removeItemToolStripMenuItem_Click);
//
// timer1
//
this.timer1.Interval = 300;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// MonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(930, 601);
this.Controls.Add(this.tabControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "MonitorForm";
this.ShowInTaskbar = false;
this.Text = "MonitorForm";
this.Load += new System.EventHandler(this.MonitorForm_Load);
this.SizeChanged += new System.EventHandler(this.MonitorForm_SizeChanged);
this.tabControl1.ResumeLayout(false);
this.tab_terminal.ResumeLayout(false);
this.tab_terminal.PerformLayout();
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.shellMenu.ResumeLayout(false);
this.tab_sftp.ResumeLayout(false);
this.tab_sftp.PerformLayout();
this.toolStrip2.ResumeLayout(false);
this.toolStrip2.PerformLayout();
this.tab_monitor.ResumeLayout(false);
this.left_panel.ResumeLayout(false);
this.treeConMenu.ResumeLayout(false);
this.treeNodeConMenu.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : Form2.Designer.cs
License : MIT License
Project Creator : 200Tigersbloxed
License : MIT License
Project Creator : 200Tigersbloxed
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.button4 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.closeForm1 = new System.Windows.Forms.Button();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.label5 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.statuslabel = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.progressBar2 = new System.Windows.Forms.ProgressBar();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.checkBox4 = new System.Windows.Forms.CheckBox();
this.checkBox5 = new System.Windows.Forms.CheckBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.checkBox7 = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Image = global::BSMulti_Installer2.Properties.Resources.cross;
this.pictureBox1.Location = new System.Drawing.Point(308, 54);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(69, 69);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 27;
this.pictureBox1.TabStop = false;
//
// button4
//
this.button4.BackColor = System.Drawing.SystemColors.GrayText;
this.button4.FlatAppearance.BorderSize = 0;
this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button4.Font = new System.Drawing.Font("Arial Narrow", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button4.ForeColor = System.Drawing.SystemColors.Control;
this.button4.Location = new System.Drawing.Point(299, 364);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(78, 38);
this.button4.TabIndex = 26;
this.button4.TabStop = false;
this.button4.Text = "INSTALL / UPDATE";
this.button4.UseVisualStyleBackColor = false;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label7.Location = new System.Drawing.Point(13, 345);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(372, 16);
this.label7.TabIndex = 25;
this.label7.Text = "---------------------------------------------------------------------------------" +
"----------";
//
// button2
//
this.button2.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.button2.FlatAppearance.BorderSize = 0;
this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button2.ForeColor = System.Drawing.SystemColors.Control;
this.button2.Location = new System.Drawing.Point(263, 171);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(122, 38);
this.button2.TabIndex = 20;
this.button2.TabStop = false;
this.button2.Text = "ZINGABOPP";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label4
//
this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label4.Location = new System.Drawing.Point(12, 140);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(373, 16);
this.label4.TabIndex = 19;
this.label4.Text = "SELECT MULTIPLAYER";
this.label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// button1
//
this.button1.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.button1.FlatAppearance.BorderSize = 0;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.ForeColor = System.Drawing.SystemColors.Control;
this.button1.Location = new System.Drawing.Point(12, 171);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(122, 38);
this.button1.TabIndex = 18;
this.button1.TabStop = false;
this.button1.Text = "ANDRUZZZHKA";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.ForeColor = System.Drawing.SystemColors.Control;
this.label3.Location = new System.Drawing.Point(13, 98);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(268, 16);
this.label3.TabIndex = 17;
this.label3.Text = "Please select what you need to install or uninstall";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Arial Narrow", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.ForeColor = System.Drawing.SystemColors.Control;
this.label2.Location = new System.Drawing.Point(11, 54);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 25);
this.label2.TabIndex = 16;
this.label2.Text = "Step 2";
//
// panel1
//
this.panel1.BackColor = System.Drawing.SystemColors.MenuHighlight;
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.closeForm1);
this.panel1.Location = new System.Drawing.Point(1, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(402, 34);
this.panel1.TabIndex = 15;
this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.ForeColor = System.Drawing.SystemColors.Control;
this.label1.Location = new System.Drawing.Point(11, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 13);
this.label1.TabIndex = 2;
this.label1.Text = "BSMulti Installer v2";
//
// closeForm1
//
this.closeForm1.FlatAppearance.BorderSize = 0;
this.closeForm1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.closeForm1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.closeForm1.ForeColor = System.Drawing.SystemColors.Control;
this.closeForm1.Location = new System.Drawing.Point(353, 0);
this.closeForm1.Name = "closeForm1";
this.closeForm1.Size = new System.Drawing.Size(46, 36);
this.closeForm1.TabIndex = 1;
this.closeForm1.TabStop = false;
this.closeForm1.Text = "X";
this.closeForm1.UseVisualStyleBackColor = true;
this.closeForm1.Click += new System.EventHandler(this.closeForm1_Click);
//
// linkLabel1
//
this.linkLabel1.LinkColor = System.Drawing.SystemColors.MenuHighlight;
this.linkLabel1.Location = new System.Drawing.Point(140, 184);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(117, 23);
this.linkLabel1.TabIndex = 28;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "What should I Chose?";
this.linkLabel1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// label5
//
this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label5.Location = new System.Drawing.Point(12, 223);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(373, 16);
this.label5.TabIndex = 30;
this.label5.Text = "SELECT DEPENDENCIES (UNINSTALL ONLY)";
this.label5.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// button3
//
this.button3.BackColor = System.Drawing.SystemColors.GrayText;
this.button3.FlatAppearance.BorderSize = 0;
this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button3.ForeColor = System.Drawing.SystemColors.Control;
this.button3.Location = new System.Drawing.Point(213, 364);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(80, 38);
this.button3.TabIndex = 31;
this.button3.TabStop = false;
this.button3.Text = "UNINSTALL";
this.button3.UseVisualStyleBackColor = false;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// statuslabel
//
this.statuslabel.AutoSize = true;
this.statuslabel.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.statuslabel.ForeColor = System.Drawing.SystemColors.Control;
this.statuslabel.Location = new System.Drawing.Point(13, 375);
this.statuslabel.Name = "statuslabel";
this.statuslabel.Size = new System.Drawing.Size(50, 16);
this.statuslabel.TabIndex = 32;
this.statuslabel.Text = "Status: ";
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(16, 411);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(361, 23);
this.progressBar1.TabIndex = 33;
//
// progressBar2
//
this.progressBar2.Location = new System.Drawing.Point(16, 449);
this.progressBar2.Name = "progressBar2";
this.progressBar2.Size = new System.Drawing.Size(361, 23);
this.progressBar2.TabIndex = 34;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox1.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox1.Location = new System.Drawing.Point(16, 251);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(172, 18);
this.checkBox1.TabIndex = 35;
this.checkBox1.Text = "SongCore (Not recommended)";
this.checkBox1.UseVisualStyleBackColor = true;
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox2.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox2.Location = new System.Drawing.Point(16, 275);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(152, 18);
this.checkBox2.TabIndex = 36;
this.checkBox2.Text = "BSML (Not recommended)";
this.checkBox2.UseVisualStyleBackColor = true;
//
// checkBox3
//
this.checkBox3.AutoSize = true;
this.checkBox3.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox3.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox3.Location = new System.Drawing.Point(16, 299);
this.checkBox3.Name = "checkBox3";
this.checkBox3.Size = new System.Drawing.Size(161, 18);
this.checkBox3.TabIndex = 37;
this.checkBox3.Text = "BS Utils (Not recommended)";
this.checkBox3.UseVisualStyleBackColor = true;
//
// checkBox4
//
this.checkBox4.AutoSize = true;
this.checkBox4.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox4.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox4.Location = new System.Drawing.Point(190, 299);
this.checkBox4.Name = "checkBox4";
this.checkBox4.Size = new System.Drawing.Size(103, 18);
this.checkBox4.TabIndex = 38;
this.checkBox4.Text = "Custom Avatars";
this.checkBox4.UseVisualStyleBackColor = true;
this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged);
//
// checkBox5
//
this.checkBox5.AutoSize = true;
this.checkBox5.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox5.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox5.Location = new System.Drawing.Point(190, 251);
this.checkBox5.Name = "checkBox5";
this.checkBox5.Size = new System.Drawing.Size(86, 18);
this.checkBox5.TabIndex = 39;
this.checkBox5.Text = "DiscordCore";
this.checkBox5.UseVisualStyleBackColor = true;
//
// checkBox6
//
this.checkBox6.AutoSize = true;
this.checkBox6.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.checkBox6.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox6.Location = new System.Drawing.Point(190, 275);
this.checkBox6.Name = "checkBox6";
this.checkBox6.Size = new System.Drawing.Size(108, 18);
this.checkBox6.TabIndex = 40;
this.checkBox6.Text = "DynamicOpenVR";
this.checkBox6.UseVisualStyleBackColor = true;
//
// checkBox7
//
this.checkBox7.AutoSize = true;
this.checkBox7.ForeColor = System.Drawing.SystemColors.Control;
this.checkBox7.Location = new System.Drawing.Point(16, 324);
this.checkBox7.Name = "checkBox7";
this.checkBox7.Size = new System.Drawing.Size(178, 17);
this.checkBox7.TabIndex = 41;
this.checkBox7.Text = "ScoreSaber (Not recommended)";
this.checkBox7.UseVisualStyleBackColor = true;
//
// Form2
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37)))));
this.ClientSize = new System.Drawing.Size(395, 484);
this.Controls.Add(this.checkBox7);
this.Controls.Add(this.checkBox6);
this.Controls.Add(this.checkBox5);
this.Controls.Add(this.checkBox4);
this.Controls.Add(this.checkBox3);
this.Controls.Add(this.checkBox2);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.progressBar2);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.statuslabel);
this.Controls.Add(this.button3);
this.Controls.Add(this.label5);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.button4);
this.Controls.Add(this.label7);
this.Controls.Add(this.button2);
this.Controls.Add(this.label4);
this.Controls.Add(this.button1);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Form2";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "BeatSaber Multiplayer Installer v2";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : NginxMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NginxMonitorForm));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu3 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.CustomTimeTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConditionTaskToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.newItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.visitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.visit2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.startBtnMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.nginxpathsStart = new System.Windows.Forms.ToolStripMenuItem();
this.nginxpathcnginxconf = new System.Windows.Forms.ToolStripMenuItem();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_name = new System.Windows.Forms.TextBox();
this.l_nginx_path = new System.Windows.Forms.TextBox();
this.l_nginx_conf = new System.Windows.Forms.TextBox();
this.l_visit_url = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.button1 = new System.Windows.Forms.Button();
this.label_status = new System.Windows.Forms.Label();
this.contextMenu3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.startBtnMenu.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu3
//
this.contextMenu3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.CustomTimeTaskToolStripMenuItem,
this.ConditionTaskToolStripMenuItem1});
this.contextMenu3.Name = "contextMenuStrip1";
this.contextMenu3.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// CustomTimeTaskToolStripMenuItem
//
this.CustomTimeTaskToolStripMenuItem.Name = "CustomTimeTaskToolStripMenuItem";
this.CustomTimeTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.CustomTimeTaskToolStripMenuItem.Text = "定时任务";
this.CustomTimeTaskToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTaskToolStripMenuItem_Click);
//
// ConditionTaskToolStripMenuItem1
//
this.ConditionTaskToolStripMenuItem1.Name = "ConditionTaskToolStripMenuItem1";
this.ConditionTaskToolStripMenuItem1.Size = new System.Drawing.Size(136, 22);
this.ConditionTaskToolStripMenuItem1.Text = "条件任务";
this.ConditionTaskToolStripMenuItem1.Click += new System.EventHandler(this.条件任务ToolStripMenuItem1_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(360, 97);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(29, 12);
this.linkLabel2.TabIndex = 25;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "编辑";
this.skinToolTip1.SetToolTip(this.linkLabel2, "编辑服务器上的server.xml文件");
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// projects
//
this.projects.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.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader4});
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.LargeImageList = this.imageList1;
this.projects.Location = new System.Drawing.Point(397, 12);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(414, 173);
this.projects.SmallImageList = this.imageList1;
this.projects.StateImageList = this.imageList1;
this.projects.TabIndex = 22;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
this.projects.MouseUp += new System.Windows.Forms.MouseEventHandler(this.projects_MouseUp);
//
// columnHeader2
//
this.columnHeader2.Text = "访问地址";
this.columnHeader2.Width = 220;
//
// columnHeader4
//
this.columnHeader4.Text = "映射地址";
this.columnHeader4.Width = 300;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "yellow_light_16px.png");
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(359, 131);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 167);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(289, 26);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(80, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.BackColor = System.Drawing.SystemColors.Control;
this.btn_start.Location = new System.Drawing.Point(8, 26);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(76, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(207, 26);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newItemToolStripMenuItem,
this.editToolStripMenuItem,
this.deleteToolStripMenuItem,
this.toolStripSeparator2,
this.visitToolStripMenuItem,
this.visit2ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(133, 120);
//
// newItemToolStripMenuItem
//
this.newItemToolStripMenuItem.Name = "newItemToolStripMenuItem";
this.newItemToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.newItemToolStripMenuItem.Text = "New Item";
this.newItemToolStripMenuItem.Click += new System.EventHandler(this.newItemToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.editToolStripMenuItem.Text = "Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.deleteToolStripMenuItem.Text = "Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(129, 6);
//
// visitToolStripMenuItem
//
this.visitToolStripMenuItem.Name = "visitToolStripMenuItem";
this.visitToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.visitToolStripMenuItem.Text = "Visit 1";
this.visitToolStripMenuItem.Click += new System.EventHandler(this.visitToolStripMenuItem_Click);
//
// visit2ToolStripMenuItem
//
this.visit2ToolStripMenuItem.Name = "visit2ToolStripMenuItem";
this.visit2ToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.visit2ToolStripMenuItem.Text = "Visit 2";
this.visit2ToolStripMenuItem.Click += new System.EventHandler(this.visit2ToolStripMenuItem_Click);
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// startBtnMenu
//
this.startBtnMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.nginxpathsStart,
this.nginxpathcnginxconf});
this.startBtnMenu.Name = "startBtnMenu";
this.startBtnMenu.Size = new System.Drawing.Size(235, 48);
//
// nginxpathsStart
//
this.nginxpathsStart.Checked = true;
this.nginxpathsStart.CheckState = System.Windows.Forms.CheckState.Checked;
this.nginxpathsStart.Name = "nginxpathsStart";
this.nginxpathsStart.Size = new System.Drawing.Size(234, 22);
this.nginxpathsStart.Tag = "1";
this.nginxpathsStart.Text = "{nginx_path} -s start";
this.nginxpathsStart.Click += new System.EventHandler(this.nginxStartWayClick);
//
// nginxpathcnginxconf
//
this.nginxpathcnginxconf.Name = "nginxpathcnginxconf";
this.nginxpathcnginxconf.Size = new System.Drawing.Size(234, 22);
this.nginxpathcnginxconf.Tag = "2";
this.nginxpathcnginxconf.Text = "{nginx_path} -c {nginx_conf}";
this.nginxpathcnginxconf.Click += new System.EventHandler(this.nginxStartWayClick);
//
// groupBox1
//
this.groupBox1.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.groupBox1.Controls.Add(this.linkLabel2);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_name);
this.groupBox1.Controls.Add(this.l_nginx_path);
this.groupBox1.Controls.Add(this.l_nginx_conf);
this.groupBox1.Controls.Add(this.l_visit_url);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(8, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 191);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_name
//
this.l_name.BackColor = System.Drawing.SystemColors.Control;
this.l_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_name.Location = new System.Drawing.Point(90, 29);
this.l_name.Name = "l_name";
this.l_name.ReadOnly = true;
this.l_name.Size = new System.Drawing.Size(263, 14);
this.l_name.TabIndex = 19;
//
// l_nginx_path
//
this.l_nginx_path.BackColor = System.Drawing.SystemColors.Control;
this.l_nginx_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_nginx_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_nginx_path.Location = new System.Drawing.Point(90, 64);
this.l_nginx_path.Name = "l_nginx_path";
this.l_nginx_path.ReadOnly = true;
this.l_nginx_path.Size = new System.Drawing.Size(263, 14);
this.l_nginx_path.TabIndex = 18;
//
// l_nginx_conf
//
this.l_nginx_conf.BackColor = System.Drawing.SystemColors.Control;
this.l_nginx_conf.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_nginx_conf.Font = new System.Drawing.Font("宋体", 9F);
this.l_nginx_conf.Location = new System.Drawing.Point(90, 96);
this.l_nginx_conf.Name = "l_nginx_conf";
this.l_nginx_conf.ReadOnly = true;
this.l_nginx_conf.Size = new System.Drawing.Size(263, 14);
this.l_nginx_conf.TabIndex = 17;
//
// l_visit_url
//
this.l_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_visit_url.Location = new System.Drawing.Point(90, 129);
this.l_visit_url.Name = "l_visit_url";
this.l_visit_url.ReadOnly = true;
this.l_visit_url.Size = new System.Drawing.Size(263, 14);
this.l_visit_url.TabIndex = 16;
//
// label6
//
this.label6.Location = new System.Drawing.Point(11, 29);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(80, 14);
this.label6.TabIndex = 10;
this.label6.Text = "Nginx Name:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(11, 95);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 14);
this.label5.TabIndex = 9;
this.label5.Text = "nginx.conf:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label3
//
this.label3.Location = new System.Drawing.Point(11, 128);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(80, 14);
this.label3.TabIndex = 7;
this.label3.Text = "Visit Url:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(11, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 14);
this.label2.TabIndex = 0;
this.label2.Text = "nginx path:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(9, 203);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 305);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 276);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(66, 25);
this.label1.TabIndex = 13;
this.label1.Text = "Nginx";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.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.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 197);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(67, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 14;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.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.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 168);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 142);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 132);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Azure;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.button1.ForeColor = System.Drawing.Color.DarkOrange;
this.button1.Location = new System.Drawing.Point(84, 27);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(100, 26);
this.button1.TabIndex = 8;
this.button1.Text = "选择启动方式";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(6, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(98, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// NginxMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.groupBox2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "NginxMonitorForm";
this.Text = "NginxMonitorForm";
this.Load += new System.EventHandler(this.NginxMonitorForm_Load);
this.contextMenu3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
this.startBtnMenu.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : FullScreenMonitorForm.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void FullScreenMonitorForm_Load(object sender, EventArgs e)
{
int SH = Screen.PrimaryScreen.Bounds.Height;
int SW = Screen.PrimaryScreen.Bounds.Width;
this.Size = new Size(SW, SH);
this.Location = new Point(0, 0);
this.Controls.Add(form);
}
19
View Source File : SpringBootMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.定时任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.条件任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_build = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_status = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_pro_visit_url = new System.Windows.Forms.TextBox();
this.l_appname = new System.Windows.Forms.TextBox();
this.l_source_path = new System.Windows.Forms.TextBox();
this.l_ctl_path = new System.Windows.Forms.TextBox();
this.l_build_path = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.定时任务ToolStripMenuItem,
this.条件任务ToolStripMenuItem});
this.contextMenu.Name = "contextMenuStrip1";
this.contextMenu.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// 定时任务ToolStripMenuItem
//
this.定时任务ToolStripMenuItem.Name = "定时任务ToolStripMenuItem";
this.定时任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.定时任务ToolStripMenuItem.Text = "定时任务";
this.定时任务ToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTask_Click);
//
// 条件任务ToolStripMenuItem
//
this.条件任务ToolStripMenuItem.Name = "条件任务ToolStripMenuItem";
this.条件任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.条件任务ToolStripMenuItem.Text = "条件任务";
this.条件任务ToolStripMenuItem.Click += new System.EventHandler(this.条件任务ToolStripMenuItem_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 193);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(273, 25);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(80, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_build
//
this.btn_build.Location = new System.Drawing.Point(19, 25);
this.btn_build.Name = "btn_build";
this.btn_build.Size = new System.Drawing.Size(86, 28);
this.btn_build.TabIndex = 8;
this.btn_build.Text = "更新并编译";
this.skinToolTip1.SetToolTip(this.btn_build, "构建程序,从SVN更新最新版本并编译");
this.btn_build.UseVisualStyleBackColor = true;
this.btn_build.Click += new System.EventHandler(this.btn_build_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(121, 25);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(60, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(197, 25);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(709, 29);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// groupBox2
//
this.groupBox2.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.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 176);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 331);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 12F);
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 305);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 21);
this.label1.TabIndex = 13;
this.label1.Text = "SpringBoot";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.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.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 223);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(67, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 15;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.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.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 194);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 168);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 158);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_build);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_pro_visit_url);
this.groupBox1.Controls.Add(this.l_appname);
this.groupBox1.Controls.Add(this.l_source_path);
this.groupBox1.Controls.Add(this.l_ctl_path);
this.groupBox1.Controls.Add(this.l_build_path);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 165);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_pro_visit_url
//
this.l_pro_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_pro_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_pro_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_pro_visit_url.Location = new System.Drawing.Point(444, 29);
this.l_pro_visit_url.Name = "l_pro_visit_url";
this.l_pro_visit_url.Size = new System.Drawing.Size(259, 14);
this.l_pro_visit_url.TabIndex = 20;
//
// l_appname
//
this.l_appname.BackColor = System.Drawing.SystemColors.Control;
this.l_appname.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_appname.Font = new System.Drawing.Font("宋体", 9F);
this.l_appname.Location = new System.Drawing.Point(110, 28);
this.l_appname.Name = "l_appname";
this.l_appname.ReadOnly = true;
this.l_appname.Size = new System.Drawing.Size(183, 14);
this.l_appname.TabIndex = 19;
//
// l_source_path
//
this.l_source_path.BackColor = System.Drawing.SystemColors.Control;
this.l_source_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_source_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_source_path.Location = new System.Drawing.Point(110, 59);
this.l_source_path.Name = "l_source_path";
this.l_source_path.ReadOnly = true;
this.l_source_path.Size = new System.Drawing.Size(500, 14);
this.l_source_path.TabIndex = 18;
//
// l_ctl_path
//
this.l_ctl_path.BackColor = System.Drawing.SystemColors.Control;
this.l_ctl_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_ctl_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_ctl_path.Location = new System.Drawing.Point(110, 92);
this.l_ctl_path.Name = "l_ctl_path";
this.l_ctl_path.ReadOnly = true;
this.l_ctl_path.Size = new System.Drawing.Size(500, 14);
this.l_ctl_path.TabIndex = 17;
//
// l_build_path
//
this.l_build_path.BackColor = System.Drawing.SystemColors.Control;
this.l_build_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_build_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_build_path.Location = new System.Drawing.Point(110, 128);
this.l_build_path.Name = "l_build_path";
this.l_build_path.ReadOnly = true;
this.l_build_path.Size = new System.Drawing.Size(500, 14);
this.l_build_path.TabIndex = 16;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(334, 29);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(89, 12);
this.label9.TabIndex = 13;
this.label9.Text = "项目访问地址:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(40, 29);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 10;
this.label6.Text = "项目名称:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(40, 95);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 9;
this.label5.Text = "控制脚本:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(40, 128);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 7;
this.label3.Text = "构建脚本:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(40, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "代码路径:";
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// SpringBootMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "SpringBootMonitorForm";
this.Text = "MonitorWorkForm";
this.Load += new System.EventHandler(this.SpringBootMonitorForm_Load);
this.contextMenu.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : SshSettingForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Authentication");
System.Windows.Forms.TreeNode treeNode2 = new System.Windows.Forms.TreeNode("Connection", new System.Windows.Forms.TreeNode[] {
treeNode1});
System.Windows.Forms.TreeNode treeNode3 = new System.Windows.Forms.TreeNode("Setting");
System.Windows.Forms.TreeNode treeNode4 = new System.Windows.Forms.TreeNode("Appearance");
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SshSettingForm));
this.treeView1 = new System.Windows.Forms.TreeView();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.nud_port = new System.Windows.Forms.NumericUpDown();
this.cb_protocol = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.tb_host = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.tb_name = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.cb_remenber_pwd = new System.Windows.Forms.CheckBox();
this.cb_method = new System.Windows.Forms.ComboBox();
this.tb_userName = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.tb_preplacedword = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.cb_fontSize = new System.Windows.Forms.ComboBox();
this.cb_fontName = new System.Windows.Forms.ComboBox();
this.btn_edit_theme = new System.Windows.Forms.Button();
this.cb_scheme = new System.Windows.Forms.ComboBox();
this.label11 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.rtb_preview = new System.Windows.Forms.RichTextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.btn_Ok = new System.Windows.Forms.Button();
this.btn_Cancel = new System.Windows.Forms.Button();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_port)).BeginInit();
this.tabPage2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabPage4.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// treeView1
//
this.treeView1.Font = new System.Drawing.Font("微软雅黑", 10F);
this.treeView1.Location = new System.Drawing.Point(19, 41);
this.treeView1.Name = "treeView1";
treeNode1.Name = "Authentication";
treeNode1.Text = "Authentication";
treeNode2.Name = "Connection";
treeNode2.NodeFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
treeNode2.Text = "Connection";
treeNode3.Name = "Setting";
treeNode3.NodeFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
treeNode3.Text = "Setting";
treeNode4.Name = "Appearance";
treeNode4.NodeFont = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
treeNode4.Text = "Appearance";
this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] {
treeNode2,
treeNode3,
treeNode4});
this.treeView1.Size = new System.Drawing.Size(192, 386);
this.treeView1.TabIndex = 1;
this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
//
// tabControl1
//
this.tabControl1.Alignment = System.Windows.Forms.TabAlignment.Left;
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage4);
this.tabControl1.Location = new System.Drawing.Point(181, 41);
this.tabControl1.Multiline = true;
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(479, 386);
this.tabControl1.TabIndex = 2;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.groupBox1);
this.tabPage1.Location = new System.Drawing.Point(22, 4);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(453, 378);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "tab_conn";
this.tabPage1.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.nud_port);
this.groupBox1.Controls.Add(this.cb_protocol);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.tb_host);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.tb_name);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(20, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(422, 192);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "General";
//
// nud_port
//
this.nud_port.Location = new System.Drawing.Point(103, 135);
this.nud_port.Maximum = new decimal(new int[] {
65000,
0,
0,
0});
this.nud_port.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nud_port.Name = "nud_port";
this.nud_port.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.nud_port.Size = new System.Drawing.Size(80, 21);
this.nud_port.TabIndex = 7;
this.nud_port.Value = new decimal(new int[] {
22,
0,
0,
0});
//
// cb_protocol
//
this.cb_protocol.DisplayMember = "SSH";
this.cb_protocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_protocol.FormattingEnabled = true;
this.cb_protocol.Items.AddRange(new object[] {
"SSH"});
this.cb_protocol.Location = new System.Drawing.Point(103, 60);
this.cb_protocol.Name = "cb_protocol";
this.cb_protocol.Size = new System.Drawing.Size(275, 20);
this.cb_protocol.TabIndex = 6;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(14, 137);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(83, 12);
this.label4.TabIndex = 5;
this.label4.Text = "Port Number:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(14, 63);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 4;
this.label3.Text = "Protocol:";
//
// tb_host
//
this.tb_host.BackColor = System.Drawing.Color.White;
this.tb_host.Location = new System.Drawing.Point(103, 96);
this.tb_host.Name = "tb_host";
this.tb_host.Size = new System.Drawing.Size(275, 21);
this.tb_host.TabIndex = 3;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(14, 100);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 2;
this.label2.Text = "Host:";
//
// tb_name
//
this.tb_name.BackColor = System.Drawing.Color.White;
this.tb_name.Location = new System.Drawing.Point(103, 23);
this.tb_name.Name = "tb_name";
this.tb_name.Size = new System.Drawing.Size(275, 21);
this.tb_name.TabIndex = 1;
this.tb_name.Text = "New Session";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(14, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 0;
this.label1.Text = "Name:";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.groupBox2);
this.tabPage2.Location = new System.Drawing.Point(22, 4);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(453, 378);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "tab_authen";
this.tabPage2.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.cb_remenber_pwd);
this.groupBox2.Controls.Add(this.cb_method);
this.groupBox2.Controls.Add(this.tb_userName);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.tb_preplacedword);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Location = new System.Drawing.Point(20, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(422, 176);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Authentication";
//
// cb_remenber_pwd
//
this.cb_remenber_pwd.AutoSize = true;
this.cb_remenber_pwd.Checked = true;
this.cb_remenber_pwd.CheckState = System.Windows.Forms.CheckState.Checked;
this.cb_remenber_pwd.Location = new System.Drawing.Point(15, 146);
this.cb_remenber_pwd.Name = "cb_remenber_pwd";
this.cb_remenber_pwd.Size = new System.Drawing.Size(120, 16);
this.cb_remenber_pwd.TabIndex = 7;
this.cb_remenber_pwd.Text = "记住用户名与密码";
this.cb_remenber_pwd.UseVisualStyleBackColor = true;
//
// cb_method
//
this.cb_method.DisplayMember = "SSH";
this.cb_method.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_method.FormattingEnabled = true;
this.cb_method.Items.AddRange(new object[] {
"Preplacedword"});
this.cb_method.Location = new System.Drawing.Point(103, 22);
this.cb_method.Name = "cb_method";
this.cb_method.Size = new System.Drawing.Size(279, 20);
this.cb_method.TabIndex = 6;
//
// tb_userName
//
this.tb_userName.BackColor = System.Drawing.Color.White;
this.tb_userName.Location = new System.Drawing.Point(103, 59);
this.tb_userName.Name = "tb_userName";
this.tb_userName.Size = new System.Drawing.Size(279, 21);
this.tb_userName.TabIndex = 1;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(14, 63);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(71, 12);
this.label6.TabIndex = 4;
this.label6.Text = "User Name:";
//
// tb_preplacedword
//
this.tb_preplacedword.BackColor = System.Drawing.Color.White;
this.tb_preplacedword.Location = new System.Drawing.Point(103, 96);
this.tb_preplacedword.Name = "tb_preplacedword";
this.tb_preplacedword.PreplacedwordChar = '*';
this.tb_preplacedword.Size = new System.Drawing.Size(279, 21);
this.tb_preplacedword.TabIndex = 3;
this.tb_preplacedword.UseSystemPreplacedwordChar = true;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(14, 100);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(65, 12);
this.label7.TabIndex = 2;
this.label7.Text = "Preplacedword:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(14, 26);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(53, 12);
this.label8.TabIndex = 0;
this.label8.Text = "Method:";
//
// tabPage3
//
this.tabPage3.Location = new System.Drawing.Point(22, 4);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Size = new System.Drawing.Size(453, 378);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "tab_setting";
this.tabPage3.UseVisualStyleBackColor = true;
//
// tabPage4
//
this.tabPage4.Controls.Add(this.groupBox4);
this.tabPage4.Controls.Add(this.groupBox3);
this.tabPage4.Location = new System.Drawing.Point(22, 4);
this.tabPage4.Name = "tabPage4";
this.tabPage4.Size = new System.Drawing.Size(453, 378);
this.tabPage4.TabIndex = 3;
this.tabPage4.Text = "tab_app";
this.tabPage4.UseVisualStyleBackColor = true;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.cb_fontSize);
this.groupBox4.Controls.Add(this.cb_fontName);
this.groupBox4.Controls.Add(this.btn_edit_theme);
this.groupBox4.Controls.Add(this.cb_scheme);
this.groupBox4.Controls.Add(this.label11);
this.groupBox4.Controls.Add(this.label12);
this.groupBox4.Controls.Add(this.label13);
this.groupBox4.Location = new System.Drawing.Point(20, 113);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(422, 140);
this.groupBox4.TabIndex = 3;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "Color and Font";
//
// cb_fontSize
//
this.cb_fontSize.DisplayMember = "SSH";
this.cb_fontSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_fontSize.FormattingEnabled = true;
this.cb_fontSize.Items.AddRange(new object[] {
"9",
"10",
"11",
"12",
"13",
"14",
"15",
"16",
"17",
"18",
"19",
"20",
"22",
"24",
"26",
"28",
"30",
"32",
"36",
"40"});
this.cb_fontSize.Location = new System.Drawing.Point(103, 97);
this.cb_fontSize.Name = "cb_fontSize";
this.cb_fontSize.Size = new System.Drawing.Size(87, 20);
this.cb_fontSize.TabIndex = 10;
//
// cb_fontName
//
this.cb_fontName.DisplayMember = "SSH";
this.cb_fontName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_fontName.FormattingEnabled = true;
this.cb_fontName.Items.AddRange(new object[] {
"Courier New"});
this.cb_fontName.Location = new System.Drawing.Point(103, 59);
this.cb_fontName.Name = "cb_fontName";
this.cb_fontName.Size = new System.Drawing.Size(219, 20);
this.cb_fontName.TabIndex = 8;
//
// btn_edit_theme
//
this.btn_edit_theme.Location = new System.Drawing.Point(331, 20);
this.btn_edit_theme.Name = "btn_edit_theme";
this.btn_edit_theme.Size = new System.Drawing.Size(84, 23);
this.btn_edit_theme.TabIndex = 7;
this.btn_edit_theme.Text = "Edit Scheme";
this.btn_edit_theme.UseVisualStyleBackColor = true;
//
// cb_scheme
//
this.cb_scheme.DisplayMember = "SSH";
this.cb_scheme.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cb_scheme.FormattingEnabled = true;
this.cb_scheme.Items.AddRange(new object[] {
"Default Scheme"});
this.cb_scheme.Location = new System.Drawing.Point(103, 21);
this.cb_scheme.Name = "cb_scheme";
this.cb_scheme.Size = new System.Drawing.Size(219, 20);
this.cb_scheme.TabIndex = 6;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(14, 62);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(71, 12);
this.label11.TabIndex = 4;
this.label11.Text = "Font Name:";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(14, 99);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(71, 12);
this.label12.TabIndex = 2;
this.label12.Text = "Font Size:";
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(14, 25);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(89, 12);
this.label13.TabIndex = 0;
this.label13.Text = "Color Scheme:";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.rtb_preview);
this.groupBox3.Location = new System.Drawing.Point(20, 12);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(422, 93);
this.groupBox3.TabIndex = 2;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Preview";
//
// rtb_preview
//
this.rtb_preview.Enabled = false;
this.rtb_preview.Location = new System.Drawing.Point(6, 19);
this.rtb_preview.Name = "rtb_preview";
this.rtb_preview.Size = new System.Drawing.Size(410, 67);
this.rtb_preview.TabIndex = 0;
this.rtb_preview.Text = "";
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Location = new System.Drawing.Point(203, 42);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(12, 384);
this.panel1.TabIndex = 3;
//
// btn_Ok
//
this.btn_Ok.Location = new System.Drawing.Point(492, 437);
this.btn_Ok.Name = "btn_Ok";
this.btn_Ok.Size = new System.Drawing.Size(75, 25);
this.btn_Ok.TabIndex = 4;
this.btn_Ok.Text = "Ok";
this.btn_Ok.UseVisualStyleBackColor = true;
this.btn_Ok.Click += new System.EventHandler(this.btn_Ok_Click);
//
// btn_Cancel
//
this.btn_Cancel.Location = new System.Drawing.Point(576, 437);
this.btn_Cancel.Name = "btn_Cancel";
this.btn_Cancel.Size = new System.Drawing.Size(75, 25);
this.btn_Cancel.TabIndex = 5;
this.btn_Cancel.Text = "Cancel";
this.btn_Cancel.UseVisualStyleBackColor = true;
this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click);
//
// SshSettingForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(671, 482);
this.Controls.Add(this.btn_Cancel);
this.Controls.Add(this.btn_Ok);
this.Controls.Add(this.panel1);
this.Controls.Add(this.treeView1);
this.Controls.Add(this.tabControl1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(671, 482);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(671, 482);
this.Name = "SshSettingForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "New Session Properties";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.SshSettingForm_Load);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nud_port)).EndInit();
this.tabPage2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.tabPage4.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : CentralServerConfigForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CentralServerConfigForm));
System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer treeListViewItemCollectionComparer1 = new System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer();
this.listView1 = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.skinPanel2 = new CCWin.SkinControl.SkinPanel();
this._treeView = new System.Windows.Forms.TreeListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.编辑节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加子节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加同级节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加顶级节点ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.升级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.降级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.imageList2 = new System.Windows.Forms.ImageList(this.components);
this.tabPage2 = new System.Windows.Forms.TabPage();
this.skinPanel1 = new CCWin.SkinControl.SkinPanel();
this.ymlEditor = new System.Windows.Forms.RichTextBox();
this.contextMenuStrip3 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.粘贴ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.剪切ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.行注释ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btn_reload = new System.Windows.Forms.Button();
this.btn_new = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.校验ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.下载到本地ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.上传到服务器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.更改文件名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label4 = new System.Windows.Forms.Label();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.label5 = new System.Windows.Forms.Label();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.btn_save = new System.Windows.Forms.Button();
this.btn_meihua = new System.Windows.Forms.Button();
this.btn_tree = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.file_label = new System.Windows.Forms.ToolStripStatusLabel();
this.pos_label = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.btn_show = new System.Windows.Forms.Button();
this.stb_remote_dir = new CCWin.SkinControl.SkinTextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btn_ok = new System.Windows.Forms.Button();
this.打开本地临时目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.skinPanel2.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.skinPanel1.SuspendLayout();
this.contextMenuStrip3.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.panel1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panel2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// listView1
//
this.listView1.AllowDrop = true;
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1});
this.listView1.Font = new System.Drawing.Font("宋体", 10F);
this.listView1.FullRowSelect = true;
this.listView1.GridLines = true;
this.listView1.Location = new System.Drawing.Point(15, 66);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.OwnerDraw = true;
this.listView1.RowBackColor2 = System.Drawing.Color.WhiteSmoke;
this.listView1.SelectedColor = System.Drawing.Color.DarkOrange;
this.listView1.Size = new System.Drawing.Size(230, 588);
this.listView1.SmallImageList = this.imageList1;
this.listView1.StateImageList = this.imageList1;
this.listView1.TabIndex = 2;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "YML 文件";
this.columnHeader1.Width = 220;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "MB_light_16px.png");
this.imageList1.Images.SetKeyName(3, "yellow_light_16px.png");
//
// tabControl1
//
this.tabControl1.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.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(247, 39);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(914, 720);
this.tabControl1.TabIndex = 3;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPage1
//
this.tabPage1.Controls.Add(this.skinPanel2);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(906, 691);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "YML 树形视图";
this.tabPage1.UseVisualStyleBackColor = true;
//
// skinPanel2
//
this.skinPanel2.BackColor = System.Drawing.Color.Transparent;
this.skinPanel2.BorderColor = System.Drawing.SystemColors.ActiveCaption;
this.skinPanel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.skinPanel2.Controls.Add(this._treeView);
this.skinPanel2.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
this.skinPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.skinPanel2.DownBack = null;
this.skinPanel2.Location = new System.Drawing.Point(3, 3);
this.skinPanel2.MouseBack = null;
this.skinPanel2.Name = "skinPanel2";
this.skinPanel2.NormlBack = null;
this.skinPanel2.Size = new System.Drawing.Size(900, 685);
this.skinPanel2.TabIndex = 0;
//
// _treeView
//
this._treeView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5});
treeListViewItemCollectionComparer1.Column = 0;
treeListViewItemCollectionComparer1.SortOrder = System.Windows.Forms.SortOrder.None;
this._treeView.Comparer = treeListViewItemCollectionComparer1;
this._treeView.ContextMenuStrip = this.contextMenuStrip2;
this._treeView.Dock = System.Windows.Forms.DockStyle.Fill;
this._treeView.GridLines = true;
this._treeView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this._treeView.LabelWrap = false;
this._treeView.Location = new System.Drawing.Point(0, 0);
this._treeView.MultiSelect = false;
this._treeView.Name = "_treeView";
this._treeView.PlusMinusLineColor = System.Drawing.Color.Teal;
this._treeView.Size = new System.Drawing.Size(898, 683);
this._treeView.SmallImageList = this.imageList2;
this._treeView.Sorting = System.Windows.Forms.SortOrder.None;
this._treeView.TabIndex = 0;
this._treeView.UseCompatibleStateImageBehavior = false;
this._treeView.AfterExpand += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterExpand);
this._treeView.AfterCollapse += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterCollapse);
this._treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this._treeView_MouseUp);
//
// columnHeader2
//
this.columnHeader2.Text = "属性";
this.columnHeader2.Width = 240;
//
// columnHeader3
//
this.columnHeader3.Text = "值";
this.columnHeader3.Width = 280;
//
// columnHeader4
//
this.columnHeader4.Text = "层级";
//
// columnHeader5
//
this.columnHeader5.Text = "描述";
this.columnHeader5.Width = 280;
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.编辑节点ToolStripMenuItem,
this.添加子节点ToolStripMenuItem,
this.添加同级节点ToolStripMenuItem,
this.添加顶级节点ToolStripMenuItem1,
this.升级ToolStripMenuItem,
this.降级ToolStripMenuItem,
this.删除节点ToolStripMenuItem});
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(149, 158);
//
// 编辑节点ToolStripMenuItem
//
this.编辑节点ToolStripMenuItem.Name = "编辑节点ToolStripMenuItem";
this.编辑节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.编辑节点ToolStripMenuItem.Text = "编辑节点";
this.编辑节点ToolStripMenuItem.Click += new System.EventHandler(this.编辑节点ToolStripMenuItem_Click);
//
// 添加子节点ToolStripMenuItem
//
this.添加子节点ToolStripMenuItem.Name = "添加子节点ToolStripMenuItem";
this.添加子节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.添加子节点ToolStripMenuItem.Text = "添加子节点";
this.添加子节点ToolStripMenuItem.Click += new System.EventHandler(this.添加子节点ToolStripMenuItem_Click);
//
// 添加同级节点ToolStripMenuItem
//
this.添加同级节点ToolStripMenuItem.Name = "添加同级节点ToolStripMenuItem";
this.添加同级节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.添加同级节点ToolStripMenuItem.Text = "添加同级节点";
this.添加同级节点ToolStripMenuItem.Click += new System.EventHandler(this.添加同级节点ToolStripMenuItem_Click);
//
// 添加顶级节点ToolStripMenuItem1
//
this.添加顶级节点ToolStripMenuItem1.Name = "添加顶级节点ToolStripMenuItem1";
this.添加顶级节点ToolStripMenuItem1.Size = new System.Drawing.Size(148, 22);
this.添加顶级节点ToolStripMenuItem1.Text = "添加顶级节点";
this.添加顶级节点ToolStripMenuItem1.Click += new System.EventHandler(this.添加顶级节点ToolStripMenuItem1_Click);
//
// 升级ToolStripMenuItem
//
this.升级ToolStripMenuItem.Name = "升级ToolStripMenuItem";
this.升级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.升级ToolStripMenuItem.Text = "升级";
this.升级ToolStripMenuItem.Click += new System.EventHandler(this.升级ToolStripMenuItem_Click);
//
// 降级ToolStripMenuItem
//
this.降级ToolStripMenuItem.Name = "降级ToolStripMenuItem";
this.降级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.降级ToolStripMenuItem.Text = "降级";
this.降级ToolStripMenuItem.Click += new System.EventHandler(this.降级ToolStripMenuItem_Click);
//
// 删除节点ToolStripMenuItem
//
this.删除节点ToolStripMenuItem.Name = "删除节点ToolStripMenuItem";
this.删除节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.删除节点ToolStripMenuItem.Text = "删除节点";
this.删除节点ToolStripMenuItem.Click += new System.EventHandler(this.删除节点ToolStripMenuItem_Click);
//
// imageList2
//
this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
this.imageList2.Images.SetKeyName(0, "Folder_open_16px.png");
this.imageList2.Images.SetKeyName(1, "item_16px.png");
this.imageList2.Images.SetKeyName(2, "gray_light_16px.png");
this.imageList2.Images.SetKeyName(3, "openSession.png");
//
// tabPage2
//
this.tabPage2.Controls.Add(this.skinPanel1);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(906, 691);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "YML 编辑器";
this.tabPage2.UseVisualStyleBackColor = true;
//
// skinPanel1
//
this.skinPanel1.BackColor = System.Drawing.Color.Transparent;
this.skinPanel1.BorderColor = System.Drawing.Color.LightSteelBlue;
this.skinPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.skinPanel1.Controls.Add(this.ymlEditor);
this.skinPanel1.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
this.skinPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.skinPanel1.DownBack = null;
this.skinPanel1.Location = new System.Drawing.Point(3, 3);
this.skinPanel1.MouseBack = null;
this.skinPanel1.Name = "skinPanel1";
this.skinPanel1.NormlBack = null;
this.skinPanel1.Size = new System.Drawing.Size(900, 685);
this.skinPanel1.TabIndex = 0;
//
// ymlEditor
//
this.ymlEditor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.ymlEditor.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.ymlEditor.ContextMenuStrip = this.contextMenuStrip3;
this.ymlEditor.DetectUrls = false;
this.ymlEditor.Dock = System.Windows.Forms.DockStyle.Fill;
this.ymlEditor.Font = new System.Drawing.Font("新宋体", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ymlEditor.ForeColor = System.Drawing.Color.White;
this.ymlEditor.Location = new System.Drawing.Point(0, 0);
this.ymlEditor.Name = "ymlEditor";
this.ymlEditor.Size = new System.Drawing.Size(898, 683);
this.ymlEditor.TabIndex = 0;
this.ymlEditor.Text = "";
this.ymlEditor.WordWrap = false;
this.ymlEditor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ymlEditor_KeyUp);
this.ymlEditor.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ymlEditor_MouseDown);
//
// contextMenuStrip3
//
this.contextMenuStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.复制ToolStripMenuItem,
this.粘贴ToolStripMenuItem,
this.剪切ToolStripMenuItem,
this.删除行ToolStripMenuItem,
this.行注释ToolStripMenuItem});
this.contextMenuStrip3.Name = "contextMenuStrip3";
this.contextMenuStrip3.Size = new System.Drawing.Size(215, 114);
//
// 复制ToolStripMenuItem
//
this.复制ToolStripMenuItem.Name = "复制ToolStripMenuItem";
this.复制ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.复制ToolStripMenuItem.Text = "复制";
this.复制ToolStripMenuItem.Click += new System.EventHandler(this.复制ToolStripMenuItem_Click);
//
// 粘贴ToolStripMenuItem
//
this.粘贴ToolStripMenuItem.Name = "粘贴ToolStripMenuItem";
this.粘贴ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.粘贴ToolStripMenuItem.Text = "粘贴";
this.粘贴ToolStripMenuItem.Click += new System.EventHandler(this.粘贴ToolStripMenuItem_Click);
//
// 剪切ToolStripMenuItem
//
this.剪切ToolStripMenuItem.Name = "剪切ToolStripMenuItem";
this.剪切ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.剪切ToolStripMenuItem.Text = "剪切";
this.剪切ToolStripMenuItem.Click += new System.EventHandler(this.剪切ToolStripMenuItem_Click);
//
// 删除行ToolStripMenuItem
//
this.删除行ToolStripMenuItem.Name = "删除行ToolStripMenuItem";
this.删除行ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.删除行ToolStripMenuItem.ShowShortcutKeys = false;
this.删除行ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.删除行ToolStripMenuItem.Text = "删除行 Ctrl + D";
this.删除行ToolStripMenuItem.Click += new System.EventHandler(this.删除行ToolStripMenuItem_Click);
//
// 行注释ToolStripMenuItem
//
this.行注释ToolStripMenuItem.Name = "行注释ToolStripMenuItem";
this.行注释ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.OemQuestion)));
this.行注释ToolStripMenuItem.ShowShortcutKeys = false;
this.行注释ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.行注释ToolStripMenuItem.Text = "行注释/取消注释 Ctrl + /";
this.行注释ToolStripMenuItem.Click += new System.EventHandler(this.行注释ToolStripMenuItem_Click);
//
// btn_reload
//
this.btn_reload.Location = new System.Drawing.Point(15, 35);
this.btn_reload.Name = "btn_reload";
this.btn_reload.Size = new System.Drawing.Size(75, 27);
this.btn_reload.TabIndex = 3;
this.btn_reload.Text = "重新加载";
this.btn_reload.UseVisualStyleBackColor = true;
this.btn_reload.Click += new System.EventHandler(this.btn_reload_Click);
//
// btn_new
//
this.btn_new.Location = new System.Drawing.Point(156, 36);
this.btn_new.Name = "btn_new";
this.btn_new.Size = new System.Drawing.Size(90, 27);
this.btn_new.TabIndex = 4;
this.btn_new.Text = "新建YML文件";
this.btn_new.UseVisualStyleBackColor = true;
this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.Red;
this.label1.Font = new System.Drawing.Font("宋体", 11F);
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(30, 137);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(201, 52);
this.label1.TabIndex = 3;
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label1.Visible = false;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.校验ToolStripMenuItem,
this.下载到本地ToolStripMenuItem,
this.上传到服务器ToolStripMenuItem,
this.更改文件名ToolStripMenuItem,
this.删除文件ToolStripMenuItem,
this.打开本地临时目录ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(173, 158);
//
// 校验ToolStripMenuItem
//
this.校验ToolStripMenuItem.Name = "校验ToolStripMenuItem";
this.校验ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.校验ToolStripMenuItem.Text = "格式校验";
this.校验ToolStripMenuItem.Click += new System.EventHandler(this.校验ToolStripMenuItem_Click);
//
// 下载到本地ToolStripMenuItem
//
this.下载到本地ToolStripMenuItem.Name = "下载到本地ToolStripMenuItem";
this.下载到本地ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.下载到本地ToolStripMenuItem.Text = "重新获取文件";
this.下载到本地ToolStripMenuItem.Click += new System.EventHandler(this.下载到本地ToolStripMenuItem_Click);
//
// 上传到服务器ToolStripMenuItem
//
this.上传到服务器ToolStripMenuItem.Name = "上传到服务器ToolStripMenuItem";
this.上传到服务器ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.上传到服务器ToolStripMenuItem.Text = "上传到服务器";
this.上传到服务器ToolStripMenuItem.Click += new System.EventHandler(this.上传到服务器ToolStripMenuItem_Click);
//
// 更改文件名ToolStripMenuItem
//
this.更改文件名ToolStripMenuItem.Name = "更改文件名ToolStripMenuItem";
this.更改文件名ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.更改文件名ToolStripMenuItem.Text = "更改文件名";
this.更改文件名ToolStripMenuItem.Click += new System.EventHandler(this.更改文件名ToolStripMenuItem_Click);
//
// 删除文件ToolStripMenuItem
//
this.删除文件ToolStripMenuItem.Name = "删除文件ToolStripMenuItem";
this.删除文件ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.删除文件ToolStripMenuItem.Text = "删除文件";
this.删除文件ToolStripMenuItem.Click += new System.EventHandler(this.删除文件ToolStripMenuItem_Click);
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
this.pictureBox1.BackgroundImage = global::AppMonitor.Properties.Resources.green_light_16px;
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox1.Location = new System.Drawing.Point(9, 26);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(16, 16);
this.pictureBox1.TabIndex = 6;
this.pictureBox1.TabStop = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(31, 28);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(161, 12);
this.label2.TabIndex = 7;
this.label2.Text = "格式正确,与服务器保持同步";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Location = new System.Drawing.Point(31, 52);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(161, 12);
this.label3.TabIndex = 9;
this.label3.Text = "内容已修改,未与服务器同步";
//
// pictureBox2
//
this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
this.pictureBox2.BackgroundImage = global::AppMonitor.Properties.Resources.MB_light_16px;
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox2.Location = new System.Drawing.Point(9, 50);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(16, 16);
this.pictureBox2.TabIndex = 8;
this.pictureBox2.TabStop = false;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(31, 76);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 12);
this.label4.TabIndex = 11;
this.label4.Text = "格式有错误";
//
// pictureBox3
//
this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
this.pictureBox3.BackgroundImage = global::AppMonitor.Properties.Resources.yellow_light_16px;
this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox3.Location = new System.Drawing.Point(9, 74);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(16, 16);
this.pictureBox3.TabIndex = 10;
this.pictureBox3.TabStop = false;
//
// label5
//
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.Transparent;
this.label5.Location = new System.Drawing.Point(31, 5);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(161, 12);
this.label5.TabIndex = 13;
this.label5.Text = "只存在本地,未同步到服务器";
//
// pictureBox4
//
this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
this.pictureBox4.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_16px;
this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox4.Location = new System.Drawing.Point(9, 3);
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.Size = new System.Drawing.Size(16, 16);
this.pictureBox4.TabIndex = 12;
this.pictureBox4.TabStop = false;
//
// btn_save
//
this.btn_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_save.Enabled = false;
this.btn_save.Location = new System.Drawing.Point(1075, 33);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(78, 27);
this.btn_save.TabIndex = 14;
this.btn_save.Text = "保存";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.button1_Click);
//
// btn_meihua
//
this.btn_meihua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_meihua.Location = new System.Drawing.Point(949, 33);
this.btn_meihua.Name = "btn_meihua";
this.btn_meihua.Size = new System.Drawing.Size(78, 27);
this.btn_meihua.TabIndex = 15;
this.btn_meihua.Text = "美化";
this.btn_meihua.UseVisualStyleBackColor = true;
this.btn_meihua.Visible = false;
this.btn_meihua.Click += new System.EventHandler(this.btn_meihua_Click);
//
// btn_tree
//
this.btn_tree.Location = new System.Drawing.Point(474, 33);
this.btn_tree.Name = "btn_tree";
this.btn_tree.Size = new System.Drawing.Size(108, 27);
this.btn_tree.TabIndex = 16;
this.btn_tree.Text = "展开全部节点";
this.btn_tree.UseVisualStyleBackColor = true;
this.btn_tree.Click += new System.EventHandler(this.btn_tree_Click);
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Controls.Add(this.pictureBox4);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.pictureBox2);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.pictureBox3);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label5);
this.panel1.Location = new System.Drawing.Point(14, 660);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(230, 94);
this.panel1.TabIndex = 17;
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.file_label,
this.pos_label,
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(8, 759);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1156, 22);
this.statusStrip1.TabIndex = 18;
this.statusStrip1.Text = "statusStrip1";
//
// file_label
//
this.file_label.AutoSize = false;
this.file_label.BackColor = System.Drawing.Color.Transparent;
this.file_label.Name = "file_label";
this.file_label.Size = new System.Drawing.Size(800, 17);
this.file_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// pos_label
//
this.pos_label.AutoSize = false;
this.pos_label.BackColor = System.Drawing.Color.Transparent;
this.pos_label.Name = "pos_label";
this.pos_label.Size = new System.Drawing.Size(150, 17);
this.pos_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.BackColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.Gray;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(116, 17);
this.toolStripStatusLabel1.Text = "支持文件拖拽到窗口";
//
// btn_show
//
this.btn_show.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.btn_show.Location = new System.Drawing.Point(89, 35);
this.btn_show.Name = "btn_show";
this.btn_show.Size = new System.Drawing.Size(22, 27);
this.btn_show.TabIndex = 19;
this.btn_show.Text = "↓";
this.btn_show.UseVisualStyleBackColor = true;
this.btn_show.Click += new System.EventHandler(this.btn_show_Click);
//
// stb_remote_dir
//
this.stb_remote_dir.BackColor = System.Drawing.Color.Transparent;
this.stb_remote_dir.DownBack = null;
this.stb_remote_dir.Icon = null;
this.stb_remote_dir.IconIsButton = false;
this.stb_remote_dir.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_dir.IsPreplacedwordChat = '\0';
this.stb_remote_dir.IsSystemPreplacedwordChar = false;
this.stb_remote_dir.Lines = new string[0];
this.stb_remote_dir.Location = new System.Drawing.Point(10, 24);
this.stb_remote_dir.Margin = new System.Windows.Forms.Padding(0);
this.stb_remote_dir.MaxLength = 32767;
this.stb_remote_dir.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_remote_dir.MouseBack = null;
this.stb_remote_dir.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_dir.Multiline = false;
this.stb_remote_dir.Name = "stb_remote_dir";
this.stb_remote_dir.NormlBack = null;
this.stb_remote_dir.Padding = new System.Windows.Forms.Padding(5);
this.stb_remote_dir.ReadOnly = false;
this.stb_remote_dir.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_remote_dir.Size = new System.Drawing.Size(425, 28);
//
//
//
this.stb_remote_dir.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_remote_dir.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_remote_dir.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_remote_dir.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_remote_dir.SkinTxt.Name = "BaseText";
this.stb_remote_dir.SkinTxt.Size = new System.Drawing.Size(415, 18);
this.stb_remote_dir.SkinTxt.TabIndex = 0;
this.stb_remote_dir.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_dir.SkinTxt.WaterText = "远程服务器YML配置文件所在目录";
this.stb_remote_dir.TabIndex = 20;
this.stb_remote_dir.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_remote_dir.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_dir.WaterText = "远程服务器YML配置文件所在目录";
this.stb_remote_dir.WordWrap = true;
//
// panel2
//
this.panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.groupBox1);
this.panel2.Location = new System.Drawing.Point(15, 62);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(456, 109);
this.panel2.TabIndex = 21;
this.panel2.Visible = false;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.stb_remote_dir);
this.groupBox1.Controls.Add(this.btn_ok);
this.groupBox1.Location = new System.Drawing.Point(8, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(442, 94);
this.groupBox1.TabIndex = 23;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "YML配置目录:";
//
// btn_ok
//
this.btn_ok.Location = new System.Drawing.Point(370, 60);
this.btn_ok.Name = "btn_ok";
this.btn_ok.Size = new System.Drawing.Size(65, 29);
this.btn_ok.TabIndex = 22;
this.btn_ok.Text = "确定";
this.btn_ok.UseVisualStyleBackColor = true;
this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
//
// 打开本地临时目录ToolStripMenuItem
//
this.打开本地临时目录ToolStripMenuItem.Name = "打开本地临时目录ToolStripMenuItem";
this.打开本地临时目录ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.打开本地临时目录ToolStripMenuItem.Text = "打开本地临时目录";
this.打开本地临时目录ToolStripMenuItem.Click += new System.EventHandler(this.打开本地临时目录ToolStripMenuItem_Click);
//
// CentralServerConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(1172, 789);
this.Controls.Add(this.panel2);
this.Controls.Add(this.btn_show);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btn_tree);
this.Controls.Add(this.btn_meihua);
this.Controls.Add(this.btn_save);
this.Controls.Add(this.label1);
this.Controls.Add(this.btn_new);
this.Controls.Add(this.btn_reload);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.listView1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "CentralServerConfigForm";
this.Text = "Docker公共配置";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.CentralServerConfigForm_Load);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.CentralServerConfigForm_DragDrop);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.skinPanel2.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.skinPanel1.ResumeLayout(false);
this.contextMenuStrip3.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.panel2.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : IceDeployVersionForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IceDeployVersionForm));
this.stb_local_pdir = new CCWin.SkinControl.SkinTextBox();
this.label1 = new System.Windows.Forms.Label();
this.btn_start = new System.Windows.Forms.Button();
this.btn_cancel = new System.Windows.Forms.Button();
this.btn_choose_dir = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.stb_icexml = new CCWin.SkinControl.SkinTextBox();
this.btn_choose_xml = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.stb_remote_pdir = new CCWin.SkinControl.SkinTextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.btn_choose_mvnxml = new System.Windows.Forms.Button();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.stb_maven_xml = new CCWin.SkinControl.SkinTextBox();
this.label4 = new System.Windows.Forms.Label();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.l_state4 = new System.Windows.Forms.Label();
this.pb_state4 = new System.Windows.Forms.PictureBox();
this.line_state3 = new System.Windows.Forms.Label();
this.line_state2 = new System.Windows.Forms.Label();
this.l_state3 = new System.Windows.Forms.Label();
this.pb_state3 = new System.Windows.Forms.PictureBox();
this.l_state2 = new System.Windows.Forms.Label();
this.pb_state2 = new System.Windows.Forms.PictureBox();
this.line_state1 = new System.Windows.Forms.Label();
this.l_state1 = new System.Windows.Forms.Label();
this.pb_state1 = new System.Windows.Forms.PictureBox();
this.errorLabel = new System.Windows.Forms.Label();
this.gifBox1 = new CCWin.SkinControl.GifBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pb_state4)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state1)).BeginInit();
this.SuspendLayout();
//
// stb_local_pdir
//
this.stb_local_pdir.AllowDrop = true;
this.stb_local_pdir.BackColor = System.Drawing.Color.Transparent;
this.stb_local_pdir.DownBack = null;
this.stb_local_pdir.Icon = null;
this.stb_local_pdir.IconIsButton = false;
this.stb_local_pdir.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_local_pdir.IsPreplacedwordChat = '\0';
this.stb_local_pdir.IsSystemPreplacedwordChar = false;
this.stb_local_pdir.Lines = new string[0];
this.stb_local_pdir.Location = new System.Drawing.Point(177, 16);
this.stb_local_pdir.Margin = new System.Windows.Forms.Padding(0);
this.stb_local_pdir.MaxLength = 32767;
this.stb_local_pdir.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_local_pdir.MouseBack = null;
this.stb_local_pdir.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_local_pdir.Multiline = false;
this.stb_local_pdir.Name = "stb_local_pdir";
this.stb_local_pdir.NormlBack = null;
this.stb_local_pdir.Padding = new System.Windows.Forms.Padding(5);
this.stb_local_pdir.ReadOnly = false;
this.stb_local_pdir.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_local_pdir.Size = new System.Drawing.Size(423, 28);
//
//
//
this.stb_local_pdir.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_local_pdir.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_local_pdir.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_local_pdir.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_local_pdir.SkinTxt.Name = "BaseText";
this.stb_local_pdir.SkinTxt.Size = new System.Drawing.Size(413, 18);
this.stb_local_pdir.SkinTxt.TabIndex = 0;
this.stb_local_pdir.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_local_pdir.SkinTxt.WaterText = "项目代码本地目录,支持拖拽";
this.stb_local_pdir.TabIndex = 6;
this.stb_local_pdir.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_local_pdir.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_local_pdir.WaterText = "项目代码本地目录,支持拖拽";
this.stb_local_pdir.WordWrap = true;
this.stb_local_pdir.DragDrop += new System.Windows.Forms.DragEventHandler(this.stb_local_pdir_DragDrop);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("微软雅黑", 10F);
this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.label1.Location = new System.Drawing.Point(29, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(135, 20);
this.label1.TabIndex = 7;
this.label1.Text = "项目代码本地目录:";
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(613, 457);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(98, 29);
this.btn_start.TabIndex = 12;
this.btn_start.Text = "开始部署";
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.button1_Click);
//
// btn_cancel
//
this.btn_cancel.Location = new System.Drawing.Point(525, 457);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(75, 29);
this.btn_cancel.TabIndex = 13;
this.btn_cancel.Text = "取消";
this.btn_cancel.UseVisualStyleBackColor = true;
this.btn_cancel.Click += new System.EventHandler(this.button2_Click);
//
// btn_choose_dir
//
this.btn_choose_dir.Location = new System.Drawing.Point(608, 16);
this.btn_choose_dir.Name = "btn_choose_dir";
this.btn_choose_dir.Size = new System.Drawing.Size(72, 29);
this.btn_choose_dir.TabIndex = 14;
this.btn_choose_dir.Text = "定位目录";
this.btn_choose_dir.UseVisualStyleBackColor = true;
this.btn_choose_dir.Click += new System.EventHandler(this.btn_choose_dir_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Font = new System.Drawing.Font("微软雅黑", 10F);
this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.label2.Location = new System.Drawing.Point(36, 93);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(128, 20);
this.label2.TabIndex = 16;
this.label2.Text = "ICE接口服务配置:";
//
// stb_icexml
//
this.stb_icexml.AllowDrop = true;
this.stb_icexml.BackColor = System.Drawing.Color.Transparent;
this.stb_icexml.DownBack = null;
this.stb_icexml.Enabled = false;
this.stb_icexml.Icon = null;
this.stb_icexml.IconIsButton = false;
this.stb_icexml.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_icexml.IsPreplacedwordChat = '\0';
this.stb_icexml.IsSystemPreplacedwordChar = false;
this.stb_icexml.Lines = new string[0];
this.stb_icexml.Location = new System.Drawing.Point(177, 89);
this.stb_icexml.Margin = new System.Windows.Forms.Padding(0);
this.stb_icexml.MaxLength = 32767;
this.stb_icexml.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_icexml.MouseBack = null;
this.stb_icexml.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_icexml.Multiline = false;
this.stb_icexml.Name = "stb_icexml";
this.stb_icexml.NormlBack = null;
this.stb_icexml.Padding = new System.Windows.Forms.Padding(5);
this.stb_icexml.ReadOnly = false;
this.stb_icexml.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_icexml.Size = new System.Drawing.Size(423, 28);
//
//
//
this.stb_icexml.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_icexml.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_icexml.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_icexml.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_icexml.SkinTxt.Name = "BaseText";
this.stb_icexml.SkinTxt.Size = new System.Drawing.Size(413, 18);
this.stb_icexml.SkinTxt.TabIndex = 0;
this.stb_icexml.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_icexml.SkinTxt.WaterText = "ICE接口服务配置,一般位于项目~/icedeploy/config/目录下,支持拖拽";
this.stb_icexml.TabIndex = 15;
this.stb_icexml.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_icexml.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_icexml.WaterText = "ICE接口服务配置,一般位于项目~/icedeploy/config/目录下,支持拖拽";
this.stb_icexml.WordWrap = true;
this.stb_icexml.DragDrop += new System.Windows.Forms.DragEventHandler(this.stb_icexml_DragDrop);
//
// btn_choose_xml
//
this.btn_choose_xml.Enabled = false;
this.btn_choose_xml.Location = new System.Drawing.Point(608, 88);
this.btn_choose_xml.Name = "btn_choose_xml";
this.btn_choose_xml.Size = new System.Drawing.Size(72, 29);
this.btn_choose_xml.TabIndex = 17;
this.btn_choose_xml.Text = "选择文件";
this.btn_choose_xml.UseVisualStyleBackColor = true;
this.btn_choose_xml.Click += new System.EventHandler(this.btn_choose_xml_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Font = new System.Drawing.Font("微软雅黑", 10F);
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.label3.Location = new System.Drawing.Point(43, 25);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(121, 20);
this.label3.TabIndex = 19;
this.label3.Text = "服务器项目路径:";
//
// stb_remote_pdir
//
this.stb_remote_pdir.AllowDrop = true;
this.stb_remote_pdir.BackColor = System.Drawing.Color.Transparent;
this.stb_remote_pdir.DownBack = null;
this.stb_remote_pdir.Icon = null;
this.stb_remote_pdir.IconIsButton = false;
this.stb_remote_pdir.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_pdir.IsPreplacedwordChat = '\0';
this.stb_remote_pdir.IsSystemPreplacedwordChar = false;
this.stb_remote_pdir.Lines = new string[0];
this.stb_remote_pdir.Location = new System.Drawing.Point(177, 21);
this.stb_remote_pdir.Margin = new System.Windows.Forms.Padding(0);
this.stb_remote_pdir.MaxLength = 32767;
this.stb_remote_pdir.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_remote_pdir.MouseBack = null;
this.stb_remote_pdir.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_pdir.Multiline = false;
this.stb_remote_pdir.Name = "stb_remote_pdir";
this.stb_remote_pdir.NormlBack = null;
this.stb_remote_pdir.Padding = new System.Windows.Forms.Padding(5);
this.stb_remote_pdir.ReadOnly = false;
this.stb_remote_pdir.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_remote_pdir.Size = new System.Drawing.Size(423, 28);
//
//
//
this.stb_remote_pdir.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_remote_pdir.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_remote_pdir.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_remote_pdir.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_remote_pdir.SkinTxt.Name = "BaseText";
this.stb_remote_pdir.SkinTxt.Size = new System.Drawing.Size(413, 18);
this.stb_remote_pdir.SkinTxt.TabIndex = 0;
this.stb_remote_pdir.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_pdir.SkinTxt.WaterText = "服务器项目目录,例如:~/xxxsrv";
this.stb_remote_pdir.TabIndex = 18;
this.stb_remote_pdir.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_remote_pdir.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_pdir.WaterText = "服务器项目目录,例如:~/xxxsrv";
this.stb_remote_pdir.WordWrap = true;
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.btn_choose_mvnxml);
this.groupBox1.Controls.Add(this.checkBox2);
this.groupBox1.Controls.Add(this.stb_maven_xml);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.checkBox1);
this.groupBox1.Controls.Add(this.stb_icexml);
this.groupBox1.Controls.Add(this.stb_local_pdir);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.btn_choose_xml);
this.groupBox1.Controls.Add(this.btn_choose_dir);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(17, 37);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(694, 199);
this.groupBox1.TabIndex = 20;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "本地";
//
// label6
//
this.label6.AutoSize = true;
this.label6.ForeColor = System.Drawing.Color.PaleVioletRed;
this.label6.Location = new System.Drawing.Point(92, 137);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(185, 12);
this.label6.TabIndex = 24;
this.label6.Text = "不勾选此项代表跳过“打包”步骤";
//
// label5
//
this.label5.AutoSize = true;
this.label5.ForeColor = System.Drawing.Color.PaleVioletRed;
this.label5.Location = new System.Drawing.Point(105, 67);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(209, 12);
this.label5.TabIndex = 23;
this.label5.Text = "不勾选此项代表跳过“更新配置”步骤";
//
// btn_choose_mvnxml
//
this.btn_choose_mvnxml.Enabled = false;
this.btn_choose_mvnxml.Location = new System.Drawing.Point(608, 158);
this.btn_choose_mvnxml.Name = "btn_choose_mvnxml";
this.btn_choose_mvnxml.Size = new System.Drawing.Size(72, 29);
this.btn_choose_mvnxml.TabIndex = 22;
this.btn_choose_mvnxml.Text = "选择文件";
this.btn_choose_mvnxml.UseVisualStyleBackColor = true;
this.btn_choose_mvnxml.Click += new System.EventHandler(this.btn_choose_mvnxml_Click);
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.checkBox2.Location = new System.Drawing.Point(18, 136);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(72, 16);
this.checkBox2.TabIndex = 21;
this.checkBox2.Text = "自动打包";
this.checkBox2.UseVisualStyleBackColor = true;
this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged);
//
// stb_maven_xml
//
this.stb_maven_xml.AllowDrop = true;
this.stb_maven_xml.BackColor = System.Drawing.Color.Transparent;
this.stb_maven_xml.DownBack = null;
this.stb_maven_xml.Enabled = false;
this.stb_maven_xml.Icon = null;
this.stb_maven_xml.IconIsButton = false;
this.stb_maven_xml.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_maven_xml.IsPreplacedwordChat = '\0';
this.stb_maven_xml.IsSystemPreplacedwordChar = false;
this.stb_maven_xml.Lines = new string[0];
this.stb_maven_xml.Location = new System.Drawing.Point(177, 158);
this.stb_maven_xml.Margin = new System.Windows.Forms.Padding(0);
this.stb_maven_xml.MaxLength = 32767;
this.stb_maven_xml.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_maven_xml.MouseBack = null;
this.stb_maven_xml.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_maven_xml.Multiline = false;
this.stb_maven_xml.Name = "stb_maven_xml";
this.stb_maven_xml.NormlBack = null;
this.stb_maven_xml.Padding = new System.Windows.Forms.Padding(5);
this.stb_maven_xml.ReadOnly = false;
this.stb_maven_xml.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_maven_xml.Size = new System.Drawing.Size(423, 28);
//
//
//
this.stb_maven_xml.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_maven_xml.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_maven_xml.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_maven_xml.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_maven_xml.SkinTxt.Name = "BaseText";
this.stb_maven_xml.SkinTxt.Size = new System.Drawing.Size(413, 18);
this.stb_maven_xml.SkinTxt.TabIndex = 0;
this.stb_maven_xml.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_maven_xml.SkinTxt.WaterText = "Maven 配置文件:setting.xml,支持拖拽";
this.stb_maven_xml.TabIndex = 19;
this.stb_maven_xml.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_maven_xml.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_maven_xml.WaterText = "Maven 配置文件:setting.xml,支持拖拽";
this.stb_maven_xml.WordWrap = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Font = new System.Drawing.Font("微软雅黑", 10F);
this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.label4.Location = new System.Drawing.Point(39, 162);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(125, 20);
this.label4.TabIndex = 20;
this.label4.Text = "Maven配置文件:";
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.checkBox1.Location = new System.Drawing.Point(18, 65);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(84, 16);
this.checkBox1.TabIndex = 18;
this.checkBox1.Text = "配置有更新";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.Color.Transparent;
this.groupBox2.Controls.Add(this.stb_remote_pdir);
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Location = new System.Drawing.Point(17, 243);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(694, 64);
this.groupBox2.TabIndex = 21;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "服务器";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// groupBox3
//
this.groupBox3.BackColor = System.Drawing.Color.Transparent;
this.groupBox3.Controls.Add(this.l_state4);
this.groupBox3.Controls.Add(this.pb_state4);
this.groupBox3.Controls.Add(this.line_state3);
this.groupBox3.Controls.Add(this.line_state2);
this.groupBox3.Controls.Add(this.l_state3);
this.groupBox3.Controls.Add(this.pb_state3);
this.groupBox3.Controls.Add(this.l_state2);
this.groupBox3.Controls.Add(this.pb_state2);
this.groupBox3.Controls.Add(this.line_state1);
this.groupBox3.Controls.Add(this.l_state1);
this.groupBox3.Controls.Add(this.pb_state1);
this.groupBox3.Location = new System.Drawing.Point(17, 314);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(694, 131);
this.groupBox3.TabIndex = 22;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "步骤";
//
// l_state4
//
this.l_state4.AutoSize = true;
this.l_state4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.l_state4.ForeColor = System.Drawing.Color.White;
this.l_state4.Location = new System.Drawing.Point(602, 61);
this.l_state4.Name = "l_state4";
this.l_state4.Size = new System.Drawing.Size(29, 12);
this.l_state4.TabIndex = 27;
this.l_state4.Text = "完成";
//
// pb_state4
//
this.pb_state4.BackgroundImage = global::AppMonitor.Properties.Resources.Circle_72px0;
this.pb_state4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_state4.Location = new System.Drawing.Point(579, 32);
this.pb_state4.Name = "pb_state4";
this.pb_state4.Size = new System.Drawing.Size(72, 72);
this.pb_state4.TabIndex = 26;
this.pb_state4.TabStop = false;
//
// line_state3
//
this.line_state3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.line_state3.Location = new System.Drawing.Point(496, 61);
this.line_state3.Name = "line_state3";
this.line_state3.Size = new System.Drawing.Size(60, 4);
this.line_state3.TabIndex = 25;
//
// line_state2
//
this.line_state2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.line_state2.Location = new System.Drawing.Point(317, 61);
this.line_state2.Name = "line_state2";
this.line_state2.Size = new System.Drawing.Size(60, 4);
this.line_state2.TabIndex = 5;
//
// l_state3
//
this.l_state3.AutoSize = true;
this.l_state3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.l_state3.ForeColor = System.Drawing.Color.White;
this.l_state3.Location = new System.Drawing.Point(412, 61);
this.l_state3.Name = "l_state3";
this.l_state3.Size = new System.Drawing.Size(53, 12);
this.l_state3.TabIndex = 24;
this.l_state3.Text = "重启服务";
//
// pb_state3
//
this.pb_state3.BackgroundImage = global::AppMonitor.Properties.Resources.Circle_72px0;
this.pb_state3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_state3.Location = new System.Drawing.Point(402, 32);
this.pb_state3.Name = "pb_state3";
this.pb_state3.Size = new System.Drawing.Size(72, 72);
this.pb_state3.TabIndex = 23;
this.pb_state3.TabStop = false;
//
// l_state2
//
this.l_state2.AutoSize = true;
this.l_state2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.l_state2.ForeColor = System.Drawing.Color.White;
this.l_state2.Location = new System.Drawing.Point(232, 61);
this.l_state2.Name = "l_state2";
this.l_state2.Size = new System.Drawing.Size(53, 12);
this.l_state2.TabIndex = 4;
this.l_state2.Text = "更新配置";
//
// pb_state2
//
this.pb_state2.BackgroundImage = global::AppMonitor.Properties.Resources.Circle_72px0;
this.pb_state2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_state2.Location = new System.Drawing.Point(222, 32);
this.pb_state2.Name = "pb_state2";
this.pb_state2.Size = new System.Drawing.Size(72, 72);
this.pb_state2.TabIndex = 3;
this.pb_state2.TabStop = false;
//
// line_state1
//
this.line_state1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.line_state1.Location = new System.Drawing.Point(138, 61);
this.line_state1.Name = "line_state1";
this.line_state1.Size = new System.Drawing.Size(60, 4);
this.line_state1.TabIndex = 2;
//
// l_state1
//
this.l_state1.AutoSize = true;
this.l_state1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
this.l_state1.ForeColor = System.Drawing.Color.White;
this.l_state1.Location = new System.Drawing.Point(51, 61);
this.l_state1.Name = "l_state1";
this.l_state1.Size = new System.Drawing.Size(53, 12);
this.l_state1.TabIndex = 1;
this.l_state1.Text = "打包上传";
//
// pb_state1
//
this.pb_state1.BackgroundImage = global::AppMonitor.Properties.Resources.Circle_72px0;
this.pb_state1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pb_state1.Location = new System.Drawing.Point(42, 32);
this.pb_state1.Name = "pb_state1";
this.pb_state1.Size = new System.Drawing.Size(72, 72);
this.pb_state1.TabIndex = 0;
this.pb_state1.TabStop = false;
//
// errorLabel
//
this.errorLabel.BackColor = System.Drawing.Color.Transparent;
this.errorLabel.Font = new System.Drawing.Font("宋体", 10F);
this.errorLabel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.errorLabel.Location = new System.Drawing.Point(20, 455);
this.errorLabel.Name = "errorLabel";
this.errorLabel.Size = new System.Drawing.Size(436, 34);
this.errorLabel.TabIndex = 23;
//
// gifBox1
//
this.gifBox1.BackColor = System.Drawing.Color.Transparent;
this.gifBox1.BorderColor = System.Drawing.Color.Transparent;
this.gifBox1.Cursor = System.Windows.Forms.Cursors.Arrow;
this.gifBox1.Image = global::AppMonitor.Properties.Resources.loading2;
this.gifBox1.Location = new System.Drawing.Point(475, 452);
this.gifBox1.Name = "gifBox1";
this.gifBox1.Size = new System.Drawing.Size(36, 36);
this.gifBox1.TabIndex = 24;
this.gifBox1.Visible = false;
//
// IceDeployVersionForm
//
this.AllowDrop = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(730, 505);
this.Controls.Add(this.gifBox1);
this.Controls.Add(this.errorLabel);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btn_cancel);
this.Controls.Add(this.btn_start);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(730, 505);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(730, 505);
this.Name = "IceDeployVersionForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "一键部署Ice项目";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.IceDeployVersionForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pb_state4)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pb_state1)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : TextFindForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextFindForm));
this.btn_replace = new System.Windows.Forms.Button();
this.btn_find = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.text_target = new CCWin.SkinControl.SkinComboBox();
this.label1 = new System.Windows.Forms.Label();
this.text_res = new CCWin.SkinControl.SkinComboBox();
this.btn_replace_all = new System.Windows.Forms.Button();
this.btn_replace_find = new System.Windows.Forms.Button();
this.btn_close = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cb_regex = new System.Windows.Forms.CheckBox();
this.cb_immed = new System.Windows.Forms.CheckBox();
this.cb_whole = new System.Windows.Forms.CheckBox();
this.cb_case = new System.Windows.Forms.CheckBox();
this.info = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btn_replace
//
this.btn_replace.Location = new System.Drawing.Point(172, 360);
this.btn_replace.Name = "btn_replace";
this.btn_replace.Size = new System.Drawing.Size(100, 27);
this.btn_replace.TabIndex = 11;
this.btn_replace.Text = "Replace";
this.btn_replace.UseVisualStyleBackColor = true;
this.btn_replace.Click += new System.EventHandler(this.btn_replace_Click);
//
// btn_find
//
this.btn_find.Location = new System.Drawing.Point(172, 324);
this.btn_find.Name = "btn_find";
this.btn_find.Size = new System.Drawing.Size(100, 27);
this.btn_find.TabIndex = 10;
this.btn_find.Text = "Find";
this.btn_find.UseVisualStyleBackColor = true;
this.btn_find.Click += new System.EventHandler(this.find_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(15, 83);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 9;
this.label2.Text = "替换:";
//
// text_target
//
this.text_target.BaseColor = System.Drawing.Color.Silver;
this.text_target.BorderColor = System.Drawing.Color.Silver;
this.text_target.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.text_target.FormattingEnabled = true;
this.text_target.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_target.Location = new System.Drawing.Point(62, 78);
this.text_target.MouseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_target.MouseGradientColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_target.Name = "text_target";
this.text_target.Size = new System.Drawing.Size(322, 22);
this.text_target.TabIndex = 8;
this.text_target.WaterText = "";
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Location = new System.Drawing.Point(15, 46);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 7;
this.label1.Text = "查找:";
//
// text_res
//
this.text_res.BaseColor = System.Drawing.Color.Silver;
this.text_res.BorderColor = System.Drawing.Color.Silver;
this.text_res.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.text_res.DropBackColor = System.Drawing.SystemColors.Control;
this.text_res.FormattingEnabled = true;
this.text_res.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_res.ItemHoverForeColor = System.Drawing.Color.Teal;
this.text_res.Location = new System.Drawing.Point(62, 41);
this.text_res.MouseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_res.MouseGradientColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.text_res.Name = "text_res";
this.text_res.Size = new System.Drawing.Size(322, 22);
this.text_res.TabIndex = 6;
this.text_res.WaterText = "";
this.text_res.KeyUp += new System.Windows.Forms.KeyEventHandler(this.text_res_KeyUp);
//
// btn_replace_all
//
this.btn_replace_all.Location = new System.Drawing.Point(285, 360);
this.btn_replace_all.Name = "btn_replace_all";
this.btn_replace_all.Size = new System.Drawing.Size(100, 27);
this.btn_replace_all.TabIndex = 13;
this.btn_replace_all.Text = "Replace All";
this.btn_replace_all.UseVisualStyleBackColor = true;
this.btn_replace_all.Click += new System.EventHandler(this.btn_replace_all_Click);
//
// btn_replace_find
//
this.btn_replace_find.Location = new System.Drawing.Point(285, 324);
this.btn_replace_find.Name = "btn_replace_find";
this.btn_replace_find.Size = new System.Drawing.Size(100, 27);
this.btn_replace_find.TabIndex = 12;
this.btn_replace_find.Text = "Replace/Find";
this.btn_replace_find.UseVisualStyleBackColor = true;
this.btn_replace_find.Click += new System.EventHandler(this.btn_replace_find_Click);
//
// btn_close
//
this.btn_close.Location = new System.Drawing.Point(285, 395);
this.btn_close.Name = "btn_close";
this.btn_close.Size = new System.Drawing.Size(100, 27);
this.btn_close.TabIndex = 14;
this.btn_close.Text = "Close";
this.btn_close.UseVisualStyleBackColor = true;
this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
this.groupBox1.Controls.Add(this.cb_regex);
this.groupBox1.Controls.Add(this.cb_immed);
this.groupBox1.Controls.Add(this.cb_whole);
this.groupBox1.Controls.Add(this.cb_case);
this.groupBox1.Location = new System.Drawing.Point(17, 123);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(367, 148);
this.groupBox1.TabIndex = 15;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "选项";
//
// cb_regex
//
this.cb_regex.AutoSize = true;
this.cb_regex.Location = new System.Drawing.Point(217, 94);
this.cb_regex.Name = "cb_regex";
this.cb_regex.Size = new System.Drawing.Size(84, 16);
this.cb_regex.TabIndex = 3;
this.cb_regex.Text = "正则表达式";
this.cb_regex.UseVisualStyleBackColor = true;
this.cb_regex.CheckedChanged += new System.EventHandler(this.regex_CheckedChanged);
//
// cb_immed
//
this.cb_immed.AutoSize = true;
this.cb_immed.Location = new System.Drawing.Point(25, 94);
this.cb_immed.Name = "cb_immed";
this.cb_immed.Size = new System.Drawing.Size(72, 16);
this.cb_immed.TabIndex = 2;
this.cb_immed.Text = "即打即找";
this.cb_immed.UseVisualStyleBackColor = true;
//
// cb_whole
//
this.cb_whole.AutoSize = true;
this.cb_whole.Location = new System.Drawing.Point(217, 53);
this.cb_whole.Name = "cb_whole";
this.cb_whole.Size = new System.Drawing.Size(72, 16);
this.cb_whole.TabIndex = 1;
this.cb_whole.Text = "整字匹配";
this.cb_whole.UseVisualStyleBackColor = true;
//
// cb_case
//
this.cb_case.AutoSize = true;
this.cb_case.Location = new System.Drawing.Point(25, 53);
this.cb_case.Name = "cb_case";
this.cb_case.Size = new System.Drawing.Size(84, 16);
this.cb_case.TabIndex = 0;
this.cb_case.Text = "区分大小写";
this.cb_case.UseVisualStyleBackColor = true;
//
// info
//
this.info.AutoSize = true;
this.info.BackColor = System.Drawing.Color.Transparent;
this.info.ForeColor = System.Drawing.Color.Red;
this.info.Location = new System.Drawing.Point(16, 405);
this.info.Name = "info";
this.info.Size = new System.Drawing.Size(0, 12);
this.info.TabIndex = 4;
//
// TextFindForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(400, 437);
this.Controls.Add(this.info);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btn_close);
this.Controls.Add(this.btn_replace_all);
this.Controls.Add(this.btn_replace_find);
this.Controls.Add(this.btn_replace);
this.Controls.Add(this.btn_find);
this.Controls.Add(this.label2);
this.Controls.Add(this.text_target);
this.Controls.Add(this.label1);
this.Controls.Add(this.text_res);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(400, 437);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(400, 437);
this.Name = "TextFindForm";
this.Text = "查找与替换";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.TextFindForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : SftpForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SftpForm));
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.status_info = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.text_host = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
this.text_username = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
this.text_preplaced = new System.Windows.Forms.ToolStripTextBox();
this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
this.text_port = new System.Windows.Forms.ToolStripTextBox();
this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.panel1 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.listView3 = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.restartFailedsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restartTransfersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.logtext = new System.Windows.Forms.RichTextBox();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1.SuspendLayout();
this.toolStrip2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
this.splitContainer2.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.status_info});
this.statusStrip1.Location = new System.Drawing.Point(8, 733);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1125, 22);
this.statusStrip1.TabIndex = 2;
this.statusStrip1.Text = "statusStrip1";
//
// status_info
//
this.status_info.AutoSize = false;
this.status_info.Name = "status_info";
this.status_info.Size = new System.Drawing.Size(200, 17);
this.status_info.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// toolStrip2
//
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1,
this.text_host,
this.toolStripSeparator1,
this.toolStripLabel2,
this.text_username,
this.toolStripSeparator2,
this.toolStripLabel3,
this.text_preplaced,
this.toolStripLabel4,
this.text_port,
this.toolStripButton7});
this.toolStrip2.Location = new System.Drawing.Point(8, 30);
this.toolStrip2.Name = "toolStrip2";
this.toolStrip2.Size = new System.Drawing.Size(1125, 25);
this.toolStrip2.TabIndex = 3;
this.toolStrip2.Text = "toolStrip2";
//
// toolStripLabel1
//
this.toolStripLabel1.Name = "toolStripLabel1";
this.toolStripLabel1.Size = new System.Drawing.Size(47, 22);
this.toolStripLabel1.Text = "Host:";
//
// text_host
//
this.text_host.Name = "text_host";
this.text_host.Size = new System.Drawing.Size(200, 25);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
//
// toolStripLabel2
//
this.toolStripLabel2.Name = "toolStripLabel2";
this.toolStripLabel2.Size = new System.Drawing.Size(82, 22);
this.toolStripLabel2.Text = "UserName:";
//
// text_username
//
this.text_username.Name = "text_username";
this.text_username.Size = new System.Drawing.Size(160, 25);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// toolStripLabel3
//
this.toolStripLabel3.Name = "toolStripLabel3";
this.toolStripLabel3.Size = new System.Drawing.Size(76, 22);
this.toolStripLabel3.Text = "Preplacedword:";
//
// text_preplaced
//
this.text_preplaced.Name = "text_preplaced";
this.text_preplaced.Size = new System.Drawing.Size(160, 25);
//
// toolStripLabel4
//
this.toolStripLabel4.Name = "toolStripLabel4";
this.toolStripLabel4.Size = new System.Drawing.Size(44, 22);
this.toolStripLabel4.Text = "Port:";
//
// text_port
//
this.text_port.Name = "text_port";
this.text_port.Size = new System.Drawing.Size(60, 25);
this.text_port.Text = "22";
//
// toolStripButton7
//
this.toolStripButton7.Image = global::AppMonitor.Properties.Resources.reConn;
this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton7.Name = "toolStripButton7";
this.toolStripButton7.Size = new System.Drawing.Size(75, 22);
this.toolStripButton7.Text = "Connect";
this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(8, 55);
this.splitContainer1.Name = "splitContainer1";
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
this.splitContainer1.Size = new System.Drawing.Size(1125, 678);
this.splitContainer1.SplitterDistance = 520;
this.splitContainer1.TabIndex = 4;
//
// splitContainer2
//
this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer2.Location = new System.Drawing.Point(0, 0);
this.splitContainer2.Name = "splitContainer2";
//
// splitContainer2.Panel1
//
this.splitContainer2.Panel1.Controls.Add(this.panel1);
//
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.panel2);
this.splitContainer2.Size = new System.Drawing.Size(1125, 520);
this.splitContainer2.SplitterDistance = 501;
this.splitContainer2.TabIndex = 0;
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(501, 520);
this.panel1.TabIndex = 0;
//
// panel2
//
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(0, 0);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(620, 520);
this.panel2.TabIndex = 1;
//
// tabControl1
//
this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 0);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(1125, 154);
this.tabControl1.TabIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.listView3);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(1117, 125);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Transfers";
this.tabPage1.UseVisualStyleBackColor = true;
//
// listView3
//
this.listView3.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5,
this.columnHeader6,
this.columnHeader7,
this.columnHeader8});
this.listView3.ContextMenuStrip = this.contextMenuStrip1;
this.listView3.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView3.FullRowSelect = true;
this.listView3.Location = new System.Drawing.Point(3, 3);
this.listView3.Name = "listView3";
this.listView3.Size = new System.Drawing.Size(1111, 119);
this.listView3.TabIndex = 0;
this.listView3.UseCompatibleStateImageBehavior = false;
this.listView3.View = System.Windows.Forms.View.Details;
this.listView3.SelectedIndexChanged += new System.EventHandler(this.listView3_SelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 270;
//
// columnHeader2
//
this.columnHeader2.Text = "Status";
this.columnHeader2.Width = 70;
//
// columnHeader3
//
this.columnHeader3.Text = "Progress";
this.columnHeader3.Width = 80;
//
// columnHeader4
//
this.columnHeader4.Text = "Size";
this.columnHeader4.Width = 70;
//
// columnHeader5
//
this.columnHeader5.Text = "Local Path";
this.columnHeader5.Width = 220;
//
// columnHeader6
//
this.columnHeader6.Text = "Remote Path";
this.columnHeader6.Width = 220;
//
// columnHeader7
//
this.columnHeader7.Text = "Speed";
//
// columnHeader8
//
this.columnHeader8.Text = "Time Left";
this.columnHeader8.Width = 70;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.removeToolStripMenuItem,
this.removeAllToolStripMenuItem,
this.toolStripSeparator5,
this.restartFailedsToolStripMenuItem,
this.restartTransfersToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(176, 98);
//
// removeToolStripMenuItem
//
this.removeToolStripMenuItem.Enabled = false;
this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
this.removeToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
this.removeToolStripMenuItem.Text = "Remove";
this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
//
// removeAllToolStripMenuItem
//
this.removeAllToolStripMenuItem.Enabled = false;
this.removeAllToolStripMenuItem.Name = "removeAllToolStripMenuItem";
this.removeAllToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
this.removeAllToolStripMenuItem.Text = "Remove All";
this.removeAllToolStripMenuItem.Click += new System.EventHandler(this.removeAllToolStripMenuItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(172, 6);
//
// restartFailedsToolStripMenuItem
//
this.restartFailedsToolStripMenuItem.Enabled = false;
this.restartFailedsToolStripMenuItem.Name = "restartFailedsToolStripMenuItem";
this.restartFailedsToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
this.restartFailedsToolStripMenuItem.Text = "Restart All Failed";
this.restartFailedsToolStripMenuItem.Click += new System.EventHandler(this.restartFailedsToolStripMenuItem_Click);
//
// restartTransfersToolStripMenuItem
//
this.restartTransfersToolStripMenuItem.Enabled = false;
this.restartTransfersToolStripMenuItem.Name = "restartTransfersToolStripMenuItem";
this.restartTransfersToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
this.restartTransfersToolStripMenuItem.Text = "Restart Transfers";
this.restartTransfersToolStripMenuItem.Click += new System.EventHandler(this.restartTransfersToolStripMenuItem_Click);
//
// tabPage2
//
this.tabPage2.Controls.Add(this.logtext);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(1117, 125);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Logs";
this.tabPage2.UseVisualStyleBackColor = true;
//
// logtext
//
this.logtext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.logtext.ContextMenuStrip = this.contextMenuStrip2;
this.logtext.Dock = System.Windows.Forms.DockStyle.Fill;
this.logtext.ForeColor = System.Drawing.Color.White;
this.logtext.Location = new System.Drawing.Point(3, 3);
this.logtext.Name = "logtext";
this.logtext.ReadOnly = true;
this.logtext.Size = new System.Drawing.Size(1111, 119);
this.logtext.TabIndex = 0;
this.logtext.Text = "";
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.copyToolStripMenuItem,
this.clearToolStripMenuItem,
this.selectAllToolStripMenuItem});
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(129, 70);
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
this.copyToolStripMenuItem.Text = "&Copy";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
// clearToolStripMenuItem
//
this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
this.clearToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
this.clearToolStripMenuItem.Text = "&Clear";
this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
//
// selectAllToolStripMenuItem
//
this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
this.selectAllToolStripMenuItem.Text = "&Select All";
this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
//
// SftpForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(1141, 763);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.toolStrip2);
this.Controls.Add(this.statusStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "SftpForm";
this.Text = "AMSftp";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SftpForm_FormClosing);
this.Load += new System.EventHandler(this.SftpForm_Load);
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.toolStrip2.ResumeLayout(false);
this.toolStrip2.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.splitContainer2.Panel1.ResumeLayout(false);
this.splitContainer2.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
this.splitContainer2.ResumeLayout(false);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : TimedTaskForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TimedTaskForm));
this.scb_cycle = new CCWin.SkinControl.SkinComboBox();
this.label1 = new System.Windows.Forms.Label();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.deleteItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.upToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.downToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.task_name = new CCWin.SkinControl.SkinTextBox();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.week_panel = new System.Windows.Forms.Panel();
this.week6 = new System.Windows.Forms.CheckBox();
this.week5 = new System.Windows.Forms.CheckBox();
this.week4 = new System.Windows.Forms.CheckBox();
this.week3 = new System.Windows.Forms.CheckBox();
this.week2 = new System.Windows.Forms.CheckBox();
this.week1 = new System.Windows.Forms.CheckBox();
this.week0 = new System.Windows.Forms.CheckBox();
this.time = new System.Windows.Forms.DateTimePicker();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.date = new System.Windows.Forms.DateTimePicker();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.button1 = new System.Windows.Forms.Button();
this.shell = new CCWin.SkinControl.SkinTextBox();
this.shell_name = new CCWin.SkinControl.SkinTextBox();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
this.label7 = new System.Windows.Forms.Label();
this.scb_template = new CCWin.SkinControl.SkinListView();
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.var_list = new CCWin.SkinControl.SkinListView();
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.week_panel.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// scb_cycle
//
this.scb_cycle.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_cycle.BorderColor = System.Drawing.Color.LightSteelBlue;
this.scb_cycle.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.scb_cycle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.scb_cycle.Font = new System.Drawing.Font("宋体", 10F);
this.scb_cycle.FormattingEnabled = true;
this.scb_cycle.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_cycle.ItemHeight = 18;
this.scb_cycle.Items.AddRange(new object[] {
"仅一次",
"每天",
"每周",
"每月",
"每年"});
this.scb_cycle.Location = new System.Drawing.Point(78, 23);
this.scb_cycle.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.scb_cycle.MouseColor = System.Drawing.Color.Orange;
this.scb_cycle.MouseGradientColor = System.Drawing.Color.Orange;
this.scb_cycle.Name = "scb_cycle";
this.scb_cycle.Size = new System.Drawing.Size(137, 24);
this.scb_cycle.TabIndex = 1;
this.scb_cycle.WaterText = "";
this.scb_cycle.SelectedIndexChanged += new System.EventHandler(this.skinComboBox1_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(24, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(48, 19);
this.label1.TabIndex = 2;
this.label1.Text = "周期:";
//
// customShellListView
//
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3});
this.customShellListView.ContextMenuStrip = this.contextMenuStrip1;
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(20, 290);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.LightSkyBlue;
this.customShellListView.Size = new System.Drawing.Size(955, 367);
this.customShellListView.TabIndex = 11;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AllKeyUp);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "执行时间";
this.columnHeader1.Width = 200;
//
// columnHeader2
//
this.columnHeader2.Text = "命令名称";
this.columnHeader2.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "Shell脚本";
this.columnHeader3.Width = 600;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.deleteItemToolStripMenuItem,
this.upToolStripMenuItem,
this.downToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
//
// deleteItemToolStripMenuItem
//
this.deleteItemToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.remove_16px;
this.deleteItemToolStripMenuItem.Name = "deleteItemToolStripMenuItem";
this.deleteItemToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.deleteItemToolStripMenuItem.Text = "Delete Item";
this.deleteItemToolStripMenuItem.Click += new System.EventHandler(this.deleteItemToolStripMenuItem_Click);
//
// upToolStripMenuItem
//
this.upToolStripMenuItem.Name = "upToolStripMenuItem";
this.upToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.upToolStripMenuItem.Text = "Up";
this.upToolStripMenuItem.Click += new System.EventHandler(this.upToolStripMenuItem_Click);
//
// downToolStripMenuItem
//
this.downToolStripMenuItem.Name = "downToolStripMenuItem";
this.downToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.downToolStripMenuItem.Text = "Down";
this.downToolStripMenuItem.Click += new System.EventHandler(this.downToolStripMenuItem_Click);
//
// task_name
//
this.task_name.BackColor = System.Drawing.Color.Transparent;
this.task_name.DownBack = null;
this.task_name.Icon = null;
this.task_name.IconIsButton = false;
this.task_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.task_name.IsPreplacedwordChat = '\0';
this.task_name.IsSystemPreplacedwordChar = false;
this.task_name.Lines = new string[0];
this.task_name.Location = new System.Drawing.Point(93, 19);
this.task_name.Margin = new System.Windows.Forms.Padding(0);
this.task_name.MaxLength = 32767;
this.task_name.MinimumSize = new System.Drawing.Size(28, 28);
this.task_name.MouseBack = null;
this.task_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.task_name.Multiline = false;
this.task_name.Name = "task_name";
this.task_name.NormlBack = null;
this.task_name.Padding = new System.Windows.Forms.Padding(5);
this.task_name.ReadOnly = false;
this.task_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.task_name.Size = new System.Drawing.Size(433, 28);
//
//
//
this.task_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.task_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.task_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.task_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.task_name.SkinTxt.Name = "BaseText";
this.task_name.SkinTxt.Size = new System.Drawing.Size(423, 18);
this.task_name.SkinTxt.TabIndex = 0;
this.task_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.task_name.SkinTxt.WaterText = "任务名称";
this.task_name.TabIndex = 12;
this.task_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.task_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.task_name.WaterText = "任务名称";
this.task_name.WordWrap = true;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.Location = new System.Drawing.Point(12, 23);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(74, 19);
this.label2.TabIndex = 13;
this.label2.Text = "任务名称:";
//
// groupBox1
//
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
this.groupBox1.Controls.Add(this.scb_cycle);
this.groupBox1.Controls.Add(this.week_panel);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.time);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.date);
this.groupBox1.Location = new System.Drawing.Point(20, 110);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(427, 172);
this.groupBox1.TabIndex = 14;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "执行时间";
//
// week_panel
//
this.week_panel.Controls.Add(this.week6);
this.week_panel.Controls.Add(this.week5);
this.week_panel.Controls.Add(this.week4);
this.week_panel.Controls.Add(this.week3);
this.week_panel.Controls.Add(this.week2);
this.week_panel.Controls.Add(this.week1);
this.week_panel.Controls.Add(this.week0);
this.week_panel.Location = new System.Drawing.Point(76, 57);
this.week_panel.Name = "week_panel";
this.week_panel.Size = new System.Drawing.Size(332, 29);
this.week_panel.TabIndex = 18;
this.week_panel.Visible = false;
//
// week6
//
this.week6.AutoSize = true;
this.week6.Location = new System.Drawing.Point(266, 4);
this.week6.Name = "week6";
this.week6.Size = new System.Drawing.Size(39, 21);
this.week6.TabIndex = 6;
this.week6.Text = "六";
this.week6.UseVisualStyleBackColor = true;
//
// week5
//
this.week5.AutoSize = true;
this.week5.Location = new System.Drawing.Point(223, 4);
this.week5.Name = "week5";
this.week5.Size = new System.Drawing.Size(39, 21);
this.week5.TabIndex = 5;
this.week5.Text = "五";
this.week5.UseVisualStyleBackColor = true;
//
// week4
//
this.week4.AutoSize = true;
this.week4.Location = new System.Drawing.Point(180, 4);
this.week4.Name = "week4";
this.week4.Size = new System.Drawing.Size(39, 21);
this.week4.TabIndex = 4;
this.week4.Text = "四";
this.week4.UseVisualStyleBackColor = true;
//
// week3
//
this.week3.AutoSize = true;
this.week3.Location = new System.Drawing.Point(137, 4);
this.week3.Name = "week3";
this.week3.Size = new System.Drawing.Size(39, 21);
this.week3.TabIndex = 3;
this.week3.Text = "三";
this.week3.UseVisualStyleBackColor = true;
//
// week2
//
this.week2.AutoSize = true;
this.week2.Location = new System.Drawing.Point(94, 4);
this.week2.Name = "week2";
this.week2.Size = new System.Drawing.Size(39, 21);
this.week2.TabIndex = 2;
this.week2.Text = "二";
this.week2.UseVisualStyleBackColor = true;
//
// week1
//
this.week1.AutoSize = true;
this.week1.Location = new System.Drawing.Point(51, 4);
this.week1.Name = "week1";
this.week1.Size = new System.Drawing.Size(39, 21);
this.week1.TabIndex = 1;
this.week1.Text = "一";
this.week1.UseVisualStyleBackColor = true;
//
// week0
//
this.week0.AutoSize = true;
this.week0.Location = new System.Drawing.Point(4, 4);
this.week0.Name = "week0";
this.week0.Size = new System.Drawing.Size(43, 21);
this.week0.TabIndex = 0;
this.week0.Text = "日 ";
this.week0.UseVisualStyleBackColor = true;
//
// time
//
this.time.Format = System.Windows.Forms.DateTimePickerFormat.Time;
this.time.Location = new System.Drawing.Point(78, 94);
this.time.MinDate = new System.DateTime(2017, 11, 20, 0, 0, 0, 0);
this.time.Name = "time";
this.time.ShowUpDown = true;
this.time.Size = new System.Drawing.Size(137, 23);
this.time.TabIndex = 17;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.Location = new System.Drawing.Point(24, 59);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(48, 19);
this.label3.TabIndex = 15;
this.label3.Text = "日期:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label4.Location = new System.Drawing.Point(24, 95);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(48, 19);
this.label4.TabIndex = 14;
this.label4.Text = "时间:";
//
// date
//
this.date.CalendarTrailingForeColor = System.Drawing.Color.Olive;
this.date.Location = new System.Drawing.Point(78, 57);
this.date.MinDate = new System.DateTime(2017, 11, 20, 0, 0, 0, 0);
this.date.Name = "date";
this.date.ShowUpDown = true;
this.date.Size = new System.Drawing.Size(137, 23);
this.date.TabIndex = 16;
//
// groupBox2
//
this.groupBox2.BackColor = System.Drawing.Color.Transparent;
this.groupBox2.Controls.Add(this.task_name);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Location = new System.Drawing.Point(20, 35);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(788, 61);
this.groupBox2.TabIndex = 15;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "任务信息";
//
// groupBox3
//
this.groupBox3.BackColor = System.Drawing.Color.Transparent;
this.groupBox3.Controls.Add(this.linkLabel2);
this.groupBox3.Controls.Add(this.linkLabel1);
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.shell);
this.groupBox3.Controls.Add(this.shell_name);
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.label6);
this.groupBox3.Location = new System.Drawing.Point(453, 111);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(522, 172);
this.groupBox3.TabIndex = 18;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "任务命令";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(457, 68);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(56, 17);
this.linkLabel2.TabIndex = 20;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "插入变量";
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(456, 26);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(56, 17);
this.linkLabel1.TabIndex = 16;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "选择模版";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// button1
//
this.button1.Location = new System.Drawing.Point(456, 128);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(60, 38);
this.button1.TabIndex = 19;
this.button1.Text = "新增↓";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// shell
//
this.shell.BackColor = System.Drawing.Color.Transparent;
this.shell.DownBack = null;
this.shell.Icon = null;
this.shell.IconIsButton = false;
this.shell.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell.IsPreplacedwordChat = '\0';
this.shell.IsSystemPreplacedwordChar = false;
this.shell.Lines = new string[0];
this.shell.Location = new System.Drawing.Point(78, 56);
this.shell.Margin = new System.Windows.Forms.Padding(0);
this.shell.MaxLength = 32767;
this.shell.MinimumSize = new System.Drawing.Size(28, 28);
this.shell.MouseBack = null;
this.shell.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell.Multiline = true;
this.shell.Name = "shell";
this.shell.NormlBack = null;
this.shell.Padding = new System.Windows.Forms.Padding(5);
this.shell.ReadOnly = false;
this.shell.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.shell.Size = new System.Drawing.Size(372, 111);
//
//
//
this.shell.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shell.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shell.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shell.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shell.SkinTxt.Multiline = true;
this.shell.SkinTxt.Name = "BaseText";
this.shell.SkinTxt.Size = new System.Drawing.Size(362, 101);
this.shell.SkinTxt.TabIndex = 0;
this.shell.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell.SkinTxt.WaterText = "shell脚本";
this.shell.TabIndex = 14;
this.shell.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shell.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell.WaterText = "shell脚本";
this.shell.WordWrap = true;
this.shell.Enter += new System.EventHandler(this.shell_Enter);
//
// shell_name
//
this.shell_name.BackColor = System.Drawing.Color.Transparent;
this.shell_name.DownBack = null;
this.shell_name.Icon = null;
this.shell_name.IconIsButton = false;
this.shell_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell_name.IsPreplacedwordChat = '\0';
this.shell_name.IsSystemPreplacedwordChar = false;
this.shell_name.Lines = new string[0];
this.shell_name.Location = new System.Drawing.Point(78, 19);
this.shell_name.Margin = new System.Windows.Forms.Padding(0);
this.shell_name.MaxLength = 32767;
this.shell_name.MinimumSize = new System.Drawing.Size(28, 28);
this.shell_name.MouseBack = null;
this.shell_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shell_name.Multiline = false;
this.shell_name.Name = "shell_name";
this.shell_name.NormlBack = null;
this.shell_name.Padding = new System.Windows.Forms.Padding(5);
this.shell_name.ReadOnly = false;
this.shell_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.shell_name.Size = new System.Drawing.Size(372, 28);
//
//
//
this.shell_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shell_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shell_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shell_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shell_name.SkinTxt.Name = "BaseText";
this.shell_name.SkinTxt.Size = new System.Drawing.Size(362, 18);
this.shell_name.SkinTxt.TabIndex = 0;
this.shell_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell_name.SkinTxt.WaterText = "命令/脚本名称";
this.shell_name.TabIndex = 13;
this.shell_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shell_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shell_name.WaterText = "命令/脚本名称";
this.shell_name.WordWrap = true;
this.shell_name.Enter += new System.EventHandler(this.shell_name_Enter);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.Location = new System.Drawing.Point(27, 23);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(48, 19);
this.label5.TabIndex = 15;
this.label5.Text = "名称:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label6.Location = new System.Drawing.Point(27, 57);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(48, 19);
this.label6.TabIndex = 14;
this.label6.Text = "脚本:";
//
// button2
//
this.button2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.button2.Location = new System.Drawing.Point(814, 44);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(161, 52);
this.button2.TabIndex = 18;
this.button2.Text = "保存 Ctrl+S";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label7.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.label7.Location = new System.Drawing.Point(9, 101);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(980, 5);
this.label7.TabIndex = 19;
//
// scb_template
//
this.scb_template.BorderColor = System.Drawing.Color.LightGray;
this.scb_template.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader4,
this.columnHeader5});
this.scb_template.FullRowSelect = true;
this.scb_template.GridLines = true;
this.scb_template.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.scb_template.Location = new System.Drawing.Point(158, 5);
this.scb_template.MultiSelect = false;
this.scb_template.Name = "scb_template";
this.scb_template.OwnerDraw = true;
this.scb_template.RowBackColor2 = System.Drawing.Color.White;
this.scb_template.SelectedColor = System.Drawing.Color.LightSteelBlue;
this.scb_template.Size = new System.Drawing.Size(370, 182);
this.scb_template.TabIndex = 21;
this.scb_template.UseCompatibleStateImageBehavior = false;
this.scb_template.View = System.Windows.Forms.View.Details;
this.scb_template.Visible = false;
this.scb_template.MouseClick += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseClick);
this.scb_template.MouseUp += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseUp);
//
// columnHeader4
//
this.columnHeader4.Text = "命令名称";
this.columnHeader4.Width = 120;
//
// columnHeader5
//
this.columnHeader5.Text = "Shell脚本";
this.columnHeader5.Width = 245;
//
// var_list
//
this.var_list.BorderColor = System.Drawing.Color.LightGray;
this.var_list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader6,
this.columnHeader7});
this.var_list.FullRowSelect = true;
this.var_list.GridLines = true;
this.var_list.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.var_list.Location = new System.Drawing.Point(539, 5);
this.var_list.MultiSelect = false;
this.var_list.Name = "var_list";
this.var_list.OwnerDraw = true;
this.var_list.RowBackColor2 = System.Drawing.Color.White;
this.var_list.SelectedColor = System.Drawing.Color.LightSteelBlue;
this.var_list.Size = new System.Drawing.Size(370, 182);
this.var_list.TabIndex = 22;
this.var_list.UseCompatibleStateImageBehavior = false;
this.var_list.View = System.Windows.Forms.View.Details;
this.var_list.Visible = false;
this.var_list.MouseClick += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseClick);
this.var_list.MouseUp += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseUp);
//
// columnHeader6
//
this.columnHeader6.Text = "变量";
this.columnHeader6.Width = 180;
//
// columnHeader7
//
this.columnHeader7.Text = "描述";
this.columnHeader7.Width = 185;
//
// TimedTaskForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(997, 670);
this.Controls.Add(this.var_list);
this.Controls.Add(this.scb_template);
this.Controls.Add(this.label7);
this.Controls.Add(this.button2);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.customShellListView);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(718, 528);
this.Name = "TimedTaskForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "定时任务";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.TimedTaskForm_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.week_panel.ResumeLayout(false);
this.week_panel.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : YmlNodeForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer treeListViewItemCollectionComparer2 = new System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(YmlNodeForm));
this.parent = new CCWin.SkinControl.SkinTextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.name = new CCWin.SkinControl.SkinTextBox();
this.label3 = new System.Windows.Forms.Label();
this.value = new CCWin.SkinControl.SkinTextBox();
this.label4 = new System.Windows.Forms.Label();
this.common = new CCWin.SkinControl.SkinTextBox();
this.btn_sure = new System.Windows.Forms.Button();
this.btn_cancel = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this._treeView = new System.Windows.Forms.TreeListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList2 = new System.Windows.Forms.ImageList(this.components);
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// parent
//
this.parent.BackColor = System.Drawing.Color.Transparent;
this.parent.DownBack = null;
this.parent.Icon = null;
this.parent.IconIsButton = false;
this.parent.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.parent.IsPreplacedwordChat = '\0';
this.parent.IsSystemPreplacedwordChar = false;
this.parent.Lines = new string[0];
this.parent.Location = new System.Drawing.Point(102, 43);
this.parent.Margin = new System.Windows.Forms.Padding(0);
this.parent.MaxLength = 32767;
this.parent.MinimumSize = new System.Drawing.Size(28, 28);
this.parent.MouseBack = null;
this.parent.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.parent.Multiline = false;
this.parent.Name = "parent";
this.parent.NormlBack = null;
this.parent.Padding = new System.Windows.Forms.Padding(5);
this.parent.ReadOnly = true;
this.parent.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.parent.Size = new System.Drawing.Size(464, 28);
//
//
//
this.parent.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.parent.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.parent.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.parent.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.parent.SkinTxt.Name = "BaseText";
this.parent.SkinTxt.ReadOnly = true;
this.parent.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.parent.SkinTxt.TabIndex = 0;
this.parent.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.parent.SkinTxt.WaterText = "父节点属性名称";
this.parent.TabIndex = 0;
this.parent.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.parent.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.parent.WaterText = "父节点属性名称";
this.parent.WordWrap = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Location = new System.Drawing.Point(17, 51);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 1;
this.label1.Text = "父属性名称:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(29, 95);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 3;
this.label2.Text = "属性名称:";
//
// name
//
this.name.BackColor = System.Drawing.Color.Transparent;
this.name.DownBack = null;
this.name.Icon = null;
this.name.IconIsButton = false;
this.name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.name.IsPreplacedwordChat = '\0';
this.name.IsSystemPreplacedwordChar = false;
this.name.Lines = new string[0];
this.name.Location = new System.Drawing.Point(102, 87);
this.name.Margin = new System.Windows.Forms.Padding(0);
this.name.MaxLength = 32767;
this.name.MinimumSize = new System.Drawing.Size(28, 28);
this.name.MouseBack = null;
this.name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.name.Multiline = false;
this.name.Name = "name";
this.name.NormlBack = null;
this.name.Padding = new System.Windows.Forms.Padding(5);
this.name.ReadOnly = false;
this.name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.name.Size = new System.Drawing.Size(464, 28);
//
//
//
this.name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.name.SkinTxt.Name = "BaseText";
this.name.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.name.SkinTxt.TabIndex = 0;
this.name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.name.SkinTxt.WaterText = "属性名称";
this.name.TabIndex = 2;
this.name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.name.WaterText = "属性名称";
this.name.WordWrap = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Location = new System.Drawing.Point(41, 141);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 3;
this.label3.Text = "属性值:";
//
// value
//
this.value.BackColor = System.Drawing.Color.Transparent;
this.value.DownBack = null;
this.value.Icon = null;
this.value.IconIsButton = false;
this.value.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.value.IsPreplacedwordChat = '\0';
this.value.IsSystemPreplacedwordChar = false;
this.value.Lines = new string[0];
this.value.Location = new System.Drawing.Point(102, 133);
this.value.Margin = new System.Windows.Forms.Padding(0);
this.value.MaxLength = 32767;
this.value.MinimumSize = new System.Drawing.Size(28, 28);
this.value.MouseBack = null;
this.value.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.value.Multiline = false;
this.value.Name = "value";
this.value.NormlBack = null;
this.value.Padding = new System.Windows.Forms.Padding(5);
this.value.ReadOnly = false;
this.value.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.value.Size = new System.Drawing.Size(464, 28);
//
//
//
this.value.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.value.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.value.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.value.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.value.SkinTxt.Name = "BaseText";
this.value.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.value.SkinTxt.TabIndex = 0;
this.value.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.value.SkinTxt.WaterText = "属性值";
this.value.TabIndex = 2;
this.value.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.value.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.value.WaterText = "属性值";
this.value.WordWrap = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(53, 186);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 5;
this.label4.Text = "备注:";
//
// common
//
this.common.BackColor = System.Drawing.Color.Transparent;
this.common.DownBack = null;
this.common.Icon = null;
this.common.IconIsButton = false;
this.common.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.common.IsPreplacedwordChat = '\0';
this.common.IsSystemPreplacedwordChar = false;
this.common.Lines = new string[0];
this.common.Location = new System.Drawing.Point(102, 178);
this.common.Margin = new System.Windows.Forms.Padding(0);
this.common.MaxLength = 32767;
this.common.MinimumSize = new System.Drawing.Size(28, 28);
this.common.MouseBack = null;
this.common.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.common.Multiline = false;
this.common.Name = "common";
this.common.NormlBack = null;
this.common.Padding = new System.Windows.Forms.Padding(5);
this.common.ReadOnly = false;
this.common.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.common.Size = new System.Drawing.Size(464, 28);
//
//
//
this.common.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.common.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.common.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.common.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.common.SkinTxt.Name = "BaseText";
this.common.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.common.SkinTxt.TabIndex = 0;
this.common.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.common.SkinTxt.WaterText = "备注";
this.common.TabIndex = 4;
this.common.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.common.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.common.WaterText = "备注";
this.common.WordWrap = true;
//
// btn_sure
//
this.btn_sure.Location = new System.Drawing.Point(491, 228);
this.btn_sure.Name = "btn_sure";
this.btn_sure.Size = new System.Drawing.Size(75, 27);
this.btn_sure.TabIndex = 6;
this.btn_sure.Text = "确定";
this.btn_sure.UseVisualStyleBackColor = true;
this.btn_sure.Click += new System.EventHandler(this.btn_sure_Click);
//
// btn_cancel
//
this.btn_cancel.Location = new System.Drawing.Point(396, 228);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(75, 27);
this.btn_cancel.TabIndex = 7;
this.btn_cancel.Text = "取消";
this.btn_cancel.UseVisualStyleBackColor = true;
this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Controls.Add(this.button2);
this.panel1.Controls.Add(this.button1);
this.panel1.Controls.Add(this._treeView);
this.panel1.Location = new System.Drawing.Point(102, 71);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(464, 191);
this.panel1.TabIndex = 1;
this.panel1.Visible = false;
//
// _treeView
//
this._treeView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3});
treeListViewItemCollectionComparer2.Column = 0;
treeListViewItemCollectionComparer2.SortOrder = System.Windows.Forms.SortOrder.None;
this._treeView.Comparer = treeListViewItemCollectionComparer2;
this._treeView.GridLines = true;
this._treeView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this._treeView.LabelWrap = false;
this._treeView.Location = new System.Drawing.Point(0, -1);
this._treeView.MultiSelect = false;
this._treeView.Name = "_treeView";
this._treeView.PlusMinusLineColor = System.Drawing.Color.Teal;
this._treeView.Size = new System.Drawing.Size(464, 152);
this._treeView.SmallImageList = this.imageList2;
this._treeView.Sorting = System.Windows.Forms.SortOrder.None;
this._treeView.TabIndex = 1;
this._treeView.UseCompatibleStateImageBehavior = false;
//
// columnHeader2
//
this.columnHeader2.Text = "属性";
this.columnHeader2.Width = 240;
//
// columnHeader3
//
this.columnHeader3.Text = "值";
this.columnHeader3.Width = 210;
//
// imageList2
//
this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
this.imageList2.Images.SetKeyName(0, "Folder_open_16px.png");
this.imageList2.Images.SetKeyName(1, "item_16px.png");
this.imageList2.Images.SetKeyName(2, "gray_light_16px.png");
this.imageList2.Images.SetKeyName(3, "openSession.png");
//
// button1
//
this.button1.Location = new System.Drawing.Point(381, 157);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 27);
this.button1.TabIndex = 2;
this.button1.Text = "选定";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(299, 157);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 27);
this.button2.TabIndex = 3;
this.button2.Text = "取消";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// YmlNodeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(589, 273);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btn_cancel);
this.Controls.Add(this.btn_sure);
this.Controls.Add(this.label4);
this.Controls.Add(this.common);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.value);
this.Controls.Add(this.name);
this.Controls.Add(this.label1);
this.Controls.Add(this.parent);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(589, 273);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(589, 273);
this.Name = "YmlNodeForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "新增/修改节点";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.YmlNodeForm_Load);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form1.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.tb_acc = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tb_pwd = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.tb_shell = new System.Windows.Forms.TextBox();
this.run = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.tb_host = new System.Windows.Forms.TextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.rtb_log = new System.Windows.Forms.RichTextBox();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// tb_acc
//
this.tb_acc.Location = new System.Drawing.Point(258, 15);
this.tb_acc.Name = "tb_acc";
this.tb_acc.Size = new System.Drawing.Size(107, 21);
this.tb_acc.TabIndex = 0;
this.tb_acc.Text = "gxb";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(211, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 1;
this.label1.Text = "用户名";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(384, 21);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 12);
this.label2.TabIndex = 3;
this.label2.Text = "密码";
//
// tb_pwd
//
this.tb_pwd.Location = new System.Drawing.Point(421, 17);
this.tb_pwd.Name = "tb_pwd";
this.tb_pwd.Size = new System.Drawing.Size(158, 21);
this.tb_pwd.TabIndex = 2;
this.tb_pwd.Text = "Echinac2p.com12#$";
//
// button1
//
this.button1.Location = new System.Drawing.Point(601, 16);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 4;
this.button1.Text = "登录";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// tb_shell
//
this.tb_shell.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tb_shell.Location = new System.Drawing.Point(12, 48);
this.tb_shell.Name = "tb_shell";
this.tb_shell.Size = new System.Drawing.Size(817, 21);
this.tb_shell.TabIndex = 6;
this.tb_shell.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tb_shell_KeyUp);
//
// run
//
this.run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.run.Location = new System.Drawing.Point(835, 47);
this.run.Name = "run";
this.run.Size = new System.Drawing.Size(44, 23);
this.run.TabIndex = 7;
this.run.Text = "run";
this.run.UseVisualStyleBackColor = true;
this.run.Click += new System.EventHandler(this.run_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(20, 17);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(29, 12);
this.label3.TabIndex = 9;
this.label3.Text = "主机";
//
// tb_host
//
this.tb_host.Location = new System.Drawing.Point(61, 13);
this.tb_host.Name = "tb_host";
this.tb_host.Size = new System.Drawing.Size(130, 21);
this.tb_host.TabIndex = 8;
this.tb_host.Text = "192.168.20.106";
//
// panel1
//
this.panel1.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.panel1.Controls.Add(this.rtb_log);
this.panel1.Location = new System.Drawing.Point(12, 75);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(867, 483);
this.panel1.TabIndex = 10;
//
// rtb_log
//
this.rtb_log.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
this.rtb_log.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtb_log.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtb_log.Font = new System.Drawing.Font("Courier New", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rtb_log.ForeColor = System.Drawing.Color.CadetBlue;
this.rtb_log.Location = new System.Drawing.Point(0, 0);
this.rtb_log.Name = "rtb_log";
this.rtb_log.ReadOnly = true;
this.rtb_log.Size = new System.Drawing.Size(867, 483);
this.rtb_log.TabIndex = 0;
this.rtb_log.Text = "";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(891, 570);
this.Controls.Add(this.panel1);
this.Controls.Add(this.label3);
this.Controls.Add(this.tb_host);
this.Controls.Add(this.run);
this.Controls.Add(this.tb_shell);
this.Controls.Add(this.button1);
this.Controls.Add(this.label2);
this.Controls.Add(this.tb_pwd);
this.Controls.Add(this.label1);
this.Controls.Add(this.tb_acc);
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "简易Shell";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
this.Load += new System.EventHandler(this.Form1_Load);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form1.Designer.cs
License : MIT License
Project Creator : 2401dem
License : MIT License
Project Creator : 2401dem
private void InitializeComponent()
{
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.panel1 = new System.Windows.Forms.Panel();
this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.button4 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.trackBar1 = new System.Windows.Forms.TrackBar();
this.button2 = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.panel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox1.Location = new System.Drawing.Point(268, 1);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(1024, 576);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.Location = new System.Drawing.Point(274, 583);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(1006, 41);
this.progressBar1.Step = 1;
this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
this.progressBar1.TabIndex = 1;
//
// panel1
//
this.panel1.Controls.Add(this.numericUpDown1);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.checkBox1);
this.panel1.Controls.Add(this.button4);
this.panel1.Controls.Add(this.button3);
this.panel1.Controls.Add(this.trackBar1);
this.panel1.Controls.Add(this.button2);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.textBox2);
this.panel1.Controls.Add(this.button1);
this.panel1.Controls.Add(this.textBox1);
this.panel1.Controls.Add(this.label1);
this.panel1.Location = new System.Drawing.Point(0, 1);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(268, 624);
this.panel1.TabIndex = 2;
//
// numericUpDown1
//
this.numericUpDown1.DecimalPlaces = 2;
this.numericUpDown1.Increment = new decimal(new int[] {
1,
0,
0,
131072});
this.numericUpDown1.Location = new System.Drawing.Point(154, 363);
this.numericUpDown1.Maximum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown1.Name = "numericUpDown1";
this.numericUpDown1.Size = new System.Drawing.Size(92, 23);
this.numericUpDown1.TabIndex = 11;
this.numericUpDown1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.numericUpDown1.Value = new decimal(new int[] {
1,
0,
0,
65536});
this.numericUpDown1.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(20, 365);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(39, 17);
this.label3.TabIndex = 10;
this.label3.Text = "Blend";
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(23, 290);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(99, 21);
this.checkBox1.TabIndex = 9;
this.checkBox1.Text = "Folder Mode";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// button4
//
this.button4.Location = new System.Drawing.Point(23, 551);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(222, 50);
this.button4.TabIndex = 8;
this.button4.Text = "Open Output Folder";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// button3
//
this.button3.Location = new System.Drawing.Point(23, 461);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(222, 69);
this.button3.TabIndex = 7;
this.button3.Text = "Denoise Image";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// trackBar1
//
this.trackBar1.Location = new System.Drawing.Point(23, 396);
this.trackBar1.Maximum = 100;
this.trackBar1.Name = "trackBar1";
this.trackBar1.Size = new System.Drawing.Size(223, 45);
this.trackBar1.TabIndex = 6;
this.trackBar1.TickFrequency = 10;
this.trackBar1.Value = 10;
this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
//
// button2
//
this.button2.Location = new System.Drawing.Point(171, 231);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 25);
this.button2.TabIndex = 5;
this.button2.Text = "Open";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(19, 182);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(113, 17);
this.label2.TabIndex = 4;
this.label2.Text = "Output Image Path";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(22, 202);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(224, 23);
this.textBox2.TabIndex = 3;
//
// button1
//
this.button1.Location = new System.Drawing.Point(170, 102);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 25);
this.button1.TabIndex = 2;
this.button1.Text = "Open";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(22, 72);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(224, 23);
this.textBox1.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 52);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(102, 17);
this.label1.TabIndex = 0;
this.label1.Text = "Input Image Path";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1292, 631);
this.Controls.Add(this.panel1);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.pictureBox1);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.Font = new System.Drawing.Font("Microsoft YaHei UI Light", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "DenoiserGUI";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Shown += new System.EventHandler(this.Form1_Shown);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : TomcatMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.TimedTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConditionTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_visit_url = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.l_name = new System.Windows.Forms.TextBox();
this.l_tomcat_path = new System.Windows.Forms.TextBox();
this.l_xml_path = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_msg = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.tb_port = new System.Windows.Forms.TextBox();
this.label_status = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu2
//
this.contextMenu2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.TimedTaskToolStripMenuItem,
this.ConditionTaskToolStripMenuItem});
this.contextMenu2.Name = "contextMenuStrip1";
this.contextMenu2.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// TimedTaskToolStripMenuItem
//
this.TimedTaskToolStripMenuItem.Name = "TimedTaskToolStripMenuItem";
this.TimedTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.TimedTaskToolStripMenuItem.Text = "定时任务";
this.TimedTaskToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTaskToolStripMenuItem_Click);
//
// ConditionTaskToolStripMenuItem
//
this.ConditionTaskToolStripMenuItem.Name = "ConditionTaskToolStripMenuItem";
this.ConditionTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.ConditionTaskToolStripMenuItem.Text = "条件任务";
this.ConditionTaskToolStripMenuItem.Click += new System.EventHandler(this.ConditionTaskToolStripMenuItem_Click_1);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(358, 95);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(29, 12);
this.linkLabel2.TabIndex = 24;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "编辑";
this.skinToolTip1.SetToolTip(this.linkLabel2, "编辑服务器上的server.xml文件");
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(357, 129);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 23;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// projects
//
this.projects.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.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader4});
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.Location = new System.Drawing.Point(395, 13);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(414, 186);
this.projects.TabIndex = 11;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
this.projects.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.projects_MouseDoubleClick);
//
// columnHeader2
//
this.columnHeader2.Text = "项目访问地址";
this.columnHeader2.Width = 220;
//
// columnHeader4
//
this.columnHeader4.Text = "磁盘路径";
this.columnHeader4.Width = 300;
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 111);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 158);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(403, 27);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(60, 28);
this.button1.TabIndex = 21;
this.button1.Text = "修改";
this.skinToolTip1.SetToolTip(this.button1, "修改端口号");
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(176, 27);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(60, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启Tomcat,会先停止Tomcat然后再启动Tomcat");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(19, 27);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(60, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动Tomcat,如果Tomcat未停止或导致因重复启动而失败");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(99, 27);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止Tomcat");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 30);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// groupBox1
//
this.groupBox1.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.groupBox1.Controls.Add(this.linkLabel2);
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_visit_url);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.l_name);
this.groupBox1.Controls.Add(this.l_tomcat_path);
this.groupBox1.Controls.Add(this.l_xml_path);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 207);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_visit_url
//
this.l_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_visit_url.Location = new System.Drawing.Point(90, 129);
this.l_visit_url.Name = "l_visit_url";
this.l_visit_url.Size = new System.Drawing.Size(261, 14);
this.l_visit_url.TabIndex = 22;
//
// label9
//
this.label9.Location = new System.Drawing.Point(11, 129);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(80, 12);
this.label9.TabIndex = 21;
this.label9.Text = "Home Url:";
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// l_name
//
this.l_name.BackColor = System.Drawing.SystemColors.Control;
this.l_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_name.Location = new System.Drawing.Point(90, 27);
this.l_name.Name = "l_name";
this.l_name.ReadOnly = true;
this.l_name.Size = new System.Drawing.Size(287, 14);
this.l_name.TabIndex = 19;
//
// l_tomcat_path
//
this.l_tomcat_path.BackColor = System.Drawing.SystemColors.Control;
this.l_tomcat_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_tomcat_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_tomcat_path.Location = new System.Drawing.Point(90, 61);
this.l_tomcat_path.Name = "l_tomcat_path";
this.l_tomcat_path.ReadOnly = true;
this.l_tomcat_path.Size = new System.Drawing.Size(287, 14);
this.l_tomcat_path.TabIndex = 18;
//
// l_xml_path
//
this.l_xml_path.BackColor = System.Drawing.SystemColors.Control;
this.l_xml_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_xml_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_xml_path.Location = new System.Drawing.Point(90, 94);
this.l_xml_path.Name = "l_xml_path";
this.l_xml_path.ReadOnly = true;
this.l_xml_path.Size = new System.Drawing.Size(261, 14);
this.l_xml_path.TabIndex = 17;
//
// label6
//
this.label6.Location = new System.Drawing.Point(11, 27);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(80, 12);
this.label6.TabIndex = 10;
this.label6.Text = "Tomcat名称:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(11, 93);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 12);
this.label5.TabIndex = 9;
this.label5.Text = "server.xml:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(11, 60);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 12);
this.label2.TabIndex = 0;
this.label2.Text = "Tomcat路径:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 219);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 289);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 12F);
this.label3.ForeColor = System.Drawing.Color.Silver;
this.label3.Location = new System.Drawing.Point(4, 262);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(67, 21);
this.label3.TabIndex = 14;
this.label3.Text = "Tomcat";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.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.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 94);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 188);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(69, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 12;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 161);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 20);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 136);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 126);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.label_msg);
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.label1);
this.groupBox3.Controls.Add(this.tb_port);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 12);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_msg
//
this.label_msg.AutoSize = true;
this.label_msg.ForeColor = System.Drawing.Color.Teal;
this.label_msg.Location = new System.Drawing.Point(480, 38);
this.label_msg.Name = "label_msg";
this.label_msg.Size = new System.Drawing.Size(0, 12);
this.label_msg.TabIndex = 22;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(282, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 20;
this.label1.Text = "端口号:";
//
// tb_port
//
this.tb_port.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tb_port.Location = new System.Drawing.Point(339, 34);
this.tb_port.Name = "tb_port";
this.tb_port.ReadOnly = true;
this.tb_port.Size = new System.Drawing.Size(55, 14);
this.tb_port.TabIndex = 8;
this.tb_port.Text = "8080";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 88);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// TomcatMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.groupBox2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "TomcatMonitorForm";
this.Text = "TomcatMonitorForm";
this.Load += new System.EventHandler(this.TomcatMonitorForm_Load);
this.contextMenu2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : SftpLinuxForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.text_adress = new System.Windows.Forms.ToolStripTextBox();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.treeView1 = new System.Windows.Forms.TreeView();
this.listView2 = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.viewTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.largeIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.smallIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.listTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.detailTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.transferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LargeImages = new System.Windows.Forms.ImageList(this.components);
this.SmallImages = new System.Windows.Forms.ImageList(this.components);
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
this.largeIconTool = new System.Windows.Forms.ToolStripMenuItem();
this.smallIconTool = new System.Windows.Forms.ToolStripMenuItem();
this.listTool = new System.Windows.Forms.ToolStripMenuItem();
this.detailTool = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.text_adress,
this.toolStripButton2,
this.toolStripButton3,
this.toolStripSplitButton1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(622, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// text_adress
//
this.text_adress.Name = "text_adress";
this.text_adress.Size = new System.Drawing.Size(400, 25);
this.text_adress.KeyUp += new System.Windows.Forms.KeyEventHandler(this.text_adress_KeyUp);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 25);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
this.splitContainer1.Panel1MinSize = 0;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.listView2);
this.splitContainer1.Size = new System.Drawing.Size(622, 511);
this.splitContainer1.SplitterDistance = 25;
this.splitContainer1.TabIndex = 1;
this.splitContainer1.Resize += new System.EventHandler(this.splitContainer1_Resize);
//
// treeView1
//
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Location = new System.Drawing.Point(0, 0);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(25, 511);
this.treeView1.TabIndex = 0;
//
// listView2
//
this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5,
this.columnHeader6});
this.listView2.ContextMenuStrip = this.contextMenuStrip1;
this.listView2.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView2.LargeImageList = this.LargeImages;
this.listView2.Location = new System.Drawing.Point(0, 0);
this.listView2.Name = "listView2";
this.listView2.Size = new System.Drawing.Size(593, 511);
this.listView2.SmallImageList = this.SmallImages;
this.listView2.TabIndex = 0;
this.listView2.UseCompatibleStateImageBehavior = false;
this.listView2.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView2_MouseDoubleClick);
this.listView2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView2_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 200;
//
// columnHeader2
//
this.columnHeader2.Text = "Size";
//
// columnHeader3
//
this.columnHeader3.Text = "Type";
//
// columnHeader4
//
this.columnHeader4.Text = "Modified";
this.columnHeader4.Width = 150;
//
// columnHeader5
//
this.columnHeader5.Text = "Attributes";
//
// columnHeader6
//
this.columnHeader6.Text = "Owner";
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.viewTool2,
this.refreshToolStripMenuItem,
this.transferToolStripMenuItem,
this.openToolStripMenuItem,
this.editToolStripMenuItem,
this.toolStripSeparator1,
this.copyToolStripMenuItem,
this.pasteToolStripMenuItem,
this.toolStripSeparator2,
this.newFolderToolStripMenuItem,
this.renameToolStripMenuItem,
this.deleteToolStripMenuItem,
this.toolStripSeparator3,
this.propertiesToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 264);
//
// viewTool2
//
this.viewTool2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.largeIconTool2,
this.smallIconTool2,
this.listTool2,
this.detailTool2});
this.viewTool2.Name = "viewTool2";
this.viewTool2.Size = new System.Drawing.Size(143, 22);
this.viewTool2.Text = "View";
//
// largeIconTool2
//
this.largeIconTool2.Name = "largeIconTool2";
this.largeIconTool2.Size = new System.Drawing.Size(138, 22);
this.largeIconTool2.Tag = "Large";
this.largeIconTool2.Text = "Large Icon";
this.largeIconTool2.Click += new System.EventHandler(this.ChangeView);
//
// smallIconTool2
//
this.smallIconTool2.Name = "smallIconTool2";
this.smallIconTool2.Size = new System.Drawing.Size(138, 22);
this.smallIconTool2.Tag = "Small";
this.smallIconTool2.Text = "Small Icon";
this.smallIconTool2.Click += new System.EventHandler(this.ChangeView);
//
// listTool2
//
this.listTool2.Name = "listTool2";
this.listTool2.Size = new System.Drawing.Size(138, 22);
this.listTool2.Tag = "List";
this.listTool2.Text = "List";
this.listTool2.Click += new System.EventHandler(this.ChangeView);
//
// detailTool2
//
this.detailTool2.Checked = true;
this.detailTool2.CheckState = System.Windows.Forms.CheckState.Checked;
this.detailTool2.Name = "detailTool2";
this.detailTool2.Size = new System.Drawing.Size(138, 22);
this.detailTool2.Tag = "Detail";
this.detailTool2.Text = "Detail";
this.detailTool2.Click += new System.EventHandler(this.ChangeView);
//
// refreshToolStripMenuItem
//
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.refreshToolStripMenuItem.Text = "&Refresh";
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
//
// transferToolStripMenuItem
//
this.transferToolStripMenuItem.Name = "transferToolStripMenuItem";
this.transferToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.transferToolStripMenuItem.Text = "&Transfer";
this.transferToolStripMenuItem.Click += new System.EventHandler(this.transferToolStripMenuItem_Click);
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.openToolStripMenuItem.Text = "&Open";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.editToolStripMenuItem.Text = "&Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(140, 6);
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.copyToolStripMenuItem.Text = "&Copy";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
// pasteToolStripMenuItem
//
this.pasteToolStripMenuItem.Enabled = false;
this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
this.pasteToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.pasteToolStripMenuItem.Text = "&Paste";
this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(140, 6);
//
// newFolderToolStripMenuItem
//
this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.newFolderToolStripMenuItem.Text = "&New Folder";
this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
//
// renameToolStripMenuItem
//
this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
this.renameToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.renameToolStripMenuItem.Text = "&Rename";
this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.deleteToolStripMenuItem.Text = "&Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(140, 6);
//
// propertiesToolStripMenuItem
//
this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
this.propertiesToolStripMenuItem.Text = "&Properties";
this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
//
// LargeImages
//
this.LargeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.LargeImages.ImageSize = new System.Drawing.Size(64, 64);
this.LargeImages.TransparentColor = System.Drawing.Color.Transparent;
//
// SmallImages
//
this.SmallImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.SmallImages.ImageSize = new System.Drawing.Size(16, 16);
this.SmallImages.TransparentColor = System.Drawing.Color.Transparent;
//
// toolStripButton2
//
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton2.Image = global::AppMonitor.Properties.Resources.parent_24px;
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
this.toolStripButton2.Text = "toolStripButton2";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// toolStripButton3
//
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton3.Image = global::AppMonitor.Properties.Resources.refresh_24px;
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton3.Name = "toolStripButton3";
this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
this.toolStripButton3.Text = "toolStripButton3";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// toolStripSplitButton1
//
this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.largeIconTool,
this.smallIconTool,
this.listTool,
this.detailTool});
this.toolStripSplitButton1.Image = global::AppMonitor.Properties.Resources.view_16px;
this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripSplitButton1.Name = "toolStripSplitButton1";
this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
this.toolStripSplitButton1.Text = "toolStripSplitButton1";
this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
//
// largeIconTool
//
this.largeIconTool.Name = "largeIconTool";
this.largeIconTool.Size = new System.Drawing.Size(138, 22);
this.largeIconTool.Tag = "Large";
this.largeIconTool.Text = "Large Icon";
this.largeIconTool.Click += new System.EventHandler(this.ChangeView);
//
// smallIconTool
//
this.smallIconTool.Name = "smallIconTool";
this.smallIconTool.Size = new System.Drawing.Size(138, 22);
this.smallIconTool.Tag = "Small";
this.smallIconTool.Text = "Small Icon";
this.smallIconTool.Click += new System.EventHandler(this.ChangeView);
//
// listTool
//
this.listTool.Name = "listTool";
this.listTool.Size = new System.Drawing.Size(138, 22);
this.listTool.Tag = "List";
this.listTool.Text = "List";
this.listTool.Click += new System.EventHandler(this.ChangeView);
//
// detailTool
//
this.detailTool.Checked = true;
this.detailTool.CheckState = System.Windows.Forms.CheckState.Checked;
this.detailTool.Name = "detailTool";
this.detailTool.Size = new System.Drawing.Size(138, 22);
this.detailTool.Tag = "Detail";
this.detailTool.Text = "Detail";
this.detailTool.Click += new System.EventHandler(this.ChangeView);
//
// SftpLinuxForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(622, 536);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.toolStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "SftpLinuxForm";
this.ShowInTaskbar = false;
this.Text = "SftpLinuxForm";
this.Load += new System.EventHandler(this.sftpLinuxForm_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : sftpWinForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.text_adress = new System.Windows.Forms.ToolStripTextBox();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.treeView1 = new System.Windows.Forms.TreeView();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.largeIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.smallIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.listTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.detailTool2 = new System.Windows.Forms.ToolStripMenuItem();
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.transferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LargeImages = new System.Windows.Forms.ImageList(this.components);
this.SmallImages = new System.Windows.Forms.ImageList(this.components);
this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
this.detailTool = new System.Windows.Forms.ToolStripMenuItem();
this.listTool = new System.Windows.Forms.ToolStripMenuItem();
this.largeIconTool = new System.Windows.Forms.ToolStripMenuItem();
this.smallIconTool = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.text_adress,
this.toolStripButton2,
this.toolStripButton3,
this.toolStripSplitButton1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(622, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// text_adress
//
this.text_adress.Name = "text_adress";
this.text_adress.Size = new System.Drawing.Size(400, 25);
this.text_adress.KeyUp += new System.Windows.Forms.KeyEventHandler(this.text_adress_KeyUp);
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 25);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.treeView1);
this.splitContainer1.Panel1MinSize = 0;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.listView1);
this.splitContainer1.Panel2.Resize += new System.EventHandler(this.splitContainer1_Panel2_Resize);
this.splitContainer1.Size = new System.Drawing.Size(622, 511);
this.splitContainer1.SplitterDistance = 25;
this.splitContainer1.TabIndex = 1;
//
// treeView1
//
this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.treeView1.Location = new System.Drawing.Point(0, 0);
this.treeView1.Name = "treeView1";
this.treeView1.Size = new System.Drawing.Size(25, 511);
this.treeView1.TabIndex = 0;
//
// listView1
//
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4});
this.listView1.ContextMenuStrip = this.contextMenuStrip1;
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.LargeImageList = this.LargeImages;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(593, 511);
this.listView1.SmallImageList = this.SmallImages;
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseDoubleClick);
this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 200;
//
// columnHeader2
//
this.columnHeader2.Text = "Size";
//
// columnHeader3
//
this.columnHeader3.Text = "Type";
//
// columnHeader4
//
this.columnHeader4.Text = "Modified";
this.columnHeader4.Width = 150;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.viewToolStripMenuItem,
this.refreshToolStripMenuItem,
this.transferToolStripMenuItem,
this.openToolStripMenuItem,
this.toolStripSeparator1,
this.copyToolStripMenuItem,
this.pasteToolStripMenuItem,
this.toolStripSeparator2,
this.newFolderToolStripMenuItem,
this.renameToolStripMenuItem,
this.deleteToolStripMenuItem,
this.toolStripSeparator3,
this.propertiesToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(144, 242);
//
// viewToolStripMenuItem
//
this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.largeIconTool2,
this.smallIconTool2,
this.listTool2,
this.detailTool2});
this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
this.viewToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.viewToolStripMenuItem.Text = "View";
//
// largeIconTool2
//
this.largeIconTool2.Name = "largeIconTool2";
this.largeIconTool2.Size = new System.Drawing.Size(152, 22);
this.largeIconTool2.Tag = "Large";
this.largeIconTool2.Text = "Large Icon";
this.largeIconTool2.Click += new System.EventHandler(this.ChangeView);
//
// smallIconTool2
//
this.smallIconTool2.Name = "smallIconTool2";
this.smallIconTool2.Size = new System.Drawing.Size(152, 22);
this.smallIconTool2.Tag = "Small";
this.smallIconTool2.Text = "Small Icon";
this.smallIconTool2.Click += new System.EventHandler(this.ChangeView);
//
// listTool2
//
this.listTool2.Name = "listTool2";
this.listTool2.Size = new System.Drawing.Size(152, 22);
this.listTool2.Tag = "List";
this.listTool2.Text = "List";
this.listTool2.Click += new System.EventHandler(this.ChangeView);
//
// detailTool2
//
this.detailTool2.Checked = true;
this.detailTool2.CheckState = System.Windows.Forms.CheckState.Checked;
this.detailTool2.Name = "detailTool2";
this.detailTool2.Size = new System.Drawing.Size(152, 22);
this.detailTool2.Tag = "Detail";
this.detailTool2.Text = "Detail";
this.detailTool2.Click += new System.EventHandler(this.ChangeView);
//
// refreshToolStripMenuItem
//
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.refreshToolStripMenuItem.Text = "&Refresh";
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
//
// transferToolStripMenuItem
//
this.transferToolStripMenuItem.Name = "transferToolStripMenuItem";
this.transferToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.transferToolStripMenuItem.Text = "&Transfer";
this.transferToolStripMenuItem.Click += new System.EventHandler(this.transferToolStripMenuItem_Click);
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.openToolStripMenuItem.Text = "&Open";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.copyToolStripMenuItem.Text = "&Copy";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
// pasteToolStripMenuItem
//
this.pasteToolStripMenuItem.Enabled = false;
this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
this.pasteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.pasteToolStripMenuItem.Text = "&Paste";
this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
//
// renameToolStripMenuItem
//
this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
this.renameToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.renameToolStripMenuItem.Text = "&Rename";
this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
//
// newFolderToolStripMenuItem
//
this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.newFolderToolStripMenuItem.Text = "&New Folder";
this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.deleteToolStripMenuItem.Text = "&Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
//
// propertiesToolStripMenuItem
//
this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.propertiesToolStripMenuItem.Text = "&Properties";
this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
//
// LargeImages
//
this.LargeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.LargeImages.ImageSize = new System.Drawing.Size(64, 64);
this.LargeImages.TransparentColor = System.Drawing.Color.Transparent;
//
// SmallImages
//
this.SmallImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
this.SmallImages.ImageSize = new System.Drawing.Size(16, 16);
this.SmallImages.TransparentColor = System.Drawing.Color.Transparent;
//
// toolStripButton2
//
this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton2.Image = global::AppMonitor.Properties.Resources.parent_24px;
this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton2.Name = "toolStripButton2";
this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
this.toolStripButton2.Text = "toolStripButton2";
this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
//
// toolStripButton3
//
this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButton3.Image = global::AppMonitor.Properties.Resources.refresh_24px;
this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton3.Name = "toolStripButton3";
this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
this.toolStripButton3.Text = "toolStripButton3";
this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
//
// toolStripSplitButton1
//
this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.largeIconTool,
this.smallIconTool,
this.listTool,
this.detailTool});
this.toolStripSplitButton1.Image = global::AppMonitor.Properties.Resources.view_16px;
this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripSplitButton1.Name = "toolStripSplitButton1";
this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
this.toolStripSplitButton1.Text = "toolStripSplitButton1";
this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
//
// detailTool
//
this.detailTool.Checked = true;
this.detailTool.CheckState = System.Windows.Forms.CheckState.Checked;
this.detailTool.Name = "detailTool";
this.detailTool.Size = new System.Drawing.Size(152, 22);
this.detailTool.Tag = "Detail";
this.detailTool.Text = "Detail";
this.detailTool.Click += new System.EventHandler(this.ChangeView);
//
// listTool
//
this.listTool.Name = "listTool";
this.listTool.Size = new System.Drawing.Size(152, 22);
this.listTool.Tag = "List";
this.listTool.Text = "List";
this.listTool.Click += new System.EventHandler(this.ChangeView);
//
// largeIconTool
//
this.largeIconTool.Name = "largeIconTool";
this.largeIconTool.Size = new System.Drawing.Size(152, 22);
this.largeIconTool.Tag = "Large";
this.largeIconTool.Text = "Large Icon";
this.largeIconTool.Click += new System.EventHandler(this.ChangeView);
//
// smallIconTool
//
this.smallIconTool.Name = "smallIconTool";
this.smallIconTool.Size = new System.Drawing.Size(152, 22);
this.smallIconTool.Tag = "Small";
this.smallIconTool.Text = "Small Icon";
this.smallIconTool.Click += new System.EventHandler(this.ChangeView);
//
// SftpWinForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(622, 536);
this.Controls.Add(this.splitContainer1);
this.Controls.Add(this.toolStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "SftpWinForm";
this.ShowInTaskbar = false;
this.Text = "sftpWinForm";
this.Load += new System.EventHandler(this.sftpWinForm_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : CentralServerConfigForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CentralServerConfigForm));
System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer treeListViewItemCollectionComparer1 = new System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer();
this.listView1 = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.skinPanel2 = new CCWin.SkinControl.SkinPanel();
this._treeView = new System.Windows.Forms.TreeListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.编辑节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加子节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加同级节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.添加顶级节点ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.升级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.降级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.imageList2 = new System.Windows.Forms.ImageList(this.components);
this.tabPage2 = new System.Windows.Forms.TabPage();
this.skinPanel1 = new CCWin.SkinControl.SkinPanel();
this.ymlEditor = new System.Windows.Forms.RichTextBox();
this.contextMenuStrip3 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.粘贴ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.剪切ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.行注释ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btn_reload = new System.Windows.Forms.Button();
this.btn_new = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.校验ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.下载到本地ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.上传到服务器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.更改文件名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.删除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.pictureBox2 = new System.Windows.Forms.PictureBox();
this.label4 = new System.Windows.Forms.Label();
this.pictureBox3 = new System.Windows.Forms.PictureBox();
this.label5 = new System.Windows.Forms.Label();
this.pictureBox4 = new System.Windows.Forms.PictureBox();
this.btn_save = new System.Windows.Forms.Button();
this.btn_meihua = new System.Windows.Forms.Button();
this.btn_tree = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.file_label = new System.Windows.Forms.ToolStripStatusLabel();
this.pos_label = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.btn_show = new System.Windows.Forms.Button();
this.stb_remote_dir = new CCWin.SkinControl.SkinTextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btn_ok = new System.Windows.Forms.Button();
this.打开本地临时目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.skinPanel2.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.skinPanel1.SuspendLayout();
this.contextMenuStrip3.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
this.panel1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panel2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// listView1
//
this.listView1.AllowDrop = true;
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1});
this.listView1.Font = new System.Drawing.Font("宋体", 10F);
this.listView1.FullRowSelect = true;
this.listView1.GridLines = true;
this.listView1.Location = new System.Drawing.Point(15, 66);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.OwnerDraw = true;
this.listView1.RowBackColor2 = System.Drawing.Color.WhiteSmoke;
this.listView1.SelectedColor = System.Drawing.Color.DarkOrange;
this.listView1.Size = new System.Drawing.Size(230, 588);
this.listView1.SmallImageList = this.imageList1;
this.listView1.StateImageList = this.imageList1;
this.listView1.TabIndex = 2;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "YML 文件";
this.columnHeader1.Width = 220;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "MB_light_16px.png");
this.imageList1.Images.SetKeyName(3, "yellow_light_16px.png");
//
// tabControl1
//
this.tabControl1.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.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Location = new System.Drawing.Point(247, 39);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(914, 720);
this.tabControl1.TabIndex = 3;
this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
//
// tabPage1
//
this.tabPage1.Controls.Add(this.skinPanel2);
this.tabPage1.Location = new System.Drawing.Point(4, 25);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(906, 691);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "YML 树形视图";
this.tabPage1.UseVisualStyleBackColor = true;
//
// skinPanel2
//
this.skinPanel2.BackColor = System.Drawing.Color.Transparent;
this.skinPanel2.BorderColor = System.Drawing.SystemColors.ActiveCaption;
this.skinPanel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.skinPanel2.Controls.Add(this._treeView);
this.skinPanel2.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
this.skinPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.skinPanel2.DownBack = null;
this.skinPanel2.Location = new System.Drawing.Point(3, 3);
this.skinPanel2.MouseBack = null;
this.skinPanel2.Name = "skinPanel2";
this.skinPanel2.NormlBack = null;
this.skinPanel2.Size = new System.Drawing.Size(900, 685);
this.skinPanel2.TabIndex = 0;
//
// _treeView
//
this._treeView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5});
treeListViewItemCollectionComparer1.Column = 0;
treeListViewItemCollectionComparer1.SortOrder = System.Windows.Forms.SortOrder.None;
this._treeView.Comparer = treeListViewItemCollectionComparer1;
this._treeView.ContextMenuStrip = this.contextMenuStrip2;
this._treeView.Dock = System.Windows.Forms.DockStyle.Fill;
this._treeView.GridLines = true;
this._treeView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this._treeView.LabelWrap = false;
this._treeView.Location = new System.Drawing.Point(0, 0);
this._treeView.MultiSelect = false;
this._treeView.Name = "_treeView";
this._treeView.PlusMinusLineColor = System.Drawing.Color.Teal;
this._treeView.Size = new System.Drawing.Size(898, 683);
this._treeView.SmallImageList = this.imageList2;
this._treeView.Sorting = System.Windows.Forms.SortOrder.None;
this._treeView.TabIndex = 0;
this._treeView.UseCompatibleStateImageBehavior = false;
this._treeView.AfterExpand += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterExpand);
this._treeView.AfterCollapse += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterCollapse);
this._treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this._treeView_MouseUp);
//
// columnHeader2
//
this.columnHeader2.Text = "属性";
this.columnHeader2.Width = 240;
//
// columnHeader3
//
this.columnHeader3.Text = "值";
this.columnHeader3.Width = 280;
//
// columnHeader4
//
this.columnHeader4.Text = "层级";
//
// columnHeader5
//
this.columnHeader5.Text = "描述";
this.columnHeader5.Width = 280;
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.编辑节点ToolStripMenuItem,
this.添加子节点ToolStripMenuItem,
this.添加同级节点ToolStripMenuItem,
this.添加顶级节点ToolStripMenuItem1,
this.升级ToolStripMenuItem,
this.降级ToolStripMenuItem,
this.删除节点ToolStripMenuItem});
this.contextMenuStrip2.Name = "contextMenuStrip2";
this.contextMenuStrip2.Size = new System.Drawing.Size(149, 158);
//
// 编辑节点ToolStripMenuItem
//
this.编辑节点ToolStripMenuItem.Name = "编辑节点ToolStripMenuItem";
this.编辑节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.编辑节点ToolStripMenuItem.Text = "编辑节点";
this.编辑节点ToolStripMenuItem.Click += new System.EventHandler(this.编辑节点ToolStripMenuItem_Click);
//
// 添加子节点ToolStripMenuItem
//
this.添加子节点ToolStripMenuItem.Name = "添加子节点ToolStripMenuItem";
this.添加子节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.添加子节点ToolStripMenuItem.Text = "添加子节点";
this.添加子节点ToolStripMenuItem.Click += new System.EventHandler(this.添加子节点ToolStripMenuItem_Click);
//
// 添加同级节点ToolStripMenuItem
//
this.添加同级节点ToolStripMenuItem.Name = "添加同级节点ToolStripMenuItem";
this.添加同级节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.添加同级节点ToolStripMenuItem.Text = "添加同级节点";
this.添加同级节点ToolStripMenuItem.Click += new System.EventHandler(this.添加同级节点ToolStripMenuItem_Click);
//
// 添加顶级节点ToolStripMenuItem1
//
this.添加顶级节点ToolStripMenuItem1.Name = "添加顶级节点ToolStripMenuItem1";
this.添加顶级节点ToolStripMenuItem1.Size = new System.Drawing.Size(148, 22);
this.添加顶级节点ToolStripMenuItem1.Text = "添加顶级节点";
this.添加顶级节点ToolStripMenuItem1.Click += new System.EventHandler(this.添加顶级节点ToolStripMenuItem1_Click);
//
// 升级ToolStripMenuItem
//
this.升级ToolStripMenuItem.Name = "升级ToolStripMenuItem";
this.升级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.升级ToolStripMenuItem.Text = "升级";
this.升级ToolStripMenuItem.Click += new System.EventHandler(this.升级ToolStripMenuItem_Click);
//
// 降级ToolStripMenuItem
//
this.降级ToolStripMenuItem.Name = "降级ToolStripMenuItem";
this.降级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.降级ToolStripMenuItem.Text = "降级";
this.降级ToolStripMenuItem.Click += new System.EventHandler(this.降级ToolStripMenuItem_Click);
//
// 删除节点ToolStripMenuItem
//
this.删除节点ToolStripMenuItem.Name = "删除节点ToolStripMenuItem";
this.删除节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
this.删除节点ToolStripMenuItem.Text = "删除节点";
this.删除节点ToolStripMenuItem.Click += new System.EventHandler(this.删除节点ToolStripMenuItem_Click);
//
// imageList2
//
this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
this.imageList2.Images.SetKeyName(0, "Folder_open_16px.png");
this.imageList2.Images.SetKeyName(1, "item_16px.png");
this.imageList2.Images.SetKeyName(2, "gray_light_16px.png");
this.imageList2.Images.SetKeyName(3, "openSession.png");
//
// tabPage2
//
this.tabPage2.Controls.Add(this.skinPanel1);
this.tabPage2.Location = new System.Drawing.Point(4, 25);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(906, 691);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "YML 编辑器";
this.tabPage2.UseVisualStyleBackColor = true;
//
// skinPanel1
//
this.skinPanel1.BackColor = System.Drawing.Color.Transparent;
this.skinPanel1.BorderColor = System.Drawing.Color.LightSteelBlue;
this.skinPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.skinPanel1.Controls.Add(this.ymlEditor);
this.skinPanel1.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
this.skinPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.skinPanel1.DownBack = null;
this.skinPanel1.Location = new System.Drawing.Point(3, 3);
this.skinPanel1.MouseBack = null;
this.skinPanel1.Name = "skinPanel1";
this.skinPanel1.NormlBack = null;
this.skinPanel1.Size = new System.Drawing.Size(900, 685);
this.skinPanel1.TabIndex = 0;
//
// ymlEditor
//
this.ymlEditor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
this.ymlEditor.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.ymlEditor.ContextMenuStrip = this.contextMenuStrip3;
this.ymlEditor.DetectUrls = false;
this.ymlEditor.Dock = System.Windows.Forms.DockStyle.Fill;
this.ymlEditor.Font = new System.Drawing.Font("新宋体", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ymlEditor.ForeColor = System.Drawing.Color.White;
this.ymlEditor.Location = new System.Drawing.Point(0, 0);
this.ymlEditor.Name = "ymlEditor";
this.ymlEditor.Size = new System.Drawing.Size(898, 683);
this.ymlEditor.TabIndex = 0;
this.ymlEditor.Text = "";
this.ymlEditor.WordWrap = false;
this.ymlEditor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ymlEditor_KeyUp);
this.ymlEditor.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ymlEditor_MouseDown);
//
// contextMenuStrip3
//
this.contextMenuStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.复制ToolStripMenuItem,
this.粘贴ToolStripMenuItem,
this.剪切ToolStripMenuItem,
this.删除行ToolStripMenuItem,
this.行注释ToolStripMenuItem});
this.contextMenuStrip3.Name = "contextMenuStrip3";
this.contextMenuStrip3.Size = new System.Drawing.Size(215, 114);
//
// 复制ToolStripMenuItem
//
this.复制ToolStripMenuItem.Name = "复制ToolStripMenuItem";
this.复制ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.复制ToolStripMenuItem.Text = "复制";
this.复制ToolStripMenuItem.Click += new System.EventHandler(this.复制ToolStripMenuItem_Click);
//
// 粘贴ToolStripMenuItem
//
this.粘贴ToolStripMenuItem.Name = "粘贴ToolStripMenuItem";
this.粘贴ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.粘贴ToolStripMenuItem.Text = "粘贴";
this.粘贴ToolStripMenuItem.Click += new System.EventHandler(this.粘贴ToolStripMenuItem_Click);
//
// 剪切ToolStripMenuItem
//
this.剪切ToolStripMenuItem.Name = "剪切ToolStripMenuItem";
this.剪切ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.剪切ToolStripMenuItem.Text = "剪切";
this.剪切ToolStripMenuItem.Click += new System.EventHandler(this.剪切ToolStripMenuItem_Click);
//
// 删除行ToolStripMenuItem
//
this.删除行ToolStripMenuItem.Name = "删除行ToolStripMenuItem";
this.删除行ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.删除行ToolStripMenuItem.ShowShortcutKeys = false;
this.删除行ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.删除行ToolStripMenuItem.Text = "删除行 Ctrl + D";
this.删除行ToolStripMenuItem.Click += new System.EventHandler(this.删除行ToolStripMenuItem_Click);
//
// 行注释ToolStripMenuItem
//
this.行注释ToolStripMenuItem.Name = "行注释ToolStripMenuItem";
this.行注释ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.OemQuestion)));
this.行注释ToolStripMenuItem.ShowShortcutKeys = false;
this.行注释ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
this.行注释ToolStripMenuItem.Text = "行注释/取消注释 Ctrl + /";
this.行注释ToolStripMenuItem.Click += new System.EventHandler(this.行注释ToolStripMenuItem_Click);
//
// btn_reload
//
this.btn_reload.Location = new System.Drawing.Point(15, 35);
this.btn_reload.Name = "btn_reload";
this.btn_reload.Size = new System.Drawing.Size(75, 27);
this.btn_reload.TabIndex = 3;
this.btn_reload.Text = "重新加载";
this.btn_reload.UseVisualStyleBackColor = true;
this.btn_reload.Click += new System.EventHandler(this.btn_reload_Click);
//
// btn_new
//
this.btn_new.Location = new System.Drawing.Point(156, 36);
this.btn_new.Name = "btn_new";
this.btn_new.Size = new System.Drawing.Size(90, 27);
this.btn_new.TabIndex = 4;
this.btn_new.Text = "新建YML文件";
this.btn_new.UseVisualStyleBackColor = true;
this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.Red;
this.label1.Font = new System.Drawing.Font("宋体", 11F);
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(30, 137);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(201, 52);
this.label1.TabIndex = 3;
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label1.Visible = false;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.校验ToolStripMenuItem,
this.下载到本地ToolStripMenuItem,
this.上传到服务器ToolStripMenuItem,
this.更改文件名ToolStripMenuItem,
this.删除文件ToolStripMenuItem,
this.打开本地临时目录ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(173, 158);
//
// 校验ToolStripMenuItem
//
this.校验ToolStripMenuItem.Name = "校验ToolStripMenuItem";
this.校验ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.校验ToolStripMenuItem.Text = "格式校验";
this.校验ToolStripMenuItem.Click += new System.EventHandler(this.校验ToolStripMenuItem_Click);
//
// 下载到本地ToolStripMenuItem
//
this.下载到本地ToolStripMenuItem.Name = "下载到本地ToolStripMenuItem";
this.下载到本地ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.下载到本地ToolStripMenuItem.Text = "重新获取文件";
this.下载到本地ToolStripMenuItem.Click += new System.EventHandler(this.下载到本地ToolStripMenuItem_Click);
//
// 上传到服务器ToolStripMenuItem
//
this.上传到服务器ToolStripMenuItem.Name = "上传到服务器ToolStripMenuItem";
this.上传到服务器ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.上传到服务器ToolStripMenuItem.Text = "上传到服务器";
this.上传到服务器ToolStripMenuItem.Click += new System.EventHandler(this.上传到服务器ToolStripMenuItem_Click);
//
// 更改文件名ToolStripMenuItem
//
this.更改文件名ToolStripMenuItem.Name = "更改文件名ToolStripMenuItem";
this.更改文件名ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.更改文件名ToolStripMenuItem.Text = "更改文件名";
this.更改文件名ToolStripMenuItem.Click += new System.EventHandler(this.更改文件名ToolStripMenuItem_Click);
//
// 删除文件ToolStripMenuItem
//
this.删除文件ToolStripMenuItem.Name = "删除文件ToolStripMenuItem";
this.删除文件ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.删除文件ToolStripMenuItem.Text = "删除文件";
this.删除文件ToolStripMenuItem.Click += new System.EventHandler(this.删除文件ToolStripMenuItem_Click);
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
this.pictureBox1.BackgroundImage = global::AppMonitor.Properties.Resources.green_light_16px;
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox1.Location = new System.Drawing.Point(9, 26);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(16, 16);
this.pictureBox1.TabIndex = 6;
this.pictureBox1.TabStop = false;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(31, 28);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(161, 12);
this.label2.TabIndex = 7;
this.label2.Text = "格式正确,与服务器保持同步";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Location = new System.Drawing.Point(31, 52);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(161, 12);
this.label3.TabIndex = 9;
this.label3.Text = "内容已修改,未与服务器同步";
//
// pictureBox2
//
this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
this.pictureBox2.BackgroundImage = global::AppMonitor.Properties.Resources.MB_light_16px;
this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox2.Location = new System.Drawing.Point(9, 50);
this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(16, 16);
this.pictureBox2.TabIndex = 8;
this.pictureBox2.TabStop = false;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(31, 76);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(65, 12);
this.label4.TabIndex = 11;
this.label4.Text = "格式有错误";
//
// pictureBox3
//
this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
this.pictureBox3.BackgroundImage = global::AppMonitor.Properties.Resources.yellow_light_16px;
this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox3.Location = new System.Drawing.Point(9, 74);
this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(16, 16);
this.pictureBox3.TabIndex = 10;
this.pictureBox3.TabStop = false;
//
// label5
//
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.Transparent;
this.label5.Location = new System.Drawing.Point(31, 5);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(161, 12);
this.label5.TabIndex = 13;
this.label5.Text = "只存在本地,未同步到服务器";
//
// pictureBox4
//
this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
this.pictureBox4.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_16px;
this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox4.Location = new System.Drawing.Point(9, 3);
this.pictureBox4.Name = "pictureBox4";
this.pictureBox4.Size = new System.Drawing.Size(16, 16);
this.pictureBox4.TabIndex = 12;
this.pictureBox4.TabStop = false;
//
// btn_save
//
this.btn_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_save.Enabled = false;
this.btn_save.Location = new System.Drawing.Point(1075, 33);
this.btn_save.Name = "btn_save";
this.btn_save.Size = new System.Drawing.Size(78, 27);
this.btn_save.TabIndex = 14;
this.btn_save.Text = "保存";
this.btn_save.UseVisualStyleBackColor = true;
this.btn_save.Click += new System.EventHandler(this.button1_Click);
//
// btn_meihua
//
this.btn_meihua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btn_meihua.Location = new System.Drawing.Point(949, 33);
this.btn_meihua.Name = "btn_meihua";
this.btn_meihua.Size = new System.Drawing.Size(78, 27);
this.btn_meihua.TabIndex = 15;
this.btn_meihua.Text = "美化";
this.btn_meihua.UseVisualStyleBackColor = true;
this.btn_meihua.Visible = false;
this.btn_meihua.Click += new System.EventHandler(this.btn_meihua_Click);
//
// btn_tree
//
this.btn_tree.Location = new System.Drawing.Point(474, 33);
this.btn_tree.Name = "btn_tree";
this.btn_tree.Size = new System.Drawing.Size(108, 27);
this.btn_tree.TabIndex = 16;
this.btn_tree.Text = "展开全部节点";
this.btn_tree.UseVisualStyleBackColor = true;
this.btn_tree.Click += new System.EventHandler(this.btn_tree_Click);
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Controls.Add(this.pictureBox4);
this.panel1.Controls.Add(this.pictureBox1);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.pictureBox2);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.pictureBox3);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.label5);
this.panel1.Location = new System.Drawing.Point(14, 660);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(230, 94);
this.panel1.TabIndex = 17;
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.file_label,
this.pos_label,
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(8, 759);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(1156, 22);
this.statusStrip1.TabIndex = 18;
this.statusStrip1.Text = "statusStrip1";
//
// file_label
//
this.file_label.AutoSize = false;
this.file_label.BackColor = System.Drawing.Color.Transparent;
this.file_label.Name = "file_label";
this.file_label.Size = new System.Drawing.Size(800, 17);
this.file_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// pos_label
//
this.pos_label.AutoSize = false;
this.pos_label.BackColor = System.Drawing.Color.Transparent;
this.pos_label.Name = "pos_label";
this.pos_label.Size = new System.Drawing.Size(150, 17);
this.pos_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.BackColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.Gray;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(116, 17);
this.toolStripStatusLabel1.Text = "支持文件拖拽到窗口";
//
// btn_show
//
this.btn_show.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.btn_show.Location = new System.Drawing.Point(89, 35);
this.btn_show.Name = "btn_show";
this.btn_show.Size = new System.Drawing.Size(22, 27);
this.btn_show.TabIndex = 19;
this.btn_show.Text = "↓";
this.btn_show.UseVisualStyleBackColor = true;
this.btn_show.Click += new System.EventHandler(this.btn_show_Click);
//
// stb_remote_dir
//
this.stb_remote_dir.BackColor = System.Drawing.Color.Transparent;
this.stb_remote_dir.DownBack = null;
this.stb_remote_dir.Icon = null;
this.stb_remote_dir.IconIsButton = false;
this.stb_remote_dir.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_dir.IsPreplacedwordChat = '\0';
this.stb_remote_dir.IsSystemPreplacedwordChar = false;
this.stb_remote_dir.Lines = new string[0];
this.stb_remote_dir.Location = new System.Drawing.Point(10, 24);
this.stb_remote_dir.Margin = new System.Windows.Forms.Padding(0);
this.stb_remote_dir.MaxLength = 32767;
this.stb_remote_dir.MinimumSize = new System.Drawing.Size(28, 28);
this.stb_remote_dir.MouseBack = null;
this.stb_remote_dir.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.stb_remote_dir.Multiline = false;
this.stb_remote_dir.Name = "stb_remote_dir";
this.stb_remote_dir.NormlBack = null;
this.stb_remote_dir.Padding = new System.Windows.Forms.Padding(5);
this.stb_remote_dir.ReadOnly = false;
this.stb_remote_dir.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.stb_remote_dir.Size = new System.Drawing.Size(425, 28);
//
//
//
this.stb_remote_dir.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.stb_remote_dir.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.stb_remote_dir.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.stb_remote_dir.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.stb_remote_dir.SkinTxt.Name = "BaseText";
this.stb_remote_dir.SkinTxt.Size = new System.Drawing.Size(415, 18);
this.stb_remote_dir.SkinTxt.TabIndex = 0;
this.stb_remote_dir.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_dir.SkinTxt.WaterText = "远程服务器YML配置文件所在目录";
this.stb_remote_dir.TabIndex = 20;
this.stb_remote_dir.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.stb_remote_dir.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.stb_remote_dir.WaterText = "远程服务器YML配置文件所在目录";
this.stb_remote_dir.WordWrap = true;
//
// panel2
//
this.panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel2.Controls.Add(this.groupBox1);
this.panel2.Location = new System.Drawing.Point(15, 62);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(456, 109);
this.panel2.TabIndex = 21;
this.panel2.Visible = false;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.stb_remote_dir);
this.groupBox1.Controls.Add(this.btn_ok);
this.groupBox1.Location = new System.Drawing.Point(8, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(442, 94);
this.groupBox1.TabIndex = 23;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "YML配置目录:";
//
// btn_ok
//
this.btn_ok.Location = new System.Drawing.Point(370, 60);
this.btn_ok.Name = "btn_ok";
this.btn_ok.Size = new System.Drawing.Size(65, 29);
this.btn_ok.TabIndex = 22;
this.btn_ok.Text = "确定";
this.btn_ok.UseVisualStyleBackColor = true;
this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
//
// 打开本地临时目录ToolStripMenuItem
//
this.打开本地临时目录ToolStripMenuItem.Name = "打开本地临时目录ToolStripMenuItem";
this.打开本地临时目录ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
this.打开本地临时目录ToolStripMenuItem.Text = "打开本地临时目录";
this.打开本地临时目录ToolStripMenuItem.Click += new System.EventHandler(this.打开本地临时目录ToolStripMenuItem_Click);
//
// CentralServerConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(1172, 789);
this.Controls.Add(this.panel2);
this.Controls.Add(this.btn_show);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btn_tree);
this.Controls.Add(this.btn_meihua);
this.Controls.Add(this.btn_save);
this.Controls.Add(this.label1);
this.Controls.Add(this.btn_new);
this.Controls.Add(this.btn_reload);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.listView1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "CentralServerConfigForm";
this.Text = "Docker公共配置";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.CentralServerConfigForm_Load);
this.DragDrop += new System.Windows.Forms.DragEventHandler(this.CentralServerConfigForm_DragDrop);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.skinPanel2.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.skinPanel1.ResumeLayout(false);
this.contextMenuStrip3.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.panel2.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : YmlNodeForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer treeListViewItemCollectionComparer2 = new System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(YmlNodeForm));
this.parent = new CCWin.SkinControl.SkinTextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.name = new CCWin.SkinControl.SkinTextBox();
this.label3 = new System.Windows.Forms.Label();
this.value = new CCWin.SkinControl.SkinTextBox();
this.label4 = new System.Windows.Forms.Label();
this.common = new CCWin.SkinControl.SkinTextBox();
this.btn_sure = new System.Windows.Forms.Button();
this.btn_cancel = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this._treeView = new System.Windows.Forms.TreeListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList2 = new System.Windows.Forms.ImageList(this.components);
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// parent
//
this.parent.BackColor = System.Drawing.Color.Transparent;
this.parent.DownBack = null;
this.parent.Icon = null;
this.parent.IconIsButton = false;
this.parent.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.parent.IsPreplacedwordChat = '\0';
this.parent.IsSystemPreplacedwordChar = false;
this.parent.Lines = new string[0];
this.parent.Location = new System.Drawing.Point(102, 43);
this.parent.Margin = new System.Windows.Forms.Padding(0);
this.parent.MaxLength = 32767;
this.parent.MinimumSize = new System.Drawing.Size(28, 28);
this.parent.MouseBack = null;
this.parent.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.parent.Multiline = false;
this.parent.Name = "parent";
this.parent.NormlBack = null;
this.parent.Padding = new System.Windows.Forms.Padding(5);
this.parent.ReadOnly = true;
this.parent.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.parent.Size = new System.Drawing.Size(464, 28);
//
//
//
this.parent.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.parent.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.parent.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.parent.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.parent.SkinTxt.Name = "BaseText";
this.parent.SkinTxt.ReadOnly = true;
this.parent.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.parent.SkinTxt.TabIndex = 0;
this.parent.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.parent.SkinTxt.WaterText = "父节点属性名称";
this.parent.TabIndex = 0;
this.parent.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.parent.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.parent.WaterText = "父节点属性名称";
this.parent.WordWrap = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Location = new System.Drawing.Point(17, 51);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 12);
this.label1.TabIndex = 1;
this.label1.Text = "父属性名称:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.Location = new System.Drawing.Point(29, 95);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 3;
this.label2.Text = "属性名称:";
//
// name
//
this.name.BackColor = System.Drawing.Color.Transparent;
this.name.DownBack = null;
this.name.Icon = null;
this.name.IconIsButton = false;
this.name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.name.IsPreplacedwordChat = '\0';
this.name.IsSystemPreplacedwordChar = false;
this.name.Lines = new string[0];
this.name.Location = new System.Drawing.Point(102, 87);
this.name.Margin = new System.Windows.Forms.Padding(0);
this.name.MaxLength = 32767;
this.name.MinimumSize = new System.Drawing.Size(28, 28);
this.name.MouseBack = null;
this.name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.name.Multiline = false;
this.name.Name = "name";
this.name.NormlBack = null;
this.name.Padding = new System.Windows.Forms.Padding(5);
this.name.ReadOnly = false;
this.name.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.name.Size = new System.Drawing.Size(464, 28);
//
//
//
this.name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.name.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.name.SkinTxt.Name = "BaseText";
this.name.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.name.SkinTxt.TabIndex = 0;
this.name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.name.SkinTxt.WaterText = "属性名称";
this.name.TabIndex = 2;
this.name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.name.WaterText = "属性名称";
this.name.WordWrap = true;
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Location = new System.Drawing.Point(41, 141);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 12);
this.label3.TabIndex = 3;
this.label3.Text = "属性值:";
//
// value
//
this.value.BackColor = System.Drawing.Color.Transparent;
this.value.DownBack = null;
this.value.Icon = null;
this.value.IconIsButton = false;
this.value.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.value.IsPreplacedwordChat = '\0';
this.value.IsSystemPreplacedwordChar = false;
this.value.Lines = new string[0];
this.value.Location = new System.Drawing.Point(102, 133);
this.value.Margin = new System.Windows.Forms.Padding(0);
this.value.MaxLength = 32767;
this.value.MinimumSize = new System.Drawing.Size(28, 28);
this.value.MouseBack = null;
this.value.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.value.Multiline = false;
this.value.Name = "value";
this.value.NormlBack = null;
this.value.Padding = new System.Windows.Forms.Padding(5);
this.value.ReadOnly = false;
this.value.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.value.Size = new System.Drawing.Size(464, 28);
//
//
//
this.value.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.value.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.value.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.value.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.value.SkinTxt.Name = "BaseText";
this.value.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.value.SkinTxt.TabIndex = 0;
this.value.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.value.SkinTxt.WaterText = "属性值";
this.value.TabIndex = 2;
this.value.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.value.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.value.WaterText = "属性值";
this.value.WordWrap = true;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(53, 186);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 5;
this.label4.Text = "备注:";
//
// common
//
this.common.BackColor = System.Drawing.Color.Transparent;
this.common.DownBack = null;
this.common.Icon = null;
this.common.IconIsButton = false;
this.common.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.common.IsPreplacedwordChat = '\0';
this.common.IsSystemPreplacedwordChar = false;
this.common.Lines = new string[0];
this.common.Location = new System.Drawing.Point(102, 178);
this.common.Margin = new System.Windows.Forms.Padding(0);
this.common.MaxLength = 32767;
this.common.MinimumSize = new System.Drawing.Size(28, 28);
this.common.MouseBack = null;
this.common.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.common.Multiline = false;
this.common.Name = "common";
this.common.NormlBack = null;
this.common.Padding = new System.Windows.Forms.Padding(5);
this.common.ReadOnly = false;
this.common.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.common.Size = new System.Drawing.Size(464, 28);
//
//
//
this.common.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.common.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.common.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.common.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.common.SkinTxt.Name = "BaseText";
this.common.SkinTxt.Size = new System.Drawing.Size(454, 18);
this.common.SkinTxt.TabIndex = 0;
this.common.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.common.SkinTxt.WaterText = "备注";
this.common.TabIndex = 4;
this.common.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.common.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.common.WaterText = "备注";
this.common.WordWrap = true;
//
// btn_sure
//
this.btn_sure.Location = new System.Drawing.Point(491, 228);
this.btn_sure.Name = "btn_sure";
this.btn_sure.Size = new System.Drawing.Size(75, 27);
this.btn_sure.TabIndex = 6;
this.btn_sure.Text = "确定";
this.btn_sure.UseVisualStyleBackColor = true;
this.btn_sure.Click += new System.EventHandler(this.btn_sure_Click);
//
// btn_cancel
//
this.btn_cancel.Location = new System.Drawing.Point(396, 228);
this.btn_cancel.Name = "btn_cancel";
this.btn_cancel.Size = new System.Drawing.Size(75, 27);
this.btn_cancel.TabIndex = 7;
this.btn_cancel.Text = "取消";
this.btn_cancel.UseVisualStyleBackColor = true;
this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.Transparent;
this.panel1.Controls.Add(this.button2);
this.panel1.Controls.Add(this.button1);
this.panel1.Controls.Add(this._treeView);
this.panel1.Location = new System.Drawing.Point(102, 71);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(464, 191);
this.panel1.TabIndex = 1;
this.panel1.Visible = false;
//
// _treeView
//
this._treeView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader3});
treeListViewItemCollectionComparer2.Column = 0;
treeListViewItemCollectionComparer2.SortOrder = System.Windows.Forms.SortOrder.None;
this._treeView.Comparer = treeListViewItemCollectionComparer2;
this._treeView.GridLines = true;
this._treeView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this._treeView.LabelWrap = false;
this._treeView.Location = new System.Drawing.Point(0, -1);
this._treeView.MultiSelect = false;
this._treeView.Name = "_treeView";
this._treeView.PlusMinusLineColor = System.Drawing.Color.Teal;
this._treeView.Size = new System.Drawing.Size(464, 152);
this._treeView.SmallImageList = this.imageList2;
this._treeView.Sorting = System.Windows.Forms.SortOrder.None;
this._treeView.TabIndex = 1;
this._treeView.UseCompatibleStateImageBehavior = false;
//
// columnHeader2
//
this.columnHeader2.Text = "属性";
this.columnHeader2.Width = 240;
//
// columnHeader3
//
this.columnHeader3.Text = "值";
this.columnHeader3.Width = 210;
//
// imageList2
//
this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
this.imageList2.Images.SetKeyName(0, "Folder_open_16px.png");
this.imageList2.Images.SetKeyName(1, "item_16px.png");
this.imageList2.Images.SetKeyName(2, "gray_light_16px.png");
this.imageList2.Images.SetKeyName(3, "openSession.png");
//
// button1
//
this.button1.Location = new System.Drawing.Point(381, 157);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 27);
this.button1.TabIndex = 2;
this.button1.Text = "选定";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(299, 157);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 27);
this.button2.TabIndex = 3;
this.button2.Text = "取消";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// YmlNodeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
this.ClientSize = new System.Drawing.Size(589, 273);
this.Controls.Add(this.panel1);
this.Controls.Add(this.btn_cancel);
this.Controls.Add(this.btn_sure);
this.Controls.Add(this.label4);
this.Controls.Add(this.common);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.value);
this.Controls.Add(this.name);
this.Controls.Add(this.label1);
this.Controls.Add(this.parent);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(589, 273);
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(589, 273);
this.Name = "YmlNodeForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "新增/修改节点";
this.replacedleCenter = false;
this.replacedleColor = System.Drawing.Color.White;
this.Load += new System.EventHandler(this.YmlNodeForm_Load);
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : AddServer4Form.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServer4Form));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtSecurity = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtSecurity);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.txtId);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.txtPort);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtSecurity
//
resources.ApplyResources(this.txtSecurity, "txtSecurity");
this.txtSecurity.Name = "txtSecurity";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// txtId
//
resources.ApplyResources(this.txtId, "txtId");
this.txtId.Name = "txtId";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// AddServer4Form
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MinimizeBox = true;
this.Name = "AddServer4Form";
this.Load += new System.EventHandler(this.AddServer4Form_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : AddServer5Form.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServer5Form));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cmbFlow = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.btnGUID = new System.Windows.Forms.Button();
this.label13 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label25 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.panTlsMore = new System.Windows.Forms.Panel();
this.txtSNI = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.cmbAllowInsecure = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.txtPath = new System.Windows.Forms.TextBox();
this.cmbNetwork = new System.Windows.Forms.ComboBox();
this.label7 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.cmbStreamSecurity = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.txtRequestHost = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.cmbHeaderType = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.cmbSecurity = new System.Windows.Forms.ComboBox();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panTlsMore.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.cmbFlow);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.btnGUID);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.groupBox2);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.cmbSecurity);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.txtId);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtPort);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// cmbFlow
//
this.cmbFlow.FormattingEnabled = true;
this.cmbFlow.Items.AddRange(new object[] {
resources.GetString("cmbFlow.Items"),
resources.GetString("cmbFlow.Items1"),
resources.GetString("cmbFlow.Items2"),
resources.GetString("cmbFlow.Items3"),
resources.GetString("cmbFlow.Items4")});
resources.ApplyResources(this.cmbFlow, "cmbFlow");
this.cmbFlow.Name = "cmbFlow";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// btnGUID
//
resources.ApplyResources(this.btnGUID, "btnGUID");
this.btnGUID.Name = "btnGUID";
this.btnGUID.UseVisualStyleBackColor = true;
this.btnGUID.Click += new System.EventHandler(this.btnGUID_Click);
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label25);
this.groupBox2.Controls.Add(this.label24);
this.groupBox2.Controls.Add(this.label23);
this.groupBox2.Controls.Add(this.panTlsMore);
this.groupBox2.Controls.Add(this.label9);
this.groupBox2.Controls.Add(this.label20);
this.groupBox2.Controls.Add(this.txtPath);
this.groupBox2.Controls.Add(this.cmbNetwork);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.label19);
this.groupBox2.Controls.Add(this.label18);
this.groupBox2.Controls.Add(this.label17);
this.groupBox2.Controls.Add(this.label16);
this.groupBox2.Controls.Add(this.label14);
this.groupBox2.Controls.Add(this.label15);
this.groupBox2.Controls.Add(this.cmbStreamSecurity);
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Controls.Add(this.txtRequestHost);
this.groupBox2.Controls.Add(this.label11);
this.groupBox2.Controls.Add(this.label10);
this.groupBox2.Controls.Add(this.cmbHeaderType);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// label25
//
resources.ApplyResources(this.label25, "label25");
this.label25.Name = "label25";
//
// label24
//
resources.ApplyResources(this.label24, "label24");
this.label24.Name = "label24";
//
// label23
//
resources.ApplyResources(this.label23, "label23");
this.label23.Name = "label23";
//
// panTlsMore
//
this.panTlsMore.Controls.Add(this.txtSNI);
this.panTlsMore.Controls.Add(this.label22);
this.panTlsMore.Controls.Add(this.label21);
this.panTlsMore.Controls.Add(this.cmbAllowInsecure);
resources.ApplyResources(this.panTlsMore, "panTlsMore");
this.panTlsMore.Name = "panTlsMore";
//
// txtSNI
//
resources.ApplyResources(this.txtSNI, "txtSNI");
this.txtSNI.Name = "txtSNI";
//
// label22
//
resources.ApplyResources(this.label22, "label22");
this.label22.Name = "label22";
//
// label21
//
resources.ApplyResources(this.label21, "label21");
this.label21.Name = "label21";
//
// cmbAllowInsecure
//
this.cmbAllowInsecure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAllowInsecure.FormattingEnabled = true;
this.cmbAllowInsecure.Items.AddRange(new object[] {
resources.GetString("cmbAllowInsecure.Items"),
resources.GetString("cmbAllowInsecure.Items1"),
resources.GetString("cmbAllowInsecure.Items2")});
resources.ApplyResources(this.cmbAllowInsecure, "cmbAllowInsecure");
this.cmbAllowInsecure.Name = "cmbAllowInsecure";
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
//
// label20
//
resources.ApplyResources(this.label20, "label20");
this.label20.Name = "label20";
//
// txtPath
//
resources.ApplyResources(this.txtPath, "txtPath");
this.txtPath.Name = "txtPath";
//
// cmbNetwork
//
this.cmbNetwork.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbNetwork.FormattingEnabled = true;
this.cmbNetwork.Items.AddRange(new object[] {
resources.GetString("cmbNetwork.Items"),
resources.GetString("cmbNetwork.Items1"),
resources.GetString("cmbNetwork.Items2"),
resources.GetString("cmbNetwork.Items3"),
resources.GetString("cmbNetwork.Items4"),
resources.GetString("cmbNetwork.Items5")});
resources.ApplyResources(this.cmbNetwork, "cmbNetwork");
this.cmbNetwork.Name = "cmbNetwork";
this.cmbNetwork.SelectedIndexChanged += new System.EventHandler(this.cmbNetwork_SelectedIndexChanged);
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
//
// label19
//
resources.ApplyResources(this.label19, "label19");
this.label19.Name = "label19";
//
// label18
//
resources.ApplyResources(this.label18, "label18");
this.label18.Name = "label18";
//
// label17
//
resources.ApplyResources(this.label17, "label17");
this.label17.Name = "label17";
//
// label16
//
resources.ApplyResources(this.label16, "label16");
this.label16.Name = "label16";
//
// label14
//
resources.ApplyResources(this.label14, "label14");
this.label14.Name = "label14";
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
//
// cmbStreamSecurity
//
this.cmbStreamSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbStreamSecurity.FormattingEnabled = true;
this.cmbStreamSecurity.Items.AddRange(new object[] {
resources.GetString("cmbStreamSecurity.Items"),
resources.GetString("cmbStreamSecurity.Items1"),
resources.GetString("cmbStreamSecurity.Items2")});
resources.ApplyResources(this.cmbStreamSecurity, "cmbStreamSecurity");
this.cmbStreamSecurity.Name = "cmbStreamSecurity";
this.cmbStreamSecurity.SelectedIndexChanged += new System.EventHandler(this.cmbStreamSecurity_SelectedIndexChanged);
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
//
// txtRequestHost
//
resources.ApplyResources(this.txtRequestHost, "txtRequestHost");
this.txtRequestHost.Name = "txtRequestHost";
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
//
// cmbHeaderType
//
this.cmbHeaderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbHeaderType.FormattingEnabled = true;
this.cmbHeaderType.Items.AddRange(new object[] {
resources.GetString("cmbHeaderType.Items"),
resources.GetString("cmbHeaderType.Items1"),
resources.GetString("cmbHeaderType.Items2"),
resources.GetString("cmbHeaderType.Items3"),
resources.GetString("cmbHeaderType.Items4"),
resources.GetString("cmbHeaderType.Items5"),
resources.GetString("cmbHeaderType.Items6")});
resources.ApplyResources(this.cmbHeaderType, "cmbHeaderType");
this.cmbHeaderType.Name = "cmbHeaderType";
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
//
// cmbSecurity
//
this.cmbSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple;
this.cmbSecurity.FormattingEnabled = true;
this.cmbSecurity.Items.AddRange(new object[] {
resources.GetString("cmbSecurity.Items")});
resources.ApplyResources(this.cmbSecurity, "cmbSecurity");
this.cmbSecurity.Name = "cmbSecurity";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// txtId
//
resources.ApplyResources(this.txtId, "txtId");
this.txtId.Name = "txtId";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// AddServer5Form
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "AddServer5Form";
this.Load += new System.EventHandler(this.AddServer5Form_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panTlsMore.ResumeLayout(false);
this.panTlsMore.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : AddServer6Form.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServer6Form));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label21 = new System.Windows.Forms.Label();
this.cmbAllowInsecure = new System.Windows.Forms.ComboBox();
this.label15 = new System.Windows.Forms.Label();
this.cmbStreamSecurity = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.txtSNI = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label21);
this.groupBox1.Controls.Add(this.cmbAllowInsecure);
this.groupBox1.Controls.Add(this.label15);
this.groupBox1.Controls.Add(this.cmbStreamSecurity);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.txtSNI);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.txtId);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtPort);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// label21
//
resources.ApplyResources(this.label21, "label21");
this.label21.Name = "label21";
//
// cmbAllowInsecure
//
this.cmbAllowInsecure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAllowInsecure.FormattingEnabled = true;
this.cmbAllowInsecure.Items.AddRange(new object[] {
resources.GetString("cmbAllowInsecure.Items"),
resources.GetString("cmbAllowInsecure.Items1"),
resources.GetString("cmbAllowInsecure.Items2")});
resources.ApplyResources(this.cmbAllowInsecure, "cmbAllowInsecure");
this.cmbAllowInsecure.Name = "cmbAllowInsecure";
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
//
// cmbStreamSecurity
//
this.cmbStreamSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbStreamSecurity.FormattingEnabled = true;
this.cmbStreamSecurity.Items.AddRange(new object[] {
resources.GetString("cmbStreamSecurity.Items"),
resources.GetString("cmbStreamSecurity.Items1")});
resources.ApplyResources(this.cmbStreamSecurity, "cmbStreamSecurity");
this.cmbStreamSecurity.Name = "cmbStreamSecurity";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// txtSNI
//
resources.ApplyResources(this.txtSNI, "txtSNI");
this.txtSNI.Name = "txtSNI";
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// txtId
//
resources.ApplyResources(this.txtId, "txtId");
this.txtId.Name = "txtId";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// AddServer6Form
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MinimizeBox = true;
this.Name = "AddServer6Form";
this.Load += new System.EventHandler(this.AddServer6Form_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : AddServerForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServerForm));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnGUID = new System.Windows.Forms.Button();
this.label13 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label25 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.panTlsMore = new System.Windows.Forms.Panel();
this.txtSNI = new System.Windows.Forms.TextBox();
this.label22 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.cmbAllowInsecure = new System.Windows.Forms.ComboBox();
this.label9 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.txtPath = new System.Windows.Forms.TextBox();
this.cmbNetwork = new System.Windows.Forms.ComboBox();
this.label7 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.label18 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.cmbStreamSecurity = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.txtRequestHost = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.cmbHeaderType = new System.Windows.Forms.ComboBox();
this.label8 = new System.Windows.Forms.Label();
this.cmbSecurity = new System.Windows.Forms.ComboBox();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtAlterId = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.menuServer = new System.Windows.Forms.MenuStrip();
this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemImportClient = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemImportServer = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.MenuItemImportClipboard = new System.Windows.Forms.ToolStripMenuItem();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panTlsMore.SuspendLayout();
this.panel2.SuspendLayout();
this.menuServer.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnGUID);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.groupBox2);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.cmbSecurity);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.txtAlterId);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.txtId);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtPort);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// btnGUID
//
resources.ApplyResources(this.btnGUID, "btnGUID");
this.btnGUID.Name = "btnGUID";
this.btnGUID.UseVisualStyleBackColor = true;
this.btnGUID.Click += new System.EventHandler(this.btnGUID_Click);
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label25);
this.groupBox2.Controls.Add(this.label24);
this.groupBox2.Controls.Add(this.label23);
this.groupBox2.Controls.Add(this.panTlsMore);
this.groupBox2.Controls.Add(this.label9);
this.groupBox2.Controls.Add(this.label20);
this.groupBox2.Controls.Add(this.txtPath);
this.groupBox2.Controls.Add(this.cmbNetwork);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Controls.Add(this.label19);
this.groupBox2.Controls.Add(this.label18);
this.groupBox2.Controls.Add(this.label17);
this.groupBox2.Controls.Add(this.label16);
this.groupBox2.Controls.Add(this.label14);
this.groupBox2.Controls.Add(this.label15);
this.groupBox2.Controls.Add(this.cmbStreamSecurity);
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Controls.Add(this.txtRequestHost);
this.groupBox2.Controls.Add(this.label11);
this.groupBox2.Controls.Add(this.label10);
this.groupBox2.Controls.Add(this.cmbHeaderType);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// label25
//
resources.ApplyResources(this.label25, "label25");
this.label25.Name = "label25";
//
// label24
//
resources.ApplyResources(this.label24, "label24");
this.label24.Name = "label24";
//
// label23
//
resources.ApplyResources(this.label23, "label23");
this.label23.Name = "label23";
//
// panTlsMore
//
this.panTlsMore.Controls.Add(this.txtSNI);
this.panTlsMore.Controls.Add(this.label22);
this.panTlsMore.Controls.Add(this.label21);
this.panTlsMore.Controls.Add(this.cmbAllowInsecure);
resources.ApplyResources(this.panTlsMore, "panTlsMore");
this.panTlsMore.Name = "panTlsMore";
//
// txtSNI
//
resources.ApplyResources(this.txtSNI, "txtSNI");
this.txtSNI.Name = "txtSNI";
//
// label22
//
resources.ApplyResources(this.label22, "label22");
this.label22.Name = "label22";
//
// label21
//
resources.ApplyResources(this.label21, "label21");
this.label21.Name = "label21";
//
// cmbAllowInsecure
//
this.cmbAllowInsecure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbAllowInsecure.FormattingEnabled = true;
this.cmbAllowInsecure.Items.AddRange(new object[] {
resources.GetString("cmbAllowInsecure.Items"),
resources.GetString("cmbAllowInsecure.Items1"),
resources.GetString("cmbAllowInsecure.Items2")});
resources.ApplyResources(this.cmbAllowInsecure, "cmbAllowInsecure");
this.cmbAllowInsecure.Name = "cmbAllowInsecure";
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
//
// label20
//
resources.ApplyResources(this.label20, "label20");
this.label20.Name = "label20";
//
// txtPath
//
resources.ApplyResources(this.txtPath, "txtPath");
this.txtPath.Name = "txtPath";
//
// cmbNetwork
//
this.cmbNetwork.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbNetwork.FormattingEnabled = true;
this.cmbNetwork.Items.AddRange(new object[] {
resources.GetString("cmbNetwork.Items"),
resources.GetString("cmbNetwork.Items1"),
resources.GetString("cmbNetwork.Items2"),
resources.GetString("cmbNetwork.Items3"),
resources.GetString("cmbNetwork.Items4"),
resources.GetString("cmbNetwork.Items5")});
resources.ApplyResources(this.cmbNetwork, "cmbNetwork");
this.cmbNetwork.Name = "cmbNetwork";
this.cmbNetwork.SelectedIndexChanged += new System.EventHandler(this.cmbNetwork_SelectedIndexChanged);
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
//
// label19
//
resources.ApplyResources(this.label19, "label19");
this.label19.Name = "label19";
//
// label18
//
resources.ApplyResources(this.label18, "label18");
this.label18.Name = "label18";
//
// label17
//
resources.ApplyResources(this.label17, "label17");
this.label17.Name = "label17";
//
// label16
//
resources.ApplyResources(this.label16, "label16");
this.label16.Name = "label16";
//
// label14
//
resources.ApplyResources(this.label14, "label14");
this.label14.Name = "label14";
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
//
// cmbStreamSecurity
//
this.cmbStreamSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbStreamSecurity.FormattingEnabled = true;
this.cmbStreamSecurity.Items.AddRange(new object[] {
resources.GetString("cmbStreamSecurity.Items"),
resources.GetString("cmbStreamSecurity.Items1")});
resources.ApplyResources(this.cmbStreamSecurity, "cmbStreamSecurity");
this.cmbStreamSecurity.Name = "cmbStreamSecurity";
this.cmbStreamSecurity.SelectedIndexChanged += new System.EventHandler(this.cmbStreamSecurity_SelectedIndexChanged);
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
//
// txtRequestHost
//
resources.ApplyResources(this.txtRequestHost, "txtRequestHost");
this.txtRequestHost.Name = "txtRequestHost";
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
//
// cmbHeaderType
//
this.cmbHeaderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbHeaderType.FormattingEnabled = true;
this.cmbHeaderType.Items.AddRange(new object[] {
resources.GetString("cmbHeaderType.Items"),
resources.GetString("cmbHeaderType.Items1"),
resources.GetString("cmbHeaderType.Items2"),
resources.GetString("cmbHeaderType.Items3"),
resources.GetString("cmbHeaderType.Items4"),
resources.GetString("cmbHeaderType.Items5"),
resources.GetString("cmbHeaderType.Items6")});
resources.ApplyResources(this.cmbHeaderType, "cmbHeaderType");
this.cmbHeaderType.Name = "cmbHeaderType";
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
//
// cmbSecurity
//
this.cmbSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSecurity.FormattingEnabled = true;
this.cmbSecurity.Items.AddRange(new object[] {
resources.GetString("cmbSecurity.Items"),
resources.GetString("cmbSecurity.Items1"),
resources.GetString("cmbSecurity.Items2"),
resources.GetString("cmbSecurity.Items3"),
resources.GetString("cmbSecurity.Items4")});
resources.ApplyResources(this.cmbSecurity, "cmbSecurity");
this.cmbSecurity.Name = "cmbSecurity";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// txtAlterId
//
resources.ApplyResources(this.txtAlterId, "txtAlterId");
this.txtAlterId.Name = "txtAlterId";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// txtId
//
resources.ApplyResources(this.txtId, "txtId");
this.txtId.Name = "txtId";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// menuServer
//
this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItem1});
resources.ApplyResources(this.menuServer, "menuServer");
this.menuServer.Name = "menuServer";
//
// MenuItem1
//
this.MenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItemImportClient,
this.MenuItemImportServer,
this.toolStripSeparator1,
this.MenuItemImportClipboard});
this.MenuItem1.Name = "MenuItem1";
resources.ApplyResources(this.MenuItem1, "MenuItem1");
//
// MenuItemImportClient
//
this.MenuItemImportClient.Name = "MenuItemImportClient";
resources.ApplyResources(this.MenuItemImportClient, "MenuItemImportClient");
this.MenuItemImportClient.Click += new System.EventHandler(this.MenuItemImportClient_Click);
//
// MenuItemImportServer
//
this.MenuItemImportServer.Name = "MenuItemImportServer";
resources.ApplyResources(this.MenuItemImportServer, "MenuItemImportServer");
this.MenuItemImportServer.Click += new System.EventHandler(this.MenuItemImportServer_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
//
// MenuItemImportClipboard
//
this.MenuItemImportClipboard.Name = "MenuItemImportClipboard";
resources.ApplyResources(this.MenuItemImportClipboard, "MenuItemImportClipboard");
this.MenuItemImportClipboard.Click += new System.EventHandler(this.MenuItemImportClipboard_Click);
//
// AddServerForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.menuServer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "AddServerForm";
this.Load += new System.EventHandler(this.AddServerForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panTlsMore.ResumeLayout(false);
this.panTlsMore.PerformLayout();
this.panel2.ResumeLayout(false);
this.menuServer.ResumeLayout(false);
this.menuServer.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : AddServer3Form.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServer3Form));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label13 = new System.Windows.Forms.Label();
this.cmbSecurity = new System.Windows.Forms.ComboBox();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.txtId = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.cmbSecurity);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.txtId);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtPort);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label1);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// cmbSecurity
//
this.cmbSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSecurity.FormattingEnabled = true;
this.cmbSecurity.Items.AddRange(new object[] {
resources.GetString("cmbSecurity.Items"),
resources.GetString("cmbSecurity.Items1"),
resources.GetString("cmbSecurity.Items2"),
resources.GetString("cmbSecurity.Items3"),
resources.GetString("cmbSecurity.Items4"),
resources.GetString("cmbSecurity.Items5")});
resources.ApplyResources(this.cmbSecurity, "cmbSecurity");
this.cmbSecurity.Name = "cmbSecurity";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// txtId
//
resources.ApplyResources(this.txtId, "txtId");
this.txtId.Name = "txtId";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// AddServer3Form
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MinimizeBox = true;
this.Name = "AddServer3Form";
this.Load += new System.EventHandler(this.AddServer3Form_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : MsgFilterSetForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MsgFilterSetForm));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtMsgFilter = new System.Windows.Forms.TextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtMsgFilter);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtMsgFilter
//
resources.ApplyResources(this.txtMsgFilter, "txtMsgFilter");
this.txtMsgFilter.Name = "txtMsgFilter";
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
this.panel2.Name = "panel2";
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// MsgFilterSetForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Name = "MsgFilterSetForm";
this.Load += new System.EventHandler(this.MsgFilterSetForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : OptionSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.chkdefAllowInsecure = new System.Windows.Forms.CheckBox();
this.chksniffingEnabled2 = new System.Windows.Forms.CheckBox();
this.chksniffingEnabled = new System.Windows.Forms.CheckBox();
this.chkmuxEnabled = new System.Windows.Forms.CheckBox();
this.chkAllowIn2 = new System.Windows.Forms.CheckBox();
this.chkudpEnabled2 = new System.Windows.Forms.CheckBox();
this.cmbprotocol2 = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.txtlocalPort2 = new System.Windows.Forms.TextBox();
this.cmbprotocol = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.chkudpEnabled = new System.Windows.Forms.CheckBox();
this.chklogEnabled = new System.Windows.Forms.CheckBox();
this.cmbloglevel = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.txtlocalPort = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.linkDnsObjectDoc = new System.Windows.Forms.LinkLabel();
this.txtremoteDNS = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.tabPage6 = new System.Windows.Forms.TabPage();
this.chkKcpcongestion = new System.Windows.Forms.CheckBox();
this.txtKcpwriteBufferSize = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.txtKcpreadBufferSize = new System.Windows.Forms.TextBox();
this.label11 = new System.Windows.Forms.Label();
this.txtKcpdownlinkCapacity = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.txtKcpuplinkCapacity = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.txtKcptti = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.txtKcpmtu = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.tabPage7 = new System.Windows.Forms.TabPage();
this.txtautoUpdateInterval = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.chkIgnoreGeoUpdateCore = new System.Windows.Forms.CheckBox();
this.cmbCoreType = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.chkKeepOlderDedupl = new System.Windows.Forms.CheckBox();
this.cbFreshrate = new System.Windows.Forms.ComboBox();
this.lbFreshrate = new System.Windows.Forms.Label();
this.chkEnableStatistics = new System.Windows.Forms.CheckBox();
this.chkAllowLANConn = new System.Windows.Forms.CheckBox();
this.chkAutoRun = new System.Windows.Forms.CheckBox();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label13 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.txtsystemProxyExceptions = new System.Windows.Forms.TextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage6.SuspendLayout();
this.tabPage7.SuspendLayout();
this.tabPage3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage6);
this.tabControl1.Controls.Add(this.tabPage7);
this.tabControl1.Controls.Add(this.tabPage3);
resources.ApplyResources(this.tabControl1, "tabControl1");
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.groupBox1);
resources.ApplyResources(this.tabPage1, "tabPage1");
this.tabPage1.Name = "tabPage1";
this.tabPage1.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.chkdefAllowInsecure);
this.groupBox1.Controls.Add(this.chksniffingEnabled2);
this.groupBox1.Controls.Add(this.chksniffingEnabled);
this.groupBox1.Controls.Add(this.chkmuxEnabled);
this.groupBox1.Controls.Add(this.chkAllowIn2);
this.groupBox1.Controls.Add(this.chkudpEnabled2);
this.groupBox1.Controls.Add(this.cmbprotocol2);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.txtlocalPort2);
this.groupBox1.Controls.Add(this.cmbprotocol);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.chkudpEnabled);
this.groupBox1.Controls.Add(this.chklogEnabled);
this.groupBox1.Controls.Add(this.cmbloglevel);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.txtlocalPort);
this.groupBox1.Controls.Add(this.label2);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// chkdefAllowInsecure
//
resources.ApplyResources(this.chkdefAllowInsecure, "chkdefAllowInsecure");
this.chkdefAllowInsecure.Name = "chkdefAllowInsecure";
this.chkdefAllowInsecure.UseVisualStyleBackColor = true;
//
// chksniffingEnabled2
//
resources.ApplyResources(this.chksniffingEnabled2, "chksniffingEnabled2");
this.chksniffingEnabled2.Name = "chksniffingEnabled2";
this.chksniffingEnabled2.UseVisualStyleBackColor = true;
//
// chksniffingEnabled
//
resources.ApplyResources(this.chksniffingEnabled, "chksniffingEnabled");
this.chksniffingEnabled.Name = "chksniffingEnabled";
this.chksniffingEnabled.UseVisualStyleBackColor = true;
//
// chkmuxEnabled
//
resources.ApplyResources(this.chkmuxEnabled, "chkmuxEnabled");
this.chkmuxEnabled.Name = "chkmuxEnabled";
this.chkmuxEnabled.UseVisualStyleBackColor = true;
//
// chkAllowIn2
//
resources.ApplyResources(this.chkAllowIn2, "chkAllowIn2");
this.chkAllowIn2.Name = "chkAllowIn2";
this.chkAllowIn2.UseVisualStyleBackColor = true;
this.chkAllowIn2.CheckedChanged += new System.EventHandler(this.chkAllowIn2_CheckedChanged);
//
// chkudpEnabled2
//
resources.ApplyResources(this.chkudpEnabled2, "chkudpEnabled2");
this.chkudpEnabled2.Name = "chkudpEnabled2";
this.chkudpEnabled2.UseVisualStyleBackColor = true;
//
// cmbprotocol2
//
this.cmbprotocol2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbprotocol2.FormattingEnabled = true;
this.cmbprotocol2.Items.AddRange(new object[] {
resources.GetString("cmbprotocol2.Items"),
resources.GetString("cmbprotocol2.Items1")});
resources.ApplyResources(this.cmbprotocol2, "cmbprotocol2");
this.cmbprotocol2.Name = "cmbprotocol2";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtlocalPort2
//
resources.ApplyResources(this.txtlocalPort2, "txtlocalPort2");
this.txtlocalPort2.Name = "txtlocalPort2";
//
// cmbprotocol
//
this.cmbprotocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
resources.ApplyResources(this.cmbprotocol, "cmbprotocol");
this.cmbprotocol.FormattingEnabled = true;
this.cmbprotocol.Items.AddRange(new object[] {
resources.GetString("cmbprotocol.Items"),
resources.GetString("cmbprotocol.Items1")});
this.cmbprotocol.Name = "cmbprotocol";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// chkudpEnabled
//
resources.ApplyResources(this.chkudpEnabled, "chkudpEnabled");
this.chkudpEnabled.Name = "chkudpEnabled";
this.chkudpEnabled.UseVisualStyleBackColor = true;
//
// chklogEnabled
//
resources.ApplyResources(this.chklogEnabled, "chklogEnabled");
this.chklogEnabled.Name = "chklogEnabled";
this.chklogEnabled.UseVisualStyleBackColor = true;
//
// cmbloglevel
//
this.cmbloglevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbloglevel.FormattingEnabled = true;
this.cmbloglevel.Items.AddRange(new object[] {
resources.GetString("cmbloglevel.Items"),
resources.GetString("cmbloglevel.Items1"),
resources.GetString("cmbloglevel.Items2"),
resources.GetString("cmbloglevel.Items3"),
resources.GetString("cmbloglevel.Items4")});
resources.ApplyResources(this.cmbloglevel, "cmbloglevel");
this.cmbloglevel.Name = "cmbloglevel";
//
// label5
//
resources.ApplyResources(this.label5, "label5");
this.label5.Name = "label5";
//
// txtlocalPort
//
resources.ApplyResources(this.txtlocalPort, "txtlocalPort");
this.txtlocalPort.Name = "txtlocalPort";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.linkDnsObjectDoc);
this.tabPage2.Controls.Add(this.txtremoteDNS);
this.tabPage2.Controls.Add(this.label14);
resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.Name = "tabPage2";
this.tabPage2.UseVisualStyleBackColor = true;
//
// linkDnsObjectDoc
//
resources.ApplyResources(this.linkDnsObjectDoc, "linkDnsObjectDoc");
this.linkDnsObjectDoc.Name = "linkDnsObjectDoc";
this.linkDnsObjectDoc.TabStop = true;
this.linkDnsObjectDoc.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkDnsObjectDoc_LinkClicked);
//
// txtremoteDNS
//
resources.ApplyResources(this.txtremoteDNS, "txtremoteDNS");
this.txtremoteDNS.Name = "txtremoteDNS";
//
// label14
//
resources.ApplyResources(this.label14, "label14");
this.label14.Name = "label14";
//
// tabPage6
//
this.tabPage6.Controls.Add(this.chkKcpcongestion);
this.tabPage6.Controls.Add(this.txtKcpwriteBufferSize);
this.tabPage6.Controls.Add(this.label10);
this.tabPage6.Controls.Add(this.txtKcpreadBufferSize);
this.tabPage6.Controls.Add(this.label11);
this.tabPage6.Controls.Add(this.txtKcpdownlinkCapacity);
this.tabPage6.Controls.Add(this.label8);
this.tabPage6.Controls.Add(this.txtKcpuplinkCapacity);
this.tabPage6.Controls.Add(this.label9);
this.tabPage6.Controls.Add(this.txtKcptti);
this.tabPage6.Controls.Add(this.label7);
this.tabPage6.Controls.Add(this.txtKcpmtu);
this.tabPage6.Controls.Add(this.label6);
resources.ApplyResources(this.tabPage6, "tabPage6");
this.tabPage6.Name = "tabPage6";
this.tabPage6.UseVisualStyleBackColor = true;
//
// chkKcpcongestion
//
resources.ApplyResources(this.chkKcpcongestion, "chkKcpcongestion");
this.chkKcpcongestion.Name = "chkKcpcongestion";
this.chkKcpcongestion.UseVisualStyleBackColor = true;
//
// txtKcpwriteBufferSize
//
resources.ApplyResources(this.txtKcpwriteBufferSize, "txtKcpwriteBufferSize");
this.txtKcpwriteBufferSize.Name = "txtKcpwriteBufferSize";
//
// label10
//
resources.ApplyResources(this.label10, "label10");
this.label10.Name = "label10";
//
// txtKcpreadBufferSize
//
resources.ApplyResources(this.txtKcpreadBufferSize, "txtKcpreadBufferSize");
this.txtKcpreadBufferSize.Name = "txtKcpreadBufferSize";
//
// label11
//
resources.ApplyResources(this.label11, "label11");
this.label11.Name = "label11";
//
// txtKcpdownlinkCapacity
//
resources.ApplyResources(this.txtKcpdownlinkCapacity, "txtKcpdownlinkCapacity");
this.txtKcpdownlinkCapacity.Name = "txtKcpdownlinkCapacity";
//
// label8
//
resources.ApplyResources(this.label8, "label8");
this.label8.Name = "label8";
//
// txtKcpuplinkCapacity
//
resources.ApplyResources(this.txtKcpuplinkCapacity, "txtKcpuplinkCapacity");
this.txtKcpuplinkCapacity.Name = "txtKcpuplinkCapacity";
//
// label9
//
resources.ApplyResources(this.label9, "label9");
this.label9.Name = "label9";
//
// txtKcptti
//
resources.ApplyResources(this.txtKcptti, "txtKcptti");
this.txtKcptti.Name = "txtKcptti";
//
// label7
//
resources.ApplyResources(this.label7, "label7");
this.label7.Name = "label7";
//
// txtKcpmtu
//
resources.ApplyResources(this.txtKcpmtu, "txtKcpmtu");
this.txtKcpmtu.Name = "txtKcpmtu";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// tabPage7
//
this.tabPage7.Controls.Add(this.txtautoUpdateInterval);
this.tabPage7.Controls.Add(this.label15);
this.tabPage7.Controls.Add(this.chkIgnoreGeoUpdateCore);
this.tabPage7.Controls.Add(this.cmbCoreType);
this.tabPage7.Controls.Add(this.label4);
this.tabPage7.Controls.Add(this.chkKeepOlderDedupl);
this.tabPage7.Controls.Add(this.cbFreshrate);
this.tabPage7.Controls.Add(this.lbFreshrate);
this.tabPage7.Controls.Add(this.chkEnableStatistics);
this.tabPage7.Controls.Add(this.chkAllowLANConn);
this.tabPage7.Controls.Add(this.chkAutoRun);
resources.ApplyResources(this.tabPage7, "tabPage7");
this.tabPage7.Name = "tabPage7";
this.tabPage7.UseVisualStyleBackColor = true;
//
// txtautoUpdateInterval
//
resources.ApplyResources(this.txtautoUpdateInterval, "txtautoUpdateInterval");
this.txtautoUpdateInterval.Name = "txtautoUpdateInterval";
//
// label15
//
resources.ApplyResources(this.label15, "label15");
this.label15.Name = "label15";
//
// chkIgnoreGeoUpdateCore
//
resources.ApplyResources(this.chkIgnoreGeoUpdateCore, "chkIgnoreGeoUpdateCore");
this.chkIgnoreGeoUpdateCore.Name = "chkIgnoreGeoUpdateCore";
this.chkIgnoreGeoUpdateCore.UseVisualStyleBackColor = true;
//
// cmbCoreType
//
this.cmbCoreType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbCoreType.FormattingEnabled = true;
this.cmbCoreType.Items.AddRange(new object[] {
resources.GetString("cmbCoreType.Items"),
resources.GetString("cmbCoreType.Items1")});
resources.ApplyResources(this.cmbCoreType, "cmbCoreType");
this.cmbCoreType.Name = "cmbCoreType";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// chkKeepOlderDedupl
//
resources.ApplyResources(this.chkKeepOlderDedupl, "chkKeepOlderDedupl");
this.chkKeepOlderDedupl.Name = "chkKeepOlderDedupl";
this.chkKeepOlderDedupl.UseVisualStyleBackColor = true;
//
// cbFreshrate
//
this.cbFreshrate.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFreshrate.FormattingEnabled = true;
resources.ApplyResources(this.cbFreshrate, "cbFreshrate");
this.cbFreshrate.Name = "cbFreshrate";
//
// lbFreshrate
//
resources.ApplyResources(this.lbFreshrate, "lbFreshrate");
this.lbFreshrate.Name = "lbFreshrate";
//
// chkEnableStatistics
//
resources.ApplyResources(this.chkEnableStatistics, "chkEnableStatistics");
this.chkEnableStatistics.Name = "chkEnableStatistics";
this.chkEnableStatistics.UseVisualStyleBackColor = true;
//
// chkAllowLANConn
//
resources.ApplyResources(this.chkAllowLANConn, "chkAllowLANConn");
this.chkAllowLANConn.Name = "chkAllowLANConn";
this.chkAllowLANConn.UseVisualStyleBackColor = true;
//
// chkAutoRun
//
resources.ApplyResources(this.chkAutoRun, "chkAutoRun");
this.chkAutoRun.Name = "chkAutoRun";
this.chkAutoRun.UseVisualStyleBackColor = true;
//
// tabPage3
//
this.tabPage3.Controls.Add(this.groupBox2);
resources.ApplyResources(this.tabPage3, "tabPage3");
this.tabPage3.Name = "tabPage3";
this.tabPage3.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label13);
this.groupBox2.Controls.Add(this.label12);
this.groupBox2.Controls.Add(this.txtsystemProxyExceptions);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// label12
//
resources.ApplyResources(this.label12, "label12");
this.label12.Name = "label12";
//
// txtsystemProxyExceptions
//
resources.ApplyResources(this.txtsystemProxyExceptions, "txtsystemProxyExceptions");
this.txtsystemProxyExceptions.Name = "txtsystemProxyExceptions";
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// OptionSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "OptionSettingForm";
this.Load += new System.EventHandler(this.OptionSettingForm_Load);
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage6.ResumeLayout(false);
this.tabPage6.PerformLayout();
this.tabPage7.ResumeLayout(false);
this.tabPage7.PerformLayout();
this.tabPage3.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : RoutingRuleQuicklyAddForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingRuleQuicklyAddForm));
this.panel1 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.cmbOutboundTag = new System.Windows.Forms.ComboBox();
this.panel4 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtIP = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtDomain = new System.Windows.Forms.TextBox();
this.panel3.SuspendLayout();
this.panel4.SuspendLayout();
this.panel2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// panel3
//
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.label4);
this.panel3.Controls.Add(this.cmbOutboundTag);
this.panel3.Name = "panel3";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// cmbOutboundTag
//
resources.ApplyResources(this.cmbOutboundTag, "cmbOutboundTag");
this.cmbOutboundTag.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbOutboundTag.FormattingEnabled = true;
this.cmbOutboundTag.Items.AddRange(new object[] {
resources.GetString("cmbOutboundTag.Items"),
resources.GetString("cmbOutboundTag.Items1"),
resources.GetString("cmbOutboundTag.Items2")});
this.cmbOutboundTag.Name = "cmbOutboundTag";
//
// panel4
//
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Controls.Add(this.btnClose);
this.panel4.Controls.Add(this.btnOK);
this.panel4.Name = "panel4";
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.groupBox2);
this.panel2.Controls.Add(this.groupBox1);
this.panel2.Name = "panel2";
//
// groupBox2
//
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.txtIP);
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtIP
//
resources.ApplyResources(this.txtIP, "txtIP");
this.txtIP.Name = "txtIP";
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtDomain);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtDomain
//
resources.ApplyResources(this.txtDomain, "txtDomain");
this.txtDomain.Name = "txtDomain";
//
// RoutingRuleQuicklyAddForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel4);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel1);
this.Name = "RoutingRuleQuicklyAddForm";
this.Load += new System.EventHandler(this.RoutingRuleQuicklyAddForm_Load);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : RoutingRuleSettingDetailsForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingRuleSettingDetailsForm));
this.panel1 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.chkEnabled = new System.Windows.Forms.CheckBox();
this.clbInboundTag = new System.Windows.Forms.CheckedListBox();
this.label2 = new System.Windows.Forms.Label();
this.clbProtocol = new System.Windows.Forms.CheckedListBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.labRoutingTips = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.cmbOutboundTag = new System.Windows.Forms.ComboBox();
this.panel4 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtIP = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtDomain = new System.Windows.Forms.TextBox();
this.panel3.SuspendLayout();
this.panel4.SuspendLayout();
this.panel2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// panel3
//
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.chkEnabled);
this.panel3.Controls.Add(this.clbInboundTag);
this.panel3.Controls.Add(this.label2);
this.panel3.Controls.Add(this.clbProtocol);
this.panel3.Controls.Add(this.label3);
this.panel3.Controls.Add(this.txtPort);
this.panel3.Controls.Add(this.label1);
this.panel3.Controls.Add(this.labRoutingTips);
this.panel3.Controls.Add(this.label4);
this.panel3.Controls.Add(this.cmbOutboundTag);
this.panel3.Name = "panel3";
//
// chkEnabled
//
resources.ApplyResources(this.chkEnabled, "chkEnabled");
this.chkEnabled.Name = "chkEnabled";
this.chkEnabled.UseVisualStyleBackColor = true;
//
// clbInboundTag
//
resources.ApplyResources(this.clbInboundTag, "clbInboundTag");
this.clbInboundTag.CheckOnClick = true;
this.clbInboundTag.FormattingEnabled = true;
this.clbInboundTag.Items.AddRange(new object[] {
resources.GetString("clbInboundTag.Items"),
resources.GetString("clbInboundTag.Items1")});
this.clbInboundTag.MultiColumn = true;
this.clbInboundTag.Name = "clbInboundTag";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// clbProtocol
//
resources.ApplyResources(this.clbProtocol, "clbProtocol");
this.clbProtocol.CheckOnClick = true;
this.clbProtocol.FormattingEnabled = true;
this.clbProtocol.Items.AddRange(new object[] {
resources.GetString("clbProtocol.Items"),
resources.GetString("clbProtocol.Items1"),
resources.GetString("clbProtocol.Items2")});
this.clbProtocol.MultiColumn = true;
this.clbProtocol.Name = "clbProtocol";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// labRoutingTips
//
resources.ApplyResources(this.labRoutingTips, "labRoutingTips");
this.labRoutingTips.ForeColor = System.Drawing.Color.Brown;
this.labRoutingTips.Name = "labRoutingTips";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// cmbOutboundTag
//
resources.ApplyResources(this.cmbOutboundTag, "cmbOutboundTag");
this.cmbOutboundTag.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbOutboundTag.FormattingEnabled = true;
this.cmbOutboundTag.Items.AddRange(new object[] {
resources.GetString("cmbOutboundTag.Items"),
resources.GetString("cmbOutboundTag.Items1"),
resources.GetString("cmbOutboundTag.Items2")});
this.cmbOutboundTag.Name = "cmbOutboundTag";
//
// panel4
//
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Controls.Add(this.btnClose);
this.panel4.Controls.Add(this.btnOK);
this.panel4.Name = "panel4";
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.groupBox2);
this.panel2.Controls.Add(this.groupBox1);
this.panel2.Name = "panel2";
//
// groupBox2
//
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.txtIP);
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtIP
//
resources.ApplyResources(this.txtIP, "txtIP");
this.txtIP.Name = "txtIP";
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtDomain);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtDomain
//
resources.ApplyResources(this.txtDomain, "txtDomain");
this.txtDomain.Name = "txtDomain";
//
// RoutingRuleSettingDetailsForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel4);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel1);
this.Name = "RoutingRuleSettingDetailsForm";
this.Load += new System.EventHandler(this.RoutingRuleSettingDetailsForm_Load);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : AddServer2Form.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServer2Form));
this.btnClose = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtAddress = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.groupBox1.SuspendLayout();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtAddress);
this.groupBox1.Controls.Add(this.label13);
this.groupBox1.Controls.Add(this.txtRemarks);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtAddress
//
resources.ApplyResources(this.txtAddress, "txtAddress");
this.txtAddress.Name = "txtAddress";
//
// label13
//
resources.ApplyResources(this.label13, "label13");
this.label13.Name = "label13";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// AddServer2Form
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "AddServer2Form";
this.Load += new System.EventHandler(this.AddServer2Form_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : QRCodeForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
this.picQRCode = new System.Windows.Forms.PictureBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtUrl = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.picQRCode)).BeginInit();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// picQRCode
//
this.picQRCode.Dock = System.Windows.Forms.DockStyle.Fill;
this.picQRCode.Location = new System.Drawing.Point(0, 0);
this.picQRCode.Name = "picQRCode";
this.picQRCode.Size = new System.Drawing.Size(482, 483);
this.picQRCode.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picQRCode.TabIndex = 23;
this.picQRCode.TabStop = false;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtUrl);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
this.groupBox1.Location = new System.Drawing.Point(0, 483);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(482, 90);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "URL";
//
// txtUrl
//
this.txtUrl.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtUrl.Location = new System.Drawing.Point(3, 17);
this.txtUrl.Multiline = true;
this.txtUrl.Name = "txtUrl";
this.txtUrl.ReadOnly = true;
this.txtUrl.Size = new System.Drawing.Size(476, 70);
this.txtUrl.TabIndex = 0;
//
// QRCodeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(482, 573);
this.Controls.Add(this.picQRCode);
this.Controls.Add(this.groupBox1);
this.Name = "QRCodeForm";
this.Text = "服务器配置二维码和URL";
this.Load += new System.EventHandler(this.QRCodeForm_Load);
this.Shown += new System.EventHandler(this.QRCodeForm_Shown);
((System.ComponentModel.ISupportInitialize)(this.picQRCode)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : RoutingRuleSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingRuleSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.txtUrl = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.menuExportSelectedRules = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.menuMoveTop = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveUp = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveDown = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveBottom = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.menuServer = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromFile = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromClipboard = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromUrl = new System.Windows.Forms.ToolStripMenuItem();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.cmsLv.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.menuServer.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.txtUrl);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.txtRemarks);
this.panel1.Controls.Add(this.label2);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// txtUrl
//
resources.ApplyResources(this.txtUrl, "txtUrl");
this.txtUrl.Name = "txtUrl";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// lvRoutings
//
this.lvRoutings.ContextMenuStrip = this.cmsLv;
resources.ApplyResources(this.lvRoutings, "lvRoutings");
this.lvRoutings.FullRowSelect = true;
this.lvRoutings.GridLines = true;
this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvRoutings.HideSelection = false;
this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
this.lvRoutings.MultiSelect = false;
this.lvRoutings.Name = "lvRoutings";
this.lvRoutings.UseCompatibleStateImageBehavior = false;
this.lvRoutings.View = System.Windows.Forms.View.Details;
this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
this.lvRoutings.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvRoutings_KeyDown);
//
// cmsLv
//
this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuAdd,
this.menuRemove,
this.menuSelectAll,
this.menuExportSelectedRules,
this.toolStripSeparator3,
this.menuMoveTop,
this.menuMoveUp,
this.menuMoveDown,
this.menuMoveBottom});
this.cmsLv.Name = "cmsLv";
this.cmsLv.OwnerItem = this.MenuItem1;
resources.ApplyResources(this.cmsLv, "cmsLv");
//
// menuAdd
//
this.menuAdd.Name = "menuAdd";
resources.ApplyResources(this.menuAdd, "menuAdd");
this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
//
// menuRemove
//
this.menuRemove.Name = "menuRemove";
resources.ApplyResources(this.menuRemove, "menuRemove");
this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
//
// menuSelectAll
//
this.menuSelectAll.Name = "menuSelectAll";
resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
//
// menuExportSelectedRules
//
this.menuExportSelectedRules.Name = "menuExportSelectedRules";
resources.ApplyResources(this.menuExportSelectedRules, "menuExportSelectedRules");
this.menuExportSelectedRules.Click += new System.EventHandler(this.menuExportSelectedRules_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
//
// menuMoveTop
//
this.menuMoveTop.Name = "menuMoveTop";
resources.ApplyResources(this.menuMoveTop, "menuMoveTop");
this.menuMoveTop.Click += new System.EventHandler(this.menuMoveTop_Click);
//
// menuMoveUp
//
this.menuMoveUp.Name = "menuMoveUp";
resources.ApplyResources(this.menuMoveUp, "menuMoveUp");
this.menuMoveUp.Click += new System.EventHandler(this.menuMoveUp_Click);
//
// menuMoveDown
//
this.menuMoveDown.Name = "menuMoveDown";
resources.ApplyResources(this.menuMoveDown, "menuMoveDown");
this.menuMoveDown.Click += new System.EventHandler(this.menuMoveDown_Click);
//
// menuMoveBottom
//
this.menuMoveBottom.Name = "menuMoveBottom";
resources.ApplyResources(this.menuMoveBottom, "menuMoveBottom");
this.menuMoveBottom.Click += new System.EventHandler(this.menuMoveBottom_Click);
//
// MenuItem1
//
this.MenuItem1.DropDown = this.cmsLv;
this.MenuItem1.Name = "MenuItem1";
resources.ApplyResources(this.MenuItem1, "MenuItem1");
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabPage2);
resources.ApplyResources(this.tabControl2, "tabControl2");
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.lvRoutings);
resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.Name = "tabPage2";
this.tabPage2.UseVisualStyleBackColor = true;
//
// menuServer
//
this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItem1,
this.toolStripMenuItem1});
resources.ApplyResources(this.menuServer, "menuServer");
this.menuServer.Name = "menuServer";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuImportRulesFromFile,
this.menuImportRulesFromClipboard,
this.menuImportRulesFromUrl});
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
//
// menuImportRulesFromFile
//
this.menuImportRulesFromFile.Name = "menuImportRulesFromFile";
resources.ApplyResources(this.menuImportRulesFromFile, "menuImportRulesFromFile");
this.menuImportRulesFromFile.Click += new System.EventHandler(this.menuImportRulesFromFile_Click);
//
// menuImportRulesFromClipboard
//
this.menuImportRulesFromClipboard.Name = "menuImportRulesFromClipboard";
resources.ApplyResources(this.menuImportRulesFromClipboard, "menuImportRulesFromClipboard");
this.menuImportRulesFromClipboard.Click += new System.EventHandler(this.menuImportRulesFromClipboard_Click);
//
// menuImportRulesFromUrl
//
this.menuImportRulesFromUrl.Name = "menuImportRulesFromUrl";
resources.ApplyResources(this.menuImportRulesFromUrl, "menuImportRulesFromUrl");
this.menuImportRulesFromUrl.Click += new System.EventHandler(this.menuImportRulesFromUrl_Click);
//
// RoutingRuleSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.tabControl2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.menuServer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "RoutingRuleSettingForm";
this.Load += new System.EventHandler(this.RoutingRuleSettingForm_Load);
this.panel2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.cmsLv.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.menuServer.ResumeLayout(false);
this.menuServer.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RoutingRuleSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingRuleSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.txtUrl = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.menuExportSelectedRules = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.menuMoveTop = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveUp = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveDown = new System.Windows.Forms.ToolStripMenuItem();
this.menuMoveBottom = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl2 = new System.Windows.Forms.TabControl();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.menuServer = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromFile = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromClipboard = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportRulesFromUrl = new System.Windows.Forms.ToolStripMenuItem();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.cmsLv.SuspendLayout();
this.tabControl2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.menuServer.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.txtUrl);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.txtRemarks);
this.panel1.Controls.Add(this.label2);
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// txtUrl
//
resources.ApplyResources(this.txtUrl, "txtUrl");
this.txtUrl.Name = "txtUrl";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// lvRoutings
//
this.lvRoutings.ContextMenuStrip = this.cmsLv;
resources.ApplyResources(this.lvRoutings, "lvRoutings");
this.lvRoutings.FullRowSelect = true;
this.lvRoutings.GridLines = true;
this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvRoutings.HideSelection = false;
this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
this.lvRoutings.MultiSelect = false;
this.lvRoutings.Name = "lvRoutings";
this.lvRoutings.UseCompatibleStateImageBehavior = false;
this.lvRoutings.View = System.Windows.Forms.View.Details;
this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
this.lvRoutings.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvRoutings_KeyDown);
//
// cmsLv
//
this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuAdd,
this.menuRemove,
this.menuSelectAll,
this.menuExportSelectedRules,
this.toolStripSeparator3,
this.menuMoveTop,
this.menuMoveUp,
this.menuMoveDown,
this.menuMoveBottom});
this.cmsLv.Name = "cmsLv";
this.cmsLv.OwnerItem = this.MenuItem1;
resources.ApplyResources(this.cmsLv, "cmsLv");
//
// menuAdd
//
this.menuAdd.Name = "menuAdd";
resources.ApplyResources(this.menuAdd, "menuAdd");
this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
//
// menuRemove
//
this.menuRemove.Name = "menuRemove";
resources.ApplyResources(this.menuRemove, "menuRemove");
this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
//
// menuSelectAll
//
this.menuSelectAll.Name = "menuSelectAll";
resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
//
// menuExportSelectedRules
//
this.menuExportSelectedRules.Name = "menuExportSelectedRules";
resources.ApplyResources(this.menuExportSelectedRules, "menuExportSelectedRules");
this.menuExportSelectedRules.Click += new System.EventHandler(this.menuExportSelectedRules_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
//
// menuMoveTop
//
this.menuMoveTop.Name = "menuMoveTop";
resources.ApplyResources(this.menuMoveTop, "menuMoveTop");
this.menuMoveTop.Click += new System.EventHandler(this.menuMoveTop_Click);
//
// menuMoveUp
//
this.menuMoveUp.Name = "menuMoveUp";
resources.ApplyResources(this.menuMoveUp, "menuMoveUp");
this.menuMoveUp.Click += new System.EventHandler(this.menuMoveUp_Click);
//
// menuMoveDown
//
this.menuMoveDown.Name = "menuMoveDown";
resources.ApplyResources(this.menuMoveDown, "menuMoveDown");
this.menuMoveDown.Click += new System.EventHandler(this.menuMoveDown_Click);
//
// menuMoveBottom
//
this.menuMoveBottom.Name = "menuMoveBottom";
resources.ApplyResources(this.menuMoveBottom, "menuMoveBottom");
this.menuMoveBottom.Click += new System.EventHandler(this.menuMoveBottom_Click);
//
// MenuItem1
//
this.MenuItem1.DropDown = this.cmsLv;
this.MenuItem1.Name = "MenuItem1";
resources.ApplyResources(this.MenuItem1, "MenuItem1");
//
// tabControl2
//
this.tabControl2.Controls.Add(this.tabPage2);
resources.ApplyResources(this.tabControl2, "tabControl2");
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
//
// tabPage2
//
this.tabPage2.Controls.Add(this.lvRoutings);
resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.Name = "tabPage2";
this.tabPage2.UseVisualStyleBackColor = true;
//
// menuServer
//
this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItem1,
this.toolStripMenuItem1});
resources.ApplyResources(this.menuServer, "menuServer");
this.menuServer.Name = "menuServer";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuImportRulesFromFile,
this.menuImportRulesFromClipboard,
this.menuImportRulesFromUrl});
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
//
// menuImportRulesFromFile
//
this.menuImportRulesFromFile.Name = "menuImportRulesFromFile";
resources.ApplyResources(this.menuImportRulesFromFile, "menuImportRulesFromFile");
this.menuImportRulesFromFile.Click += new System.EventHandler(this.menuImportRulesFromFile_Click);
//
// menuImportRulesFromClipboard
//
this.menuImportRulesFromClipboard.Name = "menuImportRulesFromClipboard";
resources.ApplyResources(this.menuImportRulesFromClipboard, "menuImportRulesFromClipboard");
this.menuImportRulesFromClipboard.Click += new System.EventHandler(this.menuImportRulesFromClipboard_Click);
//
// menuImportRulesFromUrl
//
this.menuImportRulesFromUrl.Name = "menuImportRulesFromUrl";
resources.ApplyResources(this.menuImportRulesFromUrl, "menuImportRulesFromUrl");
this.menuImportRulesFromUrl.Click += new System.EventHandler(this.menuImportRulesFromUrl_Click);
//
// RoutingRuleSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.tabControl2);
this.Controls.Add(this.panel1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.menuServer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "RoutingRuleSettingForm";
this.Load += new System.EventHandler(this.RoutingRuleSettingForm_Load);
this.panel2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.cmsLv.ResumeLayout(false);
this.tabControl2.ResumeLayout(false);
this.tabPage2.ResumeLayout(false);
this.menuServer.ResumeLayout(false);
this.menuServer.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RoutingSettingDetailsForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingSettingDetailsForm));
this.panel1 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.clbProtocol = new System.Windows.Forms.CheckedListBox();
this.label3 = new System.Windows.Forms.Label();
this.txtPort = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.labRoutingTips = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.cmbOutboundTag = new System.Windows.Forms.ComboBox();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.panel4 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtIP = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtDomain = new System.Windows.Forms.TextBox();
this.panel3.SuspendLayout();
this.panel4.SuspendLayout();
this.panel2.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Name = "panel1";
//
// panel3
//
this.panel3.Controls.Add(this.clbProtocol);
this.panel3.Controls.Add(this.label3);
this.panel3.Controls.Add(this.txtPort);
this.panel3.Controls.Add(this.label1);
this.panel3.Controls.Add(this.labRoutingTips);
this.panel3.Controls.Add(this.label4);
this.panel3.Controls.Add(this.cmbOutboundTag);
this.panel3.Controls.Add(this.txtRemarks);
this.panel3.Controls.Add(this.label2);
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Name = "panel3";
//
// clbProtocol
//
this.clbProtocol.CheckOnClick = true;
resources.ApplyResources(this.clbProtocol, "clbProtocol");
this.clbProtocol.FormattingEnabled = true;
this.clbProtocol.Items.AddRange(new object[] {
resources.GetString("clbProtocol.Items"),
resources.GetString("clbProtocol.Items1"),
resources.GetString("clbProtocol.Items2")});
this.clbProtocol.MultiColumn = true;
this.clbProtocol.Name = "clbProtocol";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// txtPort
//
resources.ApplyResources(this.txtPort, "txtPort");
this.txtPort.Name = "txtPort";
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// labRoutingTips
//
this.labRoutingTips.ForeColor = System.Drawing.Color.Brown;
resources.ApplyResources(this.labRoutingTips, "labRoutingTips");
this.labRoutingTips.Name = "labRoutingTips";
//
// label4
//
resources.ApplyResources(this.label4, "label4");
this.label4.Name = "label4";
//
// cmbOutboundTag
//
this.cmbOutboundTag.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbOutboundTag.FormattingEnabled = true;
this.cmbOutboundTag.Items.AddRange(new object[] {
resources.GetString("cmbOutboundTag.Items"),
resources.GetString("cmbOutboundTag.Items1"),
resources.GetString("cmbOutboundTag.Items2")});
resources.ApplyResources(this.cmbOutboundTag, "cmbOutboundTag");
this.cmbOutboundTag.Name = "cmbOutboundTag";
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// panel4
//
this.panel4.Controls.Add(this.btnClose);
this.panel4.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Name = "panel4";
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel2
//
this.panel2.Controls.Add(this.groupBox2);
this.panel2.Controls.Add(this.groupBox1);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.txtIP);
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtIP
//
resources.ApplyResources(this.txtIP, "txtIP");
this.txtIP.Name = "txtIP";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtDomain);
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtDomain
//
resources.ApplyResources(this.txtDomain, "txtDomain");
this.txtDomain.Name = "txtDomain";
//
// RoutingSettingDetailsForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel4);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel1);
this.Name = "RoutingSettingDetailsForm";
this.Load += new System.EventHandler(this.RoutingSettingDetailsForm_Load);
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.panel4.ResumeLayout(false);
this.panel2.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : RoutingSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.labRoutingTips = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.cmbdomainMatcher = new System.Windows.Forms.ComboBox();
this.label6 = new System.Windows.Forms.Label();
this.chkenableRoutingAdvanced = new System.Windows.Forms.CheckBox();
this.linkLabelRoutingDoc = new System.Windows.Forms.LinkLabel();
this.cmbdomainStrategy = new System.Windows.Forms.ComboBox();
this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.menuSetDefaultRouting = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemAdvanced = new System.Windows.Forms.ToolStripMenuItem();
this.menuServer = new System.Windows.Forms.MenuStrip();
this.MenuItemBasic = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportBasicRules = new System.Windows.Forms.ToolStripMenuItem();
this.tabNormal = new System.Windows.Forms.TabControl();
this.tabPageProxy = new System.Windows.Forms.TabPage();
this.panel5 = new System.Windows.Forms.Panel();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.txtProxyIp = new System.Windows.Forms.TextBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.txtProxyDomain = new System.Windows.Forms.TextBox();
this.tabPageDirect = new System.Windows.Forms.TabPage();
this.panel4 = new System.Windows.Forms.Panel();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.txtDirectIp = new System.Windows.Forms.TextBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.txtDirectDomain = new System.Windows.Forms.TextBox();
this.tabPageBlock = new System.Windows.Forms.TabPage();
this.panel3 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtBlockIp = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtBlockDomain = new System.Windows.Forms.TextBox();
this.tabPageRuleList = new System.Windows.Forms.TabPage();
this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.cmsLv.SuspendLayout();
this.menuServer.SuspendLayout();
this.tabNormal.SuspendLayout();
this.tabPageProxy.SuspendLayout();
this.panel5.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout();
this.tabPageDirect.SuspendLayout();
this.panel4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.tabPageBlock.SuspendLayout();
this.panel3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.tabPageRuleList.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.labRoutingTips);
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
this.panel2.Name = "panel2";
//
// labRoutingTips
//
resources.ApplyResources(this.labRoutingTips, "labRoutingTips");
this.labRoutingTips.ForeColor = System.Drawing.Color.Brown;
this.labRoutingTips.Name = "labRoutingTips";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.cmbdomainMatcher);
this.panel1.Controls.Add(this.label6);
this.panel1.Controls.Add(this.chkenableRoutingAdvanced);
this.panel1.Controls.Add(this.linkLabelRoutingDoc);
this.panel1.Controls.Add(this.cmbdomainStrategy);
this.panel1.Name = "panel1";
//
// cmbdomainMatcher
//
resources.ApplyResources(this.cmbdomainMatcher, "cmbdomainMatcher");
this.cmbdomainMatcher.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbdomainMatcher.FormattingEnabled = true;
this.cmbdomainMatcher.Items.AddRange(new object[] {
resources.GetString("cmbdomainMatcher.Items"),
resources.GetString("cmbdomainMatcher.Items1")});
this.cmbdomainMatcher.Name = "cmbdomainMatcher";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// chkenableRoutingAdvanced
//
resources.ApplyResources(this.chkenableRoutingAdvanced, "chkenableRoutingAdvanced");
this.chkenableRoutingAdvanced.Name = "chkenableRoutingAdvanced";
this.chkenableRoutingAdvanced.UseVisualStyleBackColor = true;
this.chkenableRoutingAdvanced.CheckedChanged += new System.EventHandler(this.chkenableRoutingAdvanced_CheckedChanged_1);
//
// linkLabelRoutingDoc
//
resources.ApplyResources(this.linkLabelRoutingDoc, "linkLabelRoutingDoc");
this.linkLabelRoutingDoc.Name = "linkLabelRoutingDoc";
this.linkLabelRoutingDoc.TabStop = true;
this.linkLabelRoutingDoc.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelRoutingDoc_LinkClicked);
//
// cmbdomainStrategy
//
resources.ApplyResources(this.cmbdomainStrategy, "cmbdomainStrategy");
this.cmbdomainStrategy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbdomainStrategy.FormattingEnabled = true;
this.cmbdomainStrategy.Items.AddRange(new object[] {
resources.GetString("cmbdomainStrategy.Items"),
resources.GetString("cmbdomainStrategy.Items1"),
resources.GetString("cmbdomainStrategy.Items2")});
this.cmbdomainStrategy.Name = "cmbdomainStrategy";
//
// cmsLv
//
resources.ApplyResources(this.cmsLv, "cmsLv");
this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuAdd,
this.menuRemove,
this.menuSelectAll,
this.menuSetDefaultRouting});
this.cmsLv.Name = "cmsLv";
this.cmsLv.OwnerItem = this.MenuItemAdvanced;
//
// menuAdd
//
resources.ApplyResources(this.menuAdd, "menuAdd");
this.menuAdd.Name = "menuAdd";
this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
//
// menuRemove
//
resources.ApplyResources(this.menuRemove, "menuRemove");
this.menuRemove.Name = "menuRemove";
this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
//
// menuSelectAll
//
resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
this.menuSelectAll.Name = "menuSelectAll";
this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
//
// menuSetDefaultRouting
//
resources.ApplyResources(this.menuSetDefaultRouting, "menuSetDefaultRouting");
this.menuSetDefaultRouting.Name = "menuSetDefaultRouting";
this.menuSetDefaultRouting.Click += new System.EventHandler(this.menuSetDefaultRouting_Click);
//
// MenuItemAdvanced
//
resources.ApplyResources(this.MenuItemAdvanced, "MenuItemAdvanced");
this.MenuItemAdvanced.DropDown = this.cmsLv;
this.MenuItemAdvanced.Name = "MenuItemAdvanced";
//
// menuServer
//
resources.ApplyResources(this.menuServer, "menuServer");
this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItemBasic,
this.MenuItemAdvanced});
this.menuServer.Name = "menuServer";
//
// MenuItemBasic
//
resources.ApplyResources(this.MenuItemBasic, "MenuItemBasic");
this.MenuItemBasic.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuImportBasicRules});
this.MenuItemBasic.Name = "MenuItemBasic";
//
// menuImportBasicRules
//
resources.ApplyResources(this.menuImportBasicRules, "menuImportBasicRules");
this.menuImportBasicRules.Name = "menuImportBasicRules";
this.menuImportBasicRules.Click += new System.EventHandler(this.menuImportBasicRules_Click);
//
// tabNormal
//
resources.ApplyResources(this.tabNormal, "tabNormal");
this.tabNormal.Controls.Add(this.tabPageProxy);
this.tabNormal.Controls.Add(this.tabPageDirect);
this.tabNormal.Controls.Add(this.tabPageBlock);
this.tabNormal.Controls.Add(this.tabPageRuleList);
this.tabNormal.Name = "tabNormal";
this.tabNormal.SelectedIndex = 0;
this.tabNormal.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabNormal_Selecting);
//
// tabPageProxy
//
resources.ApplyResources(this.tabPageProxy, "tabPageProxy");
this.tabPageProxy.Controls.Add(this.panel5);
this.tabPageProxy.Name = "tabPageProxy";
this.tabPageProxy.UseVisualStyleBackColor = true;
//
// panel5
//
resources.ApplyResources(this.panel5, "panel5");
this.panel5.Controls.Add(this.groupBox5);
this.panel5.Controls.Add(this.groupBox6);
this.panel5.Name = "panel5";
//
// groupBox5
//
resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.Controls.Add(this.txtProxyIp);
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// txtProxyIp
//
resources.ApplyResources(this.txtProxyIp, "txtProxyIp");
this.txtProxyIp.Name = "txtProxyIp";
//
// groupBox6
//
resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Controls.Add(this.txtProxyDomain);
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// txtProxyDomain
//
resources.ApplyResources(this.txtProxyDomain, "txtProxyDomain");
this.txtProxyDomain.Name = "txtProxyDomain";
//
// tabPageDirect
//
resources.ApplyResources(this.tabPageDirect, "tabPageDirect");
this.tabPageDirect.Controls.Add(this.panel4);
this.tabPageDirect.Name = "tabPageDirect";
this.tabPageDirect.UseVisualStyleBackColor = true;
//
// panel4
//
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Controls.Add(this.groupBox3);
this.panel4.Controls.Add(this.groupBox4);
this.panel4.Name = "panel4";
//
// groupBox3
//
resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Controls.Add(this.txtDirectIp);
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// txtDirectIp
//
resources.ApplyResources(this.txtDirectIp, "txtDirectIp");
this.txtDirectIp.Name = "txtDirectIp";
//
// groupBox4
//
resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Controls.Add(this.txtDirectDomain);
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// txtDirectDomain
//
resources.ApplyResources(this.txtDirectDomain, "txtDirectDomain");
this.txtDirectDomain.Name = "txtDirectDomain";
//
// tabPageBlock
//
resources.ApplyResources(this.tabPageBlock, "tabPageBlock");
this.tabPageBlock.Controls.Add(this.panel3);
this.tabPageBlock.Name = "tabPageBlock";
this.tabPageBlock.UseVisualStyleBackColor = true;
//
// panel3
//
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.groupBox2);
this.panel3.Controls.Add(this.groupBox1);
this.panel3.Name = "panel3";
//
// groupBox2
//
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.txtBlockIp);
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtBlockIp
//
resources.ApplyResources(this.txtBlockIp, "txtBlockIp");
this.txtBlockIp.Name = "txtBlockIp";
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtBlockDomain);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtBlockDomain
//
resources.ApplyResources(this.txtBlockDomain, "txtBlockDomain");
this.txtBlockDomain.Name = "txtBlockDomain";
//
// tabPageRuleList
//
resources.ApplyResources(this.tabPageRuleList, "tabPageRuleList");
this.tabPageRuleList.Controls.Add(this.lvRoutings);
this.tabPageRuleList.Name = "tabPageRuleList";
this.tabPageRuleList.UseVisualStyleBackColor = true;
//
// lvRoutings
//
resources.ApplyResources(this.lvRoutings, "lvRoutings");
this.lvRoutings.ContextMenuStrip = this.cmsLv;
this.lvRoutings.FullRowSelect = true;
this.lvRoutings.GridLines = true;
this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvRoutings.HideSelection = false;
this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
this.lvRoutings.MultiSelect = false;
this.lvRoutings.Name = "lvRoutings";
this.lvRoutings.UseCompatibleStateImageBehavior = false;
this.lvRoutings.View = System.Windows.Forms.View.Details;
this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
//
// RoutingSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.tabNormal);
this.Controls.Add(this.panel1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.menuServer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "RoutingSettingForm";
this.Load += new System.EventHandler(this.RoutingSettingForm_Load);
this.panel2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.cmsLv.ResumeLayout(false);
this.menuServer.ResumeLayout(false);
this.menuServer.PerformLayout();
this.tabNormal.ResumeLayout(false);
this.tabPageProxy.ResumeLayout(false);
this.panel5.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.tabPageDirect.ResumeLayout(false);
this.panel4.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.tabPageBlock.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabPageRuleList.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RoutingSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.labRoutingTips = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.panel1 = new System.Windows.Forms.Panel();
this.cmbdomainMatcher = new System.Windows.Forms.ComboBox();
this.label6 = new System.Windows.Forms.Label();
this.chkenableRoutingAdvanced = new System.Windows.Forms.CheckBox();
this.linkLabelRoutingDoc = new System.Windows.Forms.LinkLabel();
this.cmbdomainStrategy = new System.Windows.Forms.ComboBox();
this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
this.menuSetDefaultRouting = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItemAdvanced = new System.Windows.Forms.ToolStripMenuItem();
this.menuServer = new System.Windows.Forms.MenuStrip();
this.MenuItemBasic = new System.Windows.Forms.ToolStripMenuItem();
this.menuImportBasicRules = new System.Windows.Forms.ToolStripMenuItem();
this.tabNormal = new System.Windows.Forms.TabControl();
this.tabPageProxy = new System.Windows.Forms.TabPage();
this.panel5 = new System.Windows.Forms.Panel();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.txtProxyIp = new System.Windows.Forms.TextBox();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.txtProxyDomain = new System.Windows.Forms.TextBox();
this.tabPageDirect = new System.Windows.Forms.TabPage();
this.panel4 = new System.Windows.Forms.Panel();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.txtDirectIp = new System.Windows.Forms.TextBox();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.txtDirectDomain = new System.Windows.Forms.TextBox();
this.tabPageBlock = new System.Windows.Forms.TabPage();
this.panel3 = new System.Windows.Forms.Panel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtBlockIp = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtBlockDomain = new System.Windows.Forms.TextBox();
this.tabPageRuleList = new System.Windows.Forms.TabPage();
this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
this.panel2.SuspendLayout();
this.panel1.SuspendLayout();
this.cmsLv.SuspendLayout();
this.menuServer.SuspendLayout();
this.tabNormal.SuspendLayout();
this.tabPageProxy.SuspendLayout();
this.panel5.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout();
this.tabPageDirect.SuspendLayout();
this.panel4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.tabPageBlock.SuspendLayout();
this.panel3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.tabPageRuleList.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panel2
//
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Controls.Add(this.labRoutingTips);
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
this.panel2.Name = "panel2";
//
// labRoutingTips
//
resources.ApplyResources(this.labRoutingTips, "labRoutingTips");
this.labRoutingTips.ForeColor = System.Drawing.Color.Brown;
this.labRoutingTips.Name = "labRoutingTips";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.Controls.Add(this.cmbdomainMatcher);
this.panel1.Controls.Add(this.label6);
this.panel1.Controls.Add(this.chkenableRoutingAdvanced);
this.panel1.Controls.Add(this.linkLabelRoutingDoc);
this.panel1.Controls.Add(this.cmbdomainStrategy);
this.panel1.Name = "panel1";
//
// cmbdomainMatcher
//
resources.ApplyResources(this.cmbdomainMatcher, "cmbdomainMatcher");
this.cmbdomainMatcher.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbdomainMatcher.FormattingEnabled = true;
this.cmbdomainMatcher.Items.AddRange(new object[] {
resources.GetString("cmbdomainMatcher.Items"),
resources.GetString("cmbdomainMatcher.Items1")});
this.cmbdomainMatcher.Name = "cmbdomainMatcher";
//
// label6
//
resources.ApplyResources(this.label6, "label6");
this.label6.Name = "label6";
//
// chkenableRoutingAdvanced
//
resources.ApplyResources(this.chkenableRoutingAdvanced, "chkenableRoutingAdvanced");
this.chkenableRoutingAdvanced.Name = "chkenableRoutingAdvanced";
this.chkenableRoutingAdvanced.UseVisualStyleBackColor = true;
this.chkenableRoutingAdvanced.CheckedChanged += new System.EventHandler(this.chkenableRoutingAdvanced_CheckedChanged_1);
//
// linkLabelRoutingDoc
//
resources.ApplyResources(this.linkLabelRoutingDoc, "linkLabelRoutingDoc");
this.linkLabelRoutingDoc.Name = "linkLabelRoutingDoc";
this.linkLabelRoutingDoc.TabStop = true;
this.linkLabelRoutingDoc.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelRoutingDoc_LinkClicked);
//
// cmbdomainStrategy
//
resources.ApplyResources(this.cmbdomainStrategy, "cmbdomainStrategy");
this.cmbdomainStrategy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbdomainStrategy.FormattingEnabled = true;
this.cmbdomainStrategy.Items.AddRange(new object[] {
resources.GetString("cmbdomainStrategy.Items"),
resources.GetString("cmbdomainStrategy.Items1"),
resources.GetString("cmbdomainStrategy.Items2")});
this.cmbdomainStrategy.Name = "cmbdomainStrategy";
//
// cmsLv
//
resources.ApplyResources(this.cmsLv, "cmsLv");
this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuAdd,
this.menuRemove,
this.menuSelectAll,
this.menuSetDefaultRouting});
this.cmsLv.Name = "cmsLv";
this.cmsLv.OwnerItem = this.MenuItemAdvanced;
//
// menuAdd
//
resources.ApplyResources(this.menuAdd, "menuAdd");
this.menuAdd.Name = "menuAdd";
this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
//
// menuRemove
//
resources.ApplyResources(this.menuRemove, "menuRemove");
this.menuRemove.Name = "menuRemove";
this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
//
// menuSelectAll
//
resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
this.menuSelectAll.Name = "menuSelectAll";
this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
//
// menuSetDefaultRouting
//
resources.ApplyResources(this.menuSetDefaultRouting, "menuSetDefaultRouting");
this.menuSetDefaultRouting.Name = "menuSetDefaultRouting";
this.menuSetDefaultRouting.Click += new System.EventHandler(this.menuSetDefaultRouting_Click);
//
// MenuItemAdvanced
//
resources.ApplyResources(this.MenuItemAdvanced, "MenuItemAdvanced");
this.MenuItemAdvanced.DropDown = this.cmsLv;
this.MenuItemAdvanced.Name = "MenuItemAdvanced";
//
// menuServer
//
resources.ApplyResources(this.menuServer, "menuServer");
this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItemBasic,
this.MenuItemAdvanced});
this.menuServer.Name = "menuServer";
//
// MenuItemBasic
//
resources.ApplyResources(this.MenuItemBasic, "MenuItemBasic");
this.MenuItemBasic.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuImportBasicRules});
this.MenuItemBasic.Name = "MenuItemBasic";
//
// menuImportBasicRules
//
resources.ApplyResources(this.menuImportBasicRules, "menuImportBasicRules");
this.menuImportBasicRules.Name = "menuImportBasicRules";
this.menuImportBasicRules.Click += new System.EventHandler(this.menuImportBasicRules_Click);
//
// tabNormal
//
resources.ApplyResources(this.tabNormal, "tabNormal");
this.tabNormal.Controls.Add(this.tabPageProxy);
this.tabNormal.Controls.Add(this.tabPageDirect);
this.tabNormal.Controls.Add(this.tabPageBlock);
this.tabNormal.Controls.Add(this.tabPageRuleList);
this.tabNormal.Name = "tabNormal";
this.tabNormal.SelectedIndex = 0;
this.tabNormal.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabNormal_Selecting);
//
// tabPageProxy
//
resources.ApplyResources(this.tabPageProxy, "tabPageProxy");
this.tabPageProxy.Controls.Add(this.panel5);
this.tabPageProxy.Name = "tabPageProxy";
this.tabPageProxy.UseVisualStyleBackColor = true;
//
// panel5
//
resources.ApplyResources(this.panel5, "panel5");
this.panel5.Controls.Add(this.groupBox5);
this.panel5.Controls.Add(this.groupBox6);
this.panel5.Name = "panel5";
//
// groupBox5
//
resources.ApplyResources(this.groupBox5, "groupBox5");
this.groupBox5.Controls.Add(this.txtProxyIp);
this.groupBox5.Name = "groupBox5";
this.groupBox5.TabStop = false;
//
// txtProxyIp
//
resources.ApplyResources(this.txtProxyIp, "txtProxyIp");
this.txtProxyIp.Name = "txtProxyIp";
//
// groupBox6
//
resources.ApplyResources(this.groupBox6, "groupBox6");
this.groupBox6.Controls.Add(this.txtProxyDomain);
this.groupBox6.Name = "groupBox6";
this.groupBox6.TabStop = false;
//
// txtProxyDomain
//
resources.ApplyResources(this.txtProxyDomain, "txtProxyDomain");
this.txtProxyDomain.Name = "txtProxyDomain";
//
// tabPageDirect
//
resources.ApplyResources(this.tabPageDirect, "tabPageDirect");
this.tabPageDirect.Controls.Add(this.panel4);
this.tabPageDirect.Name = "tabPageDirect";
this.tabPageDirect.UseVisualStyleBackColor = true;
//
// panel4
//
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Controls.Add(this.groupBox3);
this.panel4.Controls.Add(this.groupBox4);
this.panel4.Name = "panel4";
//
// groupBox3
//
resources.ApplyResources(this.groupBox3, "groupBox3");
this.groupBox3.Controls.Add(this.txtDirectIp);
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
//
// txtDirectIp
//
resources.ApplyResources(this.txtDirectIp, "txtDirectIp");
this.txtDirectIp.Name = "txtDirectIp";
//
// groupBox4
//
resources.ApplyResources(this.groupBox4, "groupBox4");
this.groupBox4.Controls.Add(this.txtDirectDomain);
this.groupBox4.Name = "groupBox4";
this.groupBox4.TabStop = false;
//
// txtDirectDomain
//
resources.ApplyResources(this.txtDirectDomain, "txtDirectDomain");
this.txtDirectDomain.Name = "txtDirectDomain";
//
// tabPageBlock
//
resources.ApplyResources(this.tabPageBlock, "tabPageBlock");
this.tabPageBlock.Controls.Add(this.panel3);
this.tabPageBlock.Name = "tabPageBlock";
this.tabPageBlock.UseVisualStyleBackColor = true;
//
// panel3
//
resources.ApplyResources(this.panel3, "panel3");
this.panel3.Controls.Add(this.groupBox2);
this.panel3.Controls.Add(this.groupBox1);
this.panel3.Name = "panel3";
//
// groupBox2
//
resources.ApplyResources(this.groupBox2, "groupBox2");
this.groupBox2.Controls.Add(this.txtBlockIp);
this.groupBox2.Name = "groupBox2";
this.groupBox2.TabStop = false;
//
// txtBlockIp
//
resources.ApplyResources(this.txtBlockIp, "txtBlockIp");
this.txtBlockIp.Name = "txtBlockIp";
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.txtBlockDomain);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// txtBlockDomain
//
resources.ApplyResources(this.txtBlockDomain, "txtBlockDomain");
this.txtBlockDomain.Name = "txtBlockDomain";
//
// tabPageRuleList
//
resources.ApplyResources(this.tabPageRuleList, "tabPageRuleList");
this.tabPageRuleList.Controls.Add(this.lvRoutings);
this.tabPageRuleList.Name = "tabPageRuleList";
this.tabPageRuleList.UseVisualStyleBackColor = true;
//
// lvRoutings
//
resources.ApplyResources(this.lvRoutings, "lvRoutings");
this.lvRoutings.ContextMenuStrip = this.cmsLv;
this.lvRoutings.FullRowSelect = true;
this.lvRoutings.GridLines = true;
this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lvRoutings.HideSelection = false;
this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
this.lvRoutings.MultiSelect = false;
this.lvRoutings.Name = "lvRoutings";
this.lvRoutings.UseCompatibleStateImageBehavior = false;
this.lvRoutings.View = System.Windows.Forms.View.Details;
this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
//
// RoutingSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.tabNormal);
this.Controls.Add(this.panel1);
this.Controls.Add(this.panel2);
this.Controls.Add(this.menuServer);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "RoutingSettingForm";
this.Load += new System.EventHandler(this.RoutingSettingForm_Load);
this.panel2.ResumeLayout(false);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.cmsLv.ResumeLayout(false);
this.menuServer.ResumeLayout(false);
this.menuServer.PerformLayout();
this.tabNormal.ResumeLayout(false);
this.tabPageProxy.ResumeLayout(false);
this.panel5.ResumeLayout(false);
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.tabPageDirect.ResumeLayout(false);
this.panel4.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.tabPageBlock.ResumeLayout(false);
this.panel3.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabPageRuleList.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RoutingSubSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingSubSettingForm));
this.panel2 = new System.Windows.Forms.Panel();
this.btnClose = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panCon = new System.Windows.Forms.Panel();
this.txtUrl = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.panel2.SuspendLayout();
this.panCon.SuspendLayout();
this.SuspendLayout();
//
// panel2
//
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// panCon
//
resources.ApplyResources(this.panCon, "panCon");
this.panCon.Controls.Add(this.txtUrl);
this.panCon.Controls.Add(this.label3);
this.panCon.Name = "panCon";
//
// txtUrl
//
resources.ApplyResources(this.txtUrl, "txtUrl");
this.txtUrl.Name = "txtUrl";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// RoutingSubSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.panCon);
this.Controls.Add(this.panel2);
this.Name = "RoutingSubSettingForm";
this.Load += new System.EventHandler(this.RoutingSubSettingForm_Load);
this.panel2.ResumeLayout(false);
this.panCon.ResumeLayout(false);
this.panCon.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : SubSettingControl.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubSettingControl));
this.grbMain = new System.Windows.Forms.GroupBox();
this.btnShare = new System.Windows.Forms.Button();
this.chkEnabled = new System.Windows.Forms.CheckBox();
this.btnRemove = new System.Windows.Forms.Button();
this.txtUrl = new System.Windows.Forms.TextBox();
this.txtRemarks = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.picQRCode = new System.Windows.Forms.PictureBox();
this.grbMain.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picQRCode)).BeginInit();
this.SuspendLayout();
//
// grbMain
//
this.grbMain.Controls.Add(this.btnShare);
this.grbMain.Controls.Add(this.chkEnabled);
this.grbMain.Controls.Add(this.btnRemove);
this.grbMain.Controls.Add(this.txtUrl);
this.grbMain.Controls.Add(this.txtRemarks);
this.grbMain.Controls.Add(this.label2);
this.grbMain.Controls.Add(this.label3);
resources.ApplyResources(this.grbMain, "grbMain");
this.grbMain.Name = "grbMain";
this.grbMain.TabStop = false;
//
// btnShare
//
resources.ApplyResources(this.btnShare, "btnShare");
this.btnShare.Name = "btnShare";
this.btnShare.UseVisualStyleBackColor = true;
this.btnShare.Click += new System.EventHandler(this.btnShare_Click);
//
// chkEnabled
//
resources.ApplyResources(this.chkEnabled, "chkEnabled");
this.chkEnabled.Name = "chkEnabled";
this.chkEnabled.UseVisualStyleBackColor = true;
this.chkEnabled.Leave += new System.EventHandler(this.txtRemarks_Leave);
//
// btnRemove
//
resources.ApplyResources(this.btnRemove, "btnRemove");
this.btnRemove.Name = "btnRemove";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
//
// txtUrl
//
resources.ApplyResources(this.txtUrl, "txtUrl");
this.txtUrl.Name = "txtUrl";
this.txtUrl.Leave += new System.EventHandler(this.txtRemarks_Leave);
//
// txtRemarks
//
resources.ApplyResources(this.txtRemarks, "txtRemarks");
this.txtRemarks.Name = "txtRemarks";
this.txtRemarks.Leave += new System.EventHandler(this.txtRemarks_Leave);
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// picQRCode
//
resources.ApplyResources(this.picQRCode, "picQRCode");
this.picQRCode.Name = "picQRCode";
this.picQRCode.TabStop = false;
//
// SubSettingControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.picQRCode);
this.Controls.Add(this.grbMain);
this.Name = "SubSettingControl";
this.Load += new System.EventHandler(this.SubSettingControl_Load);
this.grbMain.ResumeLayout(false);
this.grbMain.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picQRCode)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : SubSettingForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : 2dust
License : GNU General Public License v3.0
Project Creator : 2dust
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubSettingForm));
this.btnClose = new System.Windows.Forms.Button();
this.panCon = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.btnAdd = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.panel2.SuspendLayout();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// panCon
//
resources.ApplyResources(this.panCon, "panCon");
this.panCon.Name = "panCon";
//
// panel2
//
this.panel2.Controls.Add(this.btnAdd);
this.panel2.Controls.Add(this.btnClose);
this.panel2.Controls.Add(this.btnOK);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// btnAdd
//
resources.ApplyResources(this.btnAdd, "btnAdd");
this.btnAdd.Name = "btnAdd";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
this.btnOK.Name = "btnOK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// SubSettingForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnClose;
this.Controls.Add(this.panCon);
this.Controls.Add(this.panel2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "SubSettingForm";
this.Load += new System.EventHandler(this.SubSettingForm_Load);
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : dlgAddVM.Designer.cs
License : MIT License
Project Creator : 86Box
License : MIT License
Project Creator : 86Box
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.cbxOpenCFG = new System.Windows.Forms.CheckBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.lblName = new System.Windows.Forms.Label();
this.lblDesc = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.txtDescription = new System.Windows.Forms.TextBox();
this.lblPath1 = new System.Windows.Forms.Label();
this.lblPath = new System.Windows.Forms.Label();
this.tipLblPath1 = new System.Windows.Forms.ToolTip(this.components);
this.cbxStartVM = new System.Windows.Forms.CheckBox();
this.pnlBottom = new System.Windows.Forms.Panel();
this.tipTxtName = new System.Windows.Forms.ToolTip(this.components);
this.txtImportPath = new System.Windows.Forms.TextBox();
this.cbxImport = new System.Windows.Forms.CheckBox();
this.btnBrowse = new System.Windows.Forms.Button();
this.pnlBottom.SuspendLayout();
this.SuspendLayout();
//
// cbxOpenCFG
//
this.cbxOpenCFG.AutoSize = true;
this.cbxOpenCFG.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cbxOpenCFG.Location = new System.Drawing.Point(235, 177);
this.cbxOpenCFG.Margin = new System.Windows.Forms.Padding(2);
this.cbxOpenCFG.Name = "cbxOpenCFG";
this.cbxOpenCFG.Size = new System.Drawing.Size(247, 24);
this.cbxOpenCFG.TabIndex = 6;
this.cbxOpenCFG.Text = "Configure this virtual machine now";
this.cbxOpenCFG.UseVisualStyleBackColor = true;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnCancel.Location = new System.Drawing.Point(508, 11);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(65, 30);
this.btnCancel.TabIndex = 8;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnAdd
//
this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnAdd.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnAdd.Enabled = false;
this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnAdd.Location = new System.Drawing.Point(439, 11);
this.btnAdd.Margin = new System.Windows.Forms.Padding(2);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(65, 30);
this.btnAdd.TabIndex = 7;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(11, 79);
this.lblName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(48, 19);
this.lblName.TabIndex = 8;
this.lblName.Text = "Name:";
//
// lblDesc
//
this.lblDesc.AutoSize = true;
this.lblDesc.Location = new System.Drawing.Point(11, 113);
this.lblDesc.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblDesc.Name = "lblDesc";
this.lblDesc.Size = new System.Drawing.Size(81, 19);
this.lblDesc.TabIndex = 9;
this.lblDesc.Text = "Description:";
//
// txtName
//
this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtName.Location = new System.Drawing.Point(96, 76);
this.txtName.Margin = new System.Windows.Forms.Padding(2);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(477, 25);
this.txtName.TabIndex = 3;
this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// txtDescription
//
this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtDescription.Location = new System.Drawing.Point(96, 110);
this.txtDescription.Margin = new System.Windows.Forms.Padding(2);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(477, 25);
this.txtDescription.TabIndex = 4;
//
// lblPath1
//
this.lblPath1.AutoEllipsis = true;
this.lblPath1.Location = new System.Drawing.Point(55, 146);
this.lblPath1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblPath1.MaximumSize = new System.Drawing.Size(429, 17);
this.lblPath1.Name = "lblPath1";
this.lblPath1.Size = new System.Drawing.Size(429, 17);
this.lblPath1.TabIndex = 12;
this.lblPath1.Text = "<path goes here>";
//
// lblPath
//
this.lblPath.AutoSize = true;
this.lblPath.Location = new System.Drawing.Point(11, 146);
this.lblPath.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblPath.Name = "lblPath";
this.lblPath.Size = new System.Drawing.Size(40, 19);
this.lblPath.TabIndex = 13;
this.lblPath.Text = "Path:";
//
// cbxStartVM
//
this.cbxStartVM.AutoSize = true;
this.cbxStartVM.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cbxStartVM.Location = new System.Drawing.Point(15, 177);
this.cbxStartVM.Margin = new System.Windows.Forms.Padding(2);
this.cbxStartVM.Name = "cbxStartVM";
this.cbxStartVM.Size = new System.Drawing.Size(216, 24);
this.cbxStartVM.TabIndex = 5;
this.cbxStartVM.Text = "Start this virtual machine now";
this.cbxStartVM.UseVisualStyleBackColor = true;
//
// pnlBottom
//
this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
this.pnlBottom.Controls.Add(this.btnCancel);
this.pnlBottom.Controls.Add(this.btnAdd);
this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlBottom.Location = new System.Drawing.Point(0, 211);
this.pnlBottom.Margin = new System.Windows.Forms.Padding(2);
this.pnlBottom.Name = "pnlBottom";
this.pnlBottom.Size = new System.Drawing.Size(584, 52);
this.pnlBottom.TabIndex = 15;
//
// tipTxtName
//
this.tipTxtName.Active = false;
this.tipTxtName.AutomaticDelay = 0;
this.tipTxtName.IsBalloon = true;
this.tipTxtName.ShowAlways = true;
this.tipTxtName.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Error;
this.tipTxtName.ToolTipreplacedle = "Name contains invalid characters";
//
// txtImportPath
//
this.txtImportPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtImportPath.Enabled = false;
this.txtImportPath.Location = new System.Drawing.Point(15, 40);
this.txtImportPath.Margin = new System.Windows.Forms.Padding(2);
this.txtImportPath.Name = "txtImportPath";
this.txtImportPath.Size = new System.Drawing.Size(484, 25);
this.txtImportPath.TabIndex = 1;
//
// cbxImport
//
this.cbxImport.AutoSize = true;
this.cbxImport.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cbxImport.Location = new System.Drawing.Point(15, 12);
this.cbxImport.Name = "cbxImport";
this.cbxImport.Size = new System.Drawing.Size(165, 24);
this.cbxImport.TabIndex = 0;
this.cbxImport.Text = "Import VM files from:";
this.cbxImport.UseVisualStyleBackColor = true;
this.cbxImport.CheckedChanged += new System.EventHandler(this.cbxImport_CheckedChanged);
//
// btnBrowse
//
this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnBrowse.Enabled = false;
this.btnBrowse.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnBrowse.Location = new System.Drawing.Point(503, 37);
this.btnBrowse.Margin = new System.Windows.Forms.Padding(2);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(70, 30);
this.btnBrowse.TabIndex = 2;
this.btnBrowse.Text = "Browse...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// dlgAddVM
//
this.AcceptButton = this.btnAdd;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(584, 263);
this.Controls.Add(this.txtImportPath);
this.Controls.Add(this.cbxImport);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.pnlBottom);
this.Controls.Add(this.cbxStartVM);
this.Controls.Add(this.cbxOpenCFG);
this.Controls.Add(this.lblPath);
this.Controls.Add(this.lblPath1);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lblDesc);
this.Controls.Add(this.lblName);
this.Font = new System.Drawing.Font("Segoe UI", 10F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "dlgAddVM";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Add a virtual machine";
this.Load += new System.EventHandler(this.dlgAddVM_Load);
this.pnlBottom.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : dlgCloneVM.Designer.cs
License : MIT License
Project Creator : 86Box
License : MIT License
Project Creator : 86Box
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.lblPath = new System.Windows.Forms.Label();
this.lblPath1 = new System.Windows.Forms.Label();
this.txtDescription = new System.Windows.Forms.TextBox();
this.txtName = new System.Windows.Forms.TextBox();
this.lblDesc = new System.Windows.Forms.Label();
this.lblName = new System.Windows.Forms.Label();
this.pnlBottom = new System.Windows.Forms.Panel();
this.btnCancel = new System.Windows.Forms.Button();
this.btnClone = new System.Windows.Forms.Button();
this.cbxStartVM = new System.Windows.Forms.CheckBox();
this.cbxOpenCFG = new System.Windows.Forms.CheckBox();
this.lblOldVM = new System.Windows.Forms.Label();
this.tipLblPath1 = new System.Windows.Forms.ToolTip(this.components);
this.tipTxtName = new System.Windows.Forms.ToolTip(this.components);
this.pnlBottom.SuspendLayout();
this.SuspendLayout();
//
// lblPath
//
this.lblPath.AutoSize = true;
this.lblPath.Location = new System.Drawing.Point(11, 119);
this.lblPath.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblPath.Name = "lblPath";
this.lblPath.Size = new System.Drawing.Size(40, 19);
this.lblPath.TabIndex = 19;
this.lblPath.Text = "Path:";
//
// lblPath1
//
this.lblPath1.AutoEllipsis = true;
this.lblPath1.Location = new System.Drawing.Point(55, 119);
this.lblPath1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblPath1.MaximumSize = new System.Drawing.Size(429, 17);
this.lblPath1.Name = "lblPath1";
this.lblPath1.Size = new System.Drawing.Size(429, 17);
this.lblPath1.TabIndex = 18;
this.lblPath1.Text = "<path goes here>";
//
// txtDescription
//
this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtDescription.Location = new System.Drawing.Point(96, 83);
this.txtDescription.Margin = new System.Windows.Forms.Padding(2);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(477, 25);
this.txtDescription.TabIndex = 1;
//
// txtName
//
this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtName.Location = new System.Drawing.Point(96, 49);
this.txtName.Margin = new System.Windows.Forms.Padding(2);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(477, 25);
this.txtName.TabIndex = 0;
this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
//
// lblDesc
//
this.lblDesc.AutoSize = true;
this.lblDesc.Location = new System.Drawing.Point(11, 86);
this.lblDesc.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblDesc.Name = "lblDesc";
this.lblDesc.Size = new System.Drawing.Size(81, 19);
this.lblDesc.TabIndex = 17;
this.lblDesc.Text = "Description:";
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(11, 52);
this.lblName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(48, 19);
this.lblName.TabIndex = 16;
this.lblName.Text = "Name:";
//
// pnlBottom
//
this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
this.pnlBottom.Controls.Add(this.btnCancel);
this.pnlBottom.Controls.Add(this.btnClone);
this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
this.pnlBottom.Location = new System.Drawing.Point(0, 188);
this.pnlBottom.Margin = new System.Windows.Forms.Padding(2);
this.pnlBottom.Name = "pnlBottom";
this.pnlBottom.Size = new System.Drawing.Size(584, 52);
this.pnlBottom.TabIndex = 22;
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnCancel.Location = new System.Drawing.Point(508, 11);
this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(65, 30);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnClone
//
this.btnClone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClone.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnClone.Enabled = false;
this.btnClone.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnClone.Location = new System.Drawing.Point(439, 11);
this.btnClone.Margin = new System.Windows.Forms.Padding(2);
this.btnClone.Name = "btnClone";
this.btnClone.Size = new System.Drawing.Size(65, 30);
this.btnClone.TabIndex = 4;
this.btnClone.Text = "Clone";
this.btnClone.UseVisualStyleBackColor = true;
this.btnClone.Click += new System.EventHandler(this.btnClone_Click);
//
// cbxStartVM
//
this.cbxStartVM.AutoSize = true;
this.cbxStartVM.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cbxStartVM.Location = new System.Drawing.Point(15, 150);
this.cbxStartVM.Margin = new System.Windows.Forms.Padding(2);
this.cbxStartVM.Name = "cbxStartVM";
this.cbxStartVM.Size = new System.Drawing.Size(216, 24);
this.cbxStartVM.TabIndex = 2;
this.cbxStartVM.Text = "Start this virtual machine now";
this.cbxStartVM.UseVisualStyleBackColor = true;
//
// cbxOpenCFG
//
this.cbxOpenCFG.AutoSize = true;
this.cbxOpenCFG.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.cbxOpenCFG.Location = new System.Drawing.Point(235, 150);
this.cbxOpenCFG.Margin = new System.Windows.Forms.Padding(2);
this.cbxOpenCFG.Name = "cbxOpenCFG";
this.cbxOpenCFG.Size = new System.Drawing.Size(247, 24);
this.cbxOpenCFG.TabIndex = 3;
this.cbxOpenCFG.Text = "Configure this virtual machine now";
this.cbxOpenCFG.UseVisualStyleBackColor = true;
//
// lblOldVM
//
this.lblOldVM.AutoSize = true;
this.lblOldVM.Location = new System.Drawing.Point(11, 15);
this.lblOldVM.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.lblOldVM.Name = "lblOldVM";
this.lblOldVM.Size = new System.Drawing.Size(320, 19);
this.lblOldVM.TabIndex = 23;
this.lblOldVM.Text = "Virtual machine \"<name here>\" will be cloned into:";
//
// tipTxtName
//
this.tipTxtName.Active = false;
this.tipTxtName.AutomaticDelay = 0;
this.tipTxtName.IsBalloon = true;
this.tipTxtName.ShowAlways = true;
this.tipTxtName.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Error;
this.tipTxtName.ToolTipreplacedle = "Name contains invalid characters";
//
// dlgCloneVM
//
this.AcceptButton = this.btnClone;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(584, 240);
this.Controls.Add(this.lblOldVM);
this.Controls.Add(this.pnlBottom);
this.Controls.Add(this.cbxStartVM);
this.Controls.Add(this.cbxOpenCFG);
this.Controls.Add(this.lblPath);
this.Controls.Add(this.lblPath1);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lblDesc);
this.Controls.Add(this.lblName);
this.Font = new System.Drawing.Font("Segoe UI", 10F);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "dlgCloneVM";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Clone a virtual machine";
this.Load += new System.EventHandler(this.dlgCloneVM_Load);
this.pnlBottom.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
See More Examples