Here are the examples of the csharp api System.Windows.Forms.ComboBox.ObjectCollection.AddRange(object[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1029 Examples
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 : 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 : 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 : 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 : 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 : 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 : 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 : FrmBrowser.Designer.cs
License : GNU General Public License v3.0
Project Creator : 9vult
License : GNU General Public License v3.0
Project Creator : 9vult
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBrowser));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btnBack = new System.Windows.Forms.ToolStripButton();
this.btnRefresh = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.cmboSource = new System.Windows.Forms.ToolStripComboBox();
this.btnAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.panel1 = new System.Windows.Forms.Panel();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnBack,
this.btnRefresh,
this.toolStripSeparator1,
this.cmboSource,
this.btnAdd,
this.toolStripLabel1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(1627, 33);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// btnBack
//
this.btnBack.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnBack.Image = ((System.Drawing.Image)(resources.GetObject("btnBack.Image")));
this.btnBack.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnBack.Name = "btnBack";
this.btnBack.Size = new System.Drawing.Size(26, 30);
this.btnBack.Text = "〈";
this.btnBack.ToolTipText = "Back";
this.btnBack.Click += new System.EventHandler(this.BtnBack_Click);
//
// btnRefresh
//
this.btnRefresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
this.btnRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnRefresh.Name = "btnRefresh";
this.btnRefresh.Size = new System.Drawing.Size(31, 30);
this.btnRefresh.Text = "↻";
this.btnRefresh.ToolTipText = "Refresh";
this.btnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
//
// cmboSource
//
this.cmboSource.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmboSource.Items.AddRange(new object[] {
"MangaDex",
"KissManga",
"nHentai"});
this.cmboSource.Name = "cmboSource";
this.cmboSource.Size = new System.Drawing.Size(242, 33);
this.cmboSource.SelectedIndexChanged += new System.EventHandler(this.CmboSource_SelectedIndexChanged);
//
// btnAdd
//
this.btnAdd.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.btnAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.btnAdd.Enabled = false;
this.btnAdd.Font = new System.Drawing.Font("Segoe UI Black", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnAdd.Name = "btnAdd";
this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.btnAdd.Size = new System.Drawing.Size(54, 30);
this.btnAdd.Text = "Add";
this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
//
// toolStripLabel1
//
this.toolStripLabel1.ForeColor = System.Drawing.Color.Red;
this.toolStripLabel1.Name = "toolStripLabel1";
this.toolStripLabel1.Size = new System.Drawing.Size(737, 30);
this.toolStripLabel1.Text = "NOTICE: Due to issues with GeckoFX, the WebBrowser control (IE) is being used tem" +
"porarily.";
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 33);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1627, 908);
this.panel1.TabIndex = 1;
//
// FrmBrowser
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1627, 941);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(915, 635);
this.Name = "FrmBrowser";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MikuReader Browser";
this.Load += new System.EventHandler(this.FrmBrowser_Load);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ExportOptions.Designer.cs
License : MIT License
Project Creator : 91Act
License : MIT License
Project Creator : 91Act
private void InitializeComponent()
{
this.includeBox = new System.Windows.Forms.GroupBox();
this.convertDummies = new System.Windows.Forms.CheckBox();
this.embedBox = new System.Windows.Forms.CheckBox();
this.lightsBox = new System.Windows.Forms.CheckBox();
this.camerasBox = new System.Windows.Forms.CheckBox();
this.exportDeformers = new System.Windows.Forms.CheckBox();
this.geometryBox = new System.Windows.Forms.GroupBox();
this.exportColors = new System.Windows.Forms.CheckBox();
this.exportUVs = new System.Windows.Forms.CheckBox();
this.exportTangents = new System.Windows.Forms.CheckBox();
this.exportNormals = new System.Windows.Forms.CheckBox();
this.advancedBox = new System.Windows.Forms.GroupBox();
this.axisLabel = new System.Windows.Forms.Label();
this.upAxis = new System.Windows.Forms.ComboBox();
this.scaleFactor = new System.Windows.Forms.NumericUpDown();
this.scaleLabel = new System.Windows.Forms.Label();
this.fbxOKbutton = new System.Windows.Forms.Button();
this.fbxCancel = new System.Windows.Forms.Button();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.showExpOpt = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.convertfsb = new System.Windows.Forms.CheckBox();
this.panel1 = new System.Windows.Forms.Panel();
this.tojpg = new System.Windows.Forms.RadioButton();
this.topng = new System.Windows.Forms.RadioButton();
this.tobmp = new System.Windows.Forms.RadioButton();
this.converttexture = new System.Windows.Forms.CheckBox();
this.includeBox.SuspendLayout();
this.geometryBox.SuspendLayout();
this.advancedBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.scaleFactor)).BeginInit();
this.groupBox1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// includeBox
//
this.includeBox.AutoSize = true;
this.includeBox.Controls.Add(this.convertDummies);
this.includeBox.Controls.Add(this.embedBox);
this.includeBox.Controls.Add(this.lightsBox);
this.includeBox.Controls.Add(this.camerasBox);
this.includeBox.Controls.Add(this.exportDeformers);
this.includeBox.Controls.Add(this.geometryBox);
this.includeBox.Location = new System.Drawing.Point(16, 15);
this.includeBox.Margin = new System.Windows.Forms.Padding(4);
this.includeBox.Name = "includeBox";
this.includeBox.Padding = new System.Windows.Forms.Padding(4);
this.includeBox.Size = new System.Drawing.Size(332, 334);
this.includeBox.TabIndex = 0;
this.includeBox.TabStop = false;
this.includeBox.Text = "Include";
//
// convertDummies
//
this.convertDummies.AutoSize = true;
this.convertDummies.Location = new System.Drawing.Point(19, 205);
this.convertDummies.Margin = new System.Windows.Forms.Padding(4);
this.convertDummies.Name = "convertDummies";
this.convertDummies.Size = new System.Drawing.Size(302, 20);
this.convertDummies.TabIndex = 5;
this.convertDummies.Text = "Convert Deforming Dummies to Bones";
this.convertDummies.UseVisualStyleBackColor = true;
this.convertDummies.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
//
// embedBox
//
this.embedBox.AutoSize = true;
this.embedBox.Enabled = false;
this.embedBox.Location = new System.Drawing.Point(19, 288);
this.embedBox.Margin = new System.Windows.Forms.Padding(4);
this.embedBox.Name = "embedBox";
this.embedBox.Size = new System.Drawing.Size(118, 20);
this.embedBox.TabIndex = 4;
this.embedBox.Text = "Embed Media";
this.embedBox.UseVisualStyleBackColor = true;
//
// lightsBox
//
this.lightsBox.AutoSize = true;
this.lightsBox.Enabled = false;
this.lightsBox.Location = new System.Drawing.Point(19, 260);
this.lightsBox.Margin = new System.Windows.Forms.Padding(4);
this.lightsBox.Name = "lightsBox";
this.lightsBox.Size = new System.Drawing.Size(78, 20);
this.lightsBox.TabIndex = 3;
this.lightsBox.Text = "Lights";
this.lightsBox.UseVisualStyleBackColor = true;
//
// camerasBox
//
this.camerasBox.AutoSize = true;
this.camerasBox.Enabled = false;
this.camerasBox.Location = new System.Drawing.Point(19, 232);
this.camerasBox.Margin = new System.Windows.Forms.Padding(4);
this.camerasBox.Name = "camerasBox";
this.camerasBox.Size = new System.Drawing.Size(86, 20);
this.camerasBox.TabIndex = 2;
this.camerasBox.Text = "Cameras";
this.camerasBox.UseVisualStyleBackColor = true;
//
// exportDeformers
//
this.exportDeformers.AutoSize = true;
this.exportDeformers.Location = new System.Drawing.Point(19, 178);
this.exportDeformers.Margin = new System.Windows.Forms.Padding(4);
this.exportDeformers.Name = "exportDeformers";
this.exportDeformers.Size = new System.Drawing.Size(142, 20);
this.exportDeformers.TabIndex = 1;
this.exportDeformers.Text = "Skin Deformers";
this.exportDeformers.UseVisualStyleBackColor = true;
this.exportDeformers.CheckedChanged += new System.EventHandler(this.exportDeformers_CheckedChanged);
//
// geometryBox
//
this.geometryBox.AutoSize = true;
this.geometryBox.Controls.Add(this.exportColors);
this.geometryBox.Controls.Add(this.exportUVs);
this.geometryBox.Controls.Add(this.exportTangents);
this.geometryBox.Controls.Add(this.exportNormals);
this.geometryBox.Location = new System.Drawing.Point(9, 22);
this.geometryBox.Margin = new System.Windows.Forms.Padding(4);
this.geometryBox.Name = "geometryBox";
this.geometryBox.Padding = new System.Windows.Forms.Padding(4);
this.geometryBox.Size = new System.Drawing.Size(313, 152);
this.geometryBox.TabIndex = 0;
this.geometryBox.TabStop = false;
this.geometryBox.Text = "Geometry";
//
// exportColors
//
this.exportColors.AutoSize = true;
this.exportColors.Checked = true;
this.exportColors.CheckState = System.Windows.Forms.CheckState.Checked;
this.exportColors.Location = new System.Drawing.Point(9, 106);
this.exportColors.Margin = new System.Windows.Forms.Padding(4);
this.exportColors.Name = "exportColors";
this.exportColors.Size = new System.Drawing.Size(134, 20);
this.exportColors.TabIndex = 3;
this.exportColors.Text = "Vertex Colors";
this.exportColors.UseVisualStyleBackColor = true;
this.exportColors.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
//
// exportUVs
//
this.exportUVs.AutoSize = true;
this.exportUVs.Checked = true;
this.exportUVs.CheckState = System.Windows.Forms.CheckState.Checked;
this.exportUVs.Location = new System.Drawing.Point(9, 79);
this.exportUVs.Margin = new System.Windows.Forms.Padding(4);
this.exportUVs.Name = "exportUVs";
this.exportUVs.Size = new System.Drawing.Size(142, 20);
this.exportUVs.TabIndex = 2;
this.exportUVs.Text = "UV Coordinates";
this.exportUVs.UseVisualStyleBackColor = true;
this.exportUVs.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
//
// exportTangents
//
this.exportTangents.AutoSize = true;
this.exportTangents.Location = new System.Drawing.Point(9, 51);
this.exportTangents.Margin = new System.Windows.Forms.Padding(4);
this.exportTangents.Name = "exportTangents";
this.exportTangents.Size = new System.Drawing.Size(94, 20);
this.exportTangents.TabIndex = 1;
this.exportTangents.Text = "Tangents";
this.exportTangents.UseVisualStyleBackColor = true;
this.exportTangents.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
//
// exportNormals
//
this.exportNormals.AutoSize = true;
this.exportNormals.Checked = true;
this.exportNormals.CheckState = System.Windows.Forms.CheckState.Checked;
this.exportNormals.Location = new System.Drawing.Point(9, 22);
this.exportNormals.Margin = new System.Windows.Forms.Padding(4);
this.exportNormals.Name = "exportNormals";
this.exportNormals.Size = new System.Drawing.Size(86, 20);
this.exportNormals.TabIndex = 0;
this.exportNormals.Text = "Normals";
this.exportNormals.UseVisualStyleBackColor = true;
this.exportNormals.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
//
// advancedBox
//
this.advancedBox.AutoSize = true;
this.advancedBox.Controls.Add(this.axisLabel);
this.advancedBox.Controls.Add(this.upAxis);
this.advancedBox.Controls.Add(this.scaleFactor);
this.advancedBox.Controls.Add(this.scaleLabel);
this.advancedBox.Location = new System.Drawing.Point(16, 355);
this.advancedBox.Margin = new System.Windows.Forms.Padding(4);
this.advancedBox.Name = "advancedBox";
this.advancedBox.Padding = new System.Windows.Forms.Padding(4);
this.advancedBox.Size = new System.Drawing.Size(332, 96);
this.advancedBox.TabIndex = 5;
this.advancedBox.TabStop = false;
this.advancedBox.Text = "Advanced Options";
//
// axisLabel
//
this.axisLabel.AutoSize = true;
this.axisLabel.Location = new System.Drawing.Point(8, 50);
this.axisLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.axisLabel.Name = "axisLabel";
this.axisLabel.Size = new System.Drawing.Size(72, 16);
this.axisLabel.TabIndex = 3;
this.axisLabel.Text = "Up Axis:";
//
// upAxis
//
this.upAxis.FormattingEnabled = true;
this.upAxis.Items.AddRange(new object[] {
"Y-up"});
this.upAxis.Location = new System.Drawing.Point(88, 47);
this.upAxis.Margin = new System.Windows.Forms.Padding(4);
this.upAxis.MaxDropDownItems = 2;
this.upAxis.Name = "upAxis";
this.upAxis.Size = new System.Drawing.Size(92, 23);
this.upAxis.TabIndex = 2;
//
// scaleFactor
//
this.scaleFactor.DecimalPlaces = 2;
this.scaleFactor.Increment = new decimal(new int[] {
1,
0,
0,
131072});
this.scaleFactor.Location = new System.Drawing.Point(128, 17);
this.scaleFactor.Margin = new System.Windows.Forms.Padding(4);
this.scaleFactor.Name = "scaleFactor";
this.scaleFactor.Size = new System.Drawing.Size(61, 25);
this.scaleFactor.TabIndex = 1;
this.scaleFactor.Value = new decimal(new int[] {
254,
0,
0,
131072});
//
// scaleLabel
//
this.scaleLabel.AutoSize = true;
this.scaleLabel.Location = new System.Drawing.Point(8, 19);
this.scaleLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.scaleLabel.Name = "scaleLabel";
this.scaleLabel.Size = new System.Drawing.Size(112, 16);
this.scaleLabel.TabIndex = 0;
this.scaleLabel.Text = "Scale Factor:";
//
// fbxOKbutton
//
this.fbxOKbutton.Location = new System.Drawing.Point(443, 455);
this.fbxOKbutton.Margin = new System.Windows.Forms.Padding(4);
this.fbxOKbutton.Name = "fbxOKbutton";
this.fbxOKbutton.Size = new System.Drawing.Size(100, 26);
this.fbxOKbutton.TabIndex = 6;
this.fbxOKbutton.Text = "OK";
this.fbxOKbutton.UseVisualStyleBackColor = true;
this.fbxOKbutton.Click += new System.EventHandler(this.fbxOKbutton_Click);
//
// fbxCancel
//
this.fbxCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.fbxCancel.Location = new System.Drawing.Point(560, 455);
this.fbxCancel.Margin = new System.Windows.Forms.Padding(4);
this.fbxCancel.Name = "fbxCancel";
this.fbxCancel.Size = new System.Drawing.Size(100, 26);
this.fbxCancel.TabIndex = 7;
this.fbxCancel.Text = "Cancel";
this.fbxCancel.UseVisualStyleBackColor = true;
this.fbxCancel.Click += new System.EventHandler(this.fbxCancel_Click);
//
// saveFileDialog1
//
this.saveFileDialog1.Filter = "FBX file|*.fbx|Collada|*.dae";
this.saveFileDialog1.RestoreDirectory = true;
//
// showExpOpt
//
this.showExpOpt.AutoSize = true;
this.showExpOpt.Location = new System.Drawing.Point(16, 459);
this.showExpOpt.Margin = new System.Windows.Forms.Padding(4);
this.showExpOpt.Name = "showExpOpt";
this.showExpOpt.Size = new System.Drawing.Size(294, 20);
this.showExpOpt.TabIndex = 8;
this.showExpOpt.Text = "Show this dialog for every export";
this.showExpOpt.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.convertfsb);
this.groupBox1.Controls.Add(this.panel1);
this.groupBox1.Controls.Add(this.converttexture);
this.groupBox1.Location = new System.Drawing.Point(356, 15);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
this.groupBox1.Size = new System.Drawing.Size(304, 436);
this.groupBox1.TabIndex = 9;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Convert";
//
// convertfsb
//
this.convertfsb.AutoSize = true;
this.convertfsb.Checked = true;
this.convertfsb.CheckState = System.Windows.Forms.CheckState.Checked;
this.convertfsb.Location = new System.Drawing.Point(11, 101);
this.convertfsb.Margin = new System.Windows.Forms.Padding(4);
this.convertfsb.Name = "convertfsb";
this.convertfsb.Size = new System.Drawing.Size(174, 20);
this.convertfsb.TabIndex = 6;
this.convertfsb.Text = "Convert FSB to WAV";
this.convertfsb.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.Controls.Add(this.tojpg);
this.panel1.Controls.Add(this.topng);
this.panel1.Controls.Add(this.tobmp);
this.panel1.Location = new System.Drawing.Point(40, 52);
this.panel1.Margin = new System.Windows.Forms.Padding(4);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(195, 38);
this.panel1.TabIndex = 5;
//
// tojpg
//
this.tojpg.AutoSize = true;
this.tojpg.Location = new System.Drawing.Point(129, 8);
this.tojpg.Margin = new System.Windows.Forms.Padding(4);
this.tojpg.Name = "tojpg";
this.tojpg.Size = new System.Drawing.Size(61, 20);
this.tojpg.TabIndex = 4;
this.tojpg.Text = "JPEG";
this.tojpg.UseVisualStyleBackColor = true;
//
// topng
//
this.topng.AutoSize = true;
this.topng.Checked = true;
this.topng.Location = new System.Drawing.Point(67, 8);
this.topng.Margin = new System.Windows.Forms.Padding(4);
this.topng.Name = "topng";
this.topng.Size = new System.Drawing.Size(53, 20);
this.topng.TabIndex = 3;
this.topng.TabStop = true;
this.topng.Text = "PNG";
this.topng.UseVisualStyleBackColor = true;
//
// tobmp
//
this.tobmp.AutoSize = true;
this.tobmp.Location = new System.Drawing.Point(4, 8);
this.tobmp.Margin = new System.Windows.Forms.Padding(4);
this.tobmp.Name = "tobmp";
this.tobmp.Size = new System.Drawing.Size(53, 20);
this.tobmp.TabIndex = 2;
this.tobmp.Text = "BMP";
this.tobmp.UseVisualStyleBackColor = true;
//
// converttexture
//
this.converttexture.AutoSize = true;
this.converttexture.Checked = true;
this.converttexture.CheckState = System.Windows.Forms.CheckState.Checked;
this.converttexture.Location = new System.Drawing.Point(11, 25);
this.converttexture.Margin = new System.Windows.Forms.Padding(4);
this.converttexture.Name = "converttexture";
this.converttexture.Size = new System.Drawing.Size(254, 20);
this.converttexture.TabIndex = 1;
this.converttexture.Text = "Convert Texture (If support)";
this.converttexture.UseVisualStyleBackColor = true;
//
// ExportOptions
//
this.AcceptButton = this.fbxOKbutton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.fbxCancel;
this.ClientSize = new System.Drawing.Size(684, 490);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.showExpOpt);
this.Controls.Add(this.fbxCancel);
this.Controls.Add(this.fbxOKbutton);
this.Controls.Add(this.advancedBox);
this.Controls.Add(this.includeBox);
this.Margin = new System.Windows.Forms.Padding(4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ExportOptions";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Export options";
this.TopMost = true;
this.includeBox.ResumeLayout(false);
this.includeBox.PerformLayout();
this.geometryBox.ResumeLayout(false);
this.geometryBox.PerformLayout();
this.advancedBox.ResumeLayout(false);
this.advancedBox.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.scaleFactor)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : FrmMangaSettings.Designer.cs
License : GNU General Public License v3.0
Project Creator : 9vult
License : GNU General Public License v3.0
Project Creator : 9vult
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMangaSettings));
this.cmboGroup = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.cmboLang = new System.Windows.Forms.ComboBox();
this.btnSave = new System.Windows.Forms.Button();
this.txtName = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// cmboGroup
//
this.cmboGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmboGroup.FormattingEnabled = true;
this.cmboGroup.Location = new System.Drawing.Point(298, 14);
this.cmboGroup.Name = "cmboGroup";
this.cmboGroup.Size = new System.Drawing.Size(339, 28);
this.cmboGroup.TabIndex = 0;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(259, 20);
this.label1.TabIndex = 1;
this.label1.Text = "Only download chapters from group";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 66);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(280, 20);
this.label2.TabIndex = 2;
this.label2.Text = "Only download chapters with language";
//
// cmboLang
//
this.cmboLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmboLang.Font = new System.Drawing.Font("Menlo", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cmboLang.FormattingEnabled = true;
this.cmboLang.Items.AddRange(new object[] {
"sa | Arabic",
"bd | Bengali",
"bg | Bulgarian",
"mm | Burmese",
"ct | Catalan",
"cn | Chinese (Simp)",
"hk | Chinese (Trad)",
"cz | Czech",
"dk | Danish",
"nl | Dutch",
"gb | English",
"ph | Filipino",
"fi | Finnish",
"fr | French",
"de | German",
"gr | Greek",
"hu | Hungarian",
"id | Indonesian",
"it | Italian",
"jp | replacedanese",
"kr | Korean",
"my | Malay",
"mn | Mongolian",
"ir | Persian",
"pl | Polish",
"br | Portuguese (Br)",
"pt | Portuguese (Pt)",
"ro | Romanian",
"ru | Russian",
"rs | Serbo-Croatian",
"es | Spanish (Es)",
"mx | Spanish (LATAM)",
"se | Swedish",
"th | Thai",
"tr | Turkish",
"ua | Ukrainian",
"vn | Vietnamese"});
this.cmboLang.Location = new System.Drawing.Point(298, 58);
this.cmboLang.Name = "cmboLang";
this.cmboLang.Size = new System.Drawing.Size(339, 27);
this.cmboLang.TabIndex = 3;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(505, 147);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(132, 39);
this.btnSave.TabIndex = 4;
this.btnSave.Text = "OK";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
//
// txtName
//
this.txtName.Location = new System.Drawing.Point(298, 104);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(339, 26);
this.txtName.TabIndex = 5;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 110);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(101, 20);
this.label3.TabIndex = 6;
this.label3.Text = "Override replacedle";
//
// FrmMangaSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(649, 198);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtName);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.cmboLang);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.cmboGroup);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmMangaSettings";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Manga Settings";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMangaSettings_FormClosing);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmMangaSettings_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : FrmSettings.Designer.cs
License : GNU General Public License v3.0
Project Creator : 9vult
License : GNU General Public License v3.0
Project Creator : 9vult
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSettings));
this.chkUpdates = new System.Windows.Forms.CheckBox();
this.btnSave = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.cmboLang = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.txtDirectory = new System.Windows.Forms.TextBox();
this.btnChangeDirectory = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.btnAbout = new System.Windows.Forms.Button();
this.btnViewFolder = new System.Windows.Forms.Button();
this.chkDblReader = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// chkUpdates
//
this.chkUpdates.AutoSize = true;
this.chkUpdates.Location = new System.Drawing.Point(12, 12);
this.chkUpdates.Name = "chkUpdates";
this.chkUpdates.Size = new System.Drawing.Size(247, 24);
this.chkUpdates.TabIndex = 0;
this.chkUpdates.Text = "Check for Updates on Launch";
this.chkUpdates.UseVisualStyleBackColor = true;
//
// btnSave
//
this.btnSave.Location = new System.Drawing.Point(377, 299);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(93, 32);
this.btnSave.TabIndex = 1;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(278, 299);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(93, 32);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(8, 53);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(148, 20);
this.label1.TabIndex = 3;
this.label1.Text = "Default Manga lang";
//
// cmboLang
//
this.cmboLang.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append;
this.cmboLang.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.Lisreplacedems;
this.cmboLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmboLang.Font = new System.Drawing.Font("Menlo", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cmboLang.FormattingEnabled = true;
this.cmboLang.Items.AddRange(new object[] {
"sa | Arabic",
"bd | Bengali",
"bg | Bulgarian",
"mm | Burmese",
"ct | Catalan",
"cn | Chinese (Simp)",
"hk | Chinese (Trad)",
"cz | Czech",
"dk | Danish",
"nl | Dutch",
"gb | English",
"ph | Filipino",
"fi | Finnish",
"fr | French",
"de | German",
"gr | Greek",
"hu | Hungarian",
"id | Indonesian",
"it | Italian",
"jp | replacedanese",
"kr | Korean",
"my | Malay",
"mn | Mongolian",
"ir | Persian",
"pl | Polish",
"br | Portuguese (Br)",
"pt | Portuguese (Pt)",
"ro | Romanian",
"ru | Russian",
"rs | Serbo-Croatian",
"es | Spanish (Es)",
"mx | Spanish (LATAM)",
"se | Swedish",
"th | Thai",
"tr | Turkish",
"ua | Ukrainian",
"vn | Vietnamese"});
this.cmboLang.Location = new System.Drawing.Point(177, 51);
this.cmboLang.Name = "cmboLang";
this.cmboLang.Size = new System.Drawing.Size(293, 27);
this.cmboLang.TabIndex = 4;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(8, 89);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(162, 20);
this.label2.TabIndex = 5;
this.label2.Text = "Global Save Directory";
//
// txtDirectory
//
this.txtDirectory.Enabled = false;
this.txtDirectory.Location = new System.Drawing.Point(176, 89);
this.txtDirectory.Name = "txtDirectory";
this.txtDirectory.Size = new System.Drawing.Size(249, 26);
this.txtDirectory.TabIndex = 6;
//
// btnChangeDirectory
//
this.btnChangeDirectory.Location = new System.Drawing.Point(431, 85);
this.btnChangeDirectory.Name = "btnChangeDirectory";
this.btnChangeDirectory.Size = new System.Drawing.Size(38, 30);
this.btnChangeDirectory.TabIndex = 7;
this.btnChangeDirectory.Text = "...";
this.btnChangeDirectory.UseVisualStyleBackColor = true;
this.btnChangeDirectory.Click += new System.EventHandler(this.BtnChangeDirectory_Click);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 196);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(446, 60);
this.label3.TabIndex = 8;
this.label3.Text = "Note:\r\n- Changes to Language Code will only affect new downloads.\r\n- Changes to S" +
"ave Directory will require MikuReader to restart.";
//
// btnAbout
//
this.btnAbout.Location = new System.Drawing.Point(12, 299);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(93, 32);
this.btnAbout.TabIndex = 9;
this.btnAbout.Text = "About";
this.btnAbout.UseVisualStyleBackColor = true;
this.btnAbout.Click += new System.EventHandler(this.BtnAbout_Click);
//
// btnViewFolder
//
this.btnViewFolder.Location = new System.Drawing.Point(348, 121);
this.btnViewFolder.Name = "btnViewFolder";
this.btnViewFolder.Size = new System.Drawing.Size(121, 32);
this.btnViewFolder.TabIndex = 10;
this.btnViewFolder.Text = "View Folder";
this.btnViewFolder.UseVisualStyleBackColor = true;
this.btnViewFolder.Click += new System.EventHandler(this.BtnViewFolder_Click);
//
// chkDblReader
//
this.chkDblReader.AutoSize = true;
this.chkDblReader.Location = new System.Drawing.Point(12, 158);
this.chkDblReader.Name = "chkDblReader";
this.chkDblReader.Size = new System.Drawing.Size(322, 24);
this.chkDblReader.TabIndex = 11;
this.chkDblReader.Text = "Use Double-Page Reader (experimental)";
this.chkDblReader.UseVisualStyleBackColor = true;
//
// FrmSettings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(482, 343);
this.Controls.Add(this.chkDblReader);
this.Controls.Add(this.btnViewFolder);
this.Controls.Add(this.btnAbout);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnChangeDirectory);
this.Controls.Add(this.txtDirectory);
this.Controls.Add(this.label2);
this.Controls.Add(this.cmboLang);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.chkUpdates);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmSettings";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MikuReader Settings";
this.Load += new System.EventHandler(this.FrmSettings_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ZUART.Designer.cs
License : MIT License
Project Creator : a2633063
License : MIT License
Project Creator : a2633063
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZUART));
this.panel_Setting = new System.Windows.Forms.Panel();
this.groupboxSendSetting = new System.Windows.Forms.GroupBox();
this.txtAutoSendms = new System.Windows.Forms.TextBox();
this.chkAutoCleanSend = new System.Windows.Forms.CheckBox();
this.chkAutoSend = new System.Windows.Forms.CheckBox();
this.chkfromFileSend = new System.Windows.Forms.CheckBox();
this.chkAutoAddSend = new System.Windows.Forms.CheckBox();
this.rbtnSendUnicode = new System.Windows.Forms.RadioButton();
this.rbtnSendHex = new System.Windows.Forms.RadioButton();
this.rbtnSendASCII = new System.Windows.Forms.RadioButton();
this.rbtnSendUTF8 = new System.Windows.Forms.RadioButton();
this.lkbReadSend = new System.Windows.Forms.LinkLabel();
this.lkbClearSend = new System.Windows.Forms.LinkLabel();
this.groupboxRecSetting = new System.Windows.Forms.GroupBox();
this.chkRecSend = new System.Windows.Forms.CheckBox();
this.lkbSaveRev = new System.Windows.Forms.LinkLabel();
this.rbtnUnicode = new System.Windows.Forms.RadioButton();
this.rbtnUTF8 = new System.Windows.Forms.RadioButton();
this.rbtnASCII = new System.Windows.Forms.RadioButton();
this.rbtnHex = new System.Windows.Forms.RadioButton();
this.lkbClearRev = new System.Windows.Forms.LinkLabel();
this.chkShowTime = new System.Windows.Forms.CheckBox();
this.chkAutoLine = new System.Windows.Forms.CheckBox();
this.groupBoxComSetting = new System.Windows.Forms.GroupBox();
this.cbbParity = new System.Windows.Forms.ComboBox();
this.cbbStopBits = new System.Windows.Forms.ComboBox();
this.btnOpen = new System.Windows.Forms.Button();
this.cbbDataBits = new System.Windows.Forms.ComboBox();
this.cbbBaudRate = new System.Windows.Forms.ComboBox();
this.cbbComList = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.panel_Log = new System.Windows.Forms.Panel();
this.btnabout = new System.Windows.Forms.Button();
this.Log = new System.Windows.Forms.Label();
this.btnCleanCount = new System.Windows.Forms.Button();
this.lblRevCount = new System.Windows.Forms.Label();
this.lblSendCount = new System.Windows.Forms.Label();
this.ComDevice = new System.IO.Ports.SerialPort(this.components);
this.timerAutoSend = new System.Windows.Forms.Timer(this.components);
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.panel_ListSend = new System.Windows.Forms.Panel();
this.ListSend_Send0 = new System.Windows.Forms.Button();
this.ListSend_Text0 = new System.Windows.Forms.TextBox();
this.ListSend_Hex0 = new System.Windows.Forms.CheckBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.timerIcon = new System.Windows.Forms.Timer(this.components);
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.btnSend = new System.Windows.Forms.Button();
this.txtSendData = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtShowData = new System.Windows.Forms.TextBox();
this.panel_Setting.SuspendLayout();
this.groupboxSendSetting.SuspendLayout();
this.groupboxRecSetting.SuspendLayout();
this.groupBoxComSetting.SuspendLayout();
this.panel_Log.SuspendLayout();
this.groupBox6.SuspendLayout();
this.panel_ListSend.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// panel_Setting
//
this.panel_Setting.BackColor = System.Drawing.SystemColors.Control;
this.panel_Setting.Controls.Add(this.groupboxSendSetting);
this.panel_Setting.Controls.Add(this.groupboxRecSetting);
this.panel_Setting.Controls.Add(this.groupBoxComSetting);
this.panel_Setting.Dock = System.Windows.Forms.DockStyle.Left;
this.panel_Setting.Location = new System.Drawing.Point(0, 0);
this.panel_Setting.Name = "panel_Setting";
this.panel_Setting.Size = new System.Drawing.Size(174, 547);
this.panel_Setting.TabIndex = 0;
//
// groupboxSendSetting
//
this.groupboxSendSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.groupboxSendSetting.Controls.Add(this.txtAutoSendms);
this.groupboxSendSetting.Controls.Add(this.chkAutoCleanSend);
this.groupboxSendSetting.Controls.Add(this.chkAutoSend);
this.groupboxSendSetting.Controls.Add(this.chkfromFileSend);
this.groupboxSendSetting.Controls.Add(this.chkAutoAddSend);
this.groupboxSendSetting.Controls.Add(this.rbtnSendUnicode);
this.groupboxSendSetting.Controls.Add(this.rbtnSendHex);
this.groupboxSendSetting.Controls.Add(this.rbtnSendASCII);
this.groupboxSendSetting.Controls.Add(this.rbtnSendUTF8);
this.groupboxSendSetting.Controls.Add(this.lkbReadSend);
this.groupboxSendSetting.Controls.Add(this.lkbClearSend);
this.groupboxSendSetting.Location = new System.Drawing.Point(3, 360);
this.groupboxSendSetting.Name = "groupboxSendSetting";
this.groupboxSendSetting.Size = new System.Drawing.Size(170, 187);
this.groupboxSendSetting.TabIndex = 3;
this.groupboxSendSetting.TabStop = false;
this.groupboxSendSetting.Text = "发送区设置";
//
// txtAutoSendms
//
this.txtAutoSendms.ImeMode = System.Windows.Forms.ImeMode.Disable;
this.txtAutoSendms.Location = new System.Drawing.Point(105, 82);
this.txtAutoSendms.MaxLength = 5;
this.txtAutoSendms.Name = "txtAutoSendms";
this.txtAutoSendms.Size = new System.Drawing.Size(32, 21);
this.txtAutoSendms.TabIndex = 5;
this.txtAutoSendms.Text = "500";
this.txtAutoSendms.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.toolTip1.SetToolTip(this.txtAutoSendms, "建议20-60000范围内");
this.txtAutoSendms.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAutoSendms_KeyPress);
//
// chkAutoCleanSend
//
this.chkAutoCleanSend.AutoSize = true;
this.chkAutoCleanSend.Location = new System.Drawing.Point(9, 64);
this.chkAutoCleanSend.Name = "chkAutoCleanSend";
this.chkAutoCleanSend.Size = new System.Drawing.Size(108, 16);
this.chkAutoCleanSend.TabIndex = 3;
this.chkAutoCleanSend.Text = "发送完自动清空";
this.chkAutoCleanSend.UseVisualStyleBackColor = true;
//
// chkAutoSend
//
this.chkAutoSend.AutoSize = true;
this.chkAutoSend.Location = new System.Drawing.Point(9, 86);
this.chkAutoSend.Name = "chkAutoSend";
this.chkAutoSend.Size = new System.Drawing.Size(96, 16);
this.chkAutoSend.TabIndex = 4;
this.chkAutoSend.Text = "发送周期(ms)";
this.chkAutoSend.UseVisualStyleBackColor = true;
//
// chkfromFileSend
//
this.chkfromFileSend.AutoSize = true;
this.chkfromFileSend.Enabled = false;
this.chkfromFileSend.Location = new System.Drawing.Point(9, 20);
this.chkfromFileSend.Name = "chkfromFileSend";
this.chkfromFileSend.Size = new System.Drawing.Size(108, 16);
this.chkfromFileSend.TabIndex = 1;
this.chkfromFileSend.Text = "启用文件数据源";
this.chkfromFileSend.UseVisualStyleBackColor = true;
//
// chkAutoAddSend
//
this.chkAutoAddSend.AutoSize = true;
this.chkAutoAddSend.Enabled = false;
this.chkAutoAddSend.Location = new System.Drawing.Point(9, 42);
this.chkAutoAddSend.Name = "chkAutoAddSend";
this.chkAutoAddSend.Size = new System.Drawing.Size(108, 16);
this.chkAutoAddSend.TabIndex = 2;
this.chkAutoAddSend.Text = "自动发送附加位";
this.chkAutoAddSend.UseVisualStyleBackColor = true;
//
// rbtnSendUnicode
//
this.rbtnSendUnicode.AutoSize = true;
this.rbtnSendUnicode.Location = new System.Drawing.Point(68, 130);
this.rbtnSendUnicode.Name = "rbtnSendUnicode";
this.rbtnSendUnicode.Size = new System.Drawing.Size(65, 16);
this.rbtnSendUnicode.TabIndex = 9;
this.rbtnSendUnicode.Text = "Unicode";
this.rbtnSendUnicode.UseVisualStyleBackColor = true;
this.rbtnSendUnicode.Click += new System.EventHandler(this.rbtnSend_Click);
//
// rbtnSendHex
//
this.rbtnSendHex.AutoSize = true;
this.rbtnSendHex.Location = new System.Drawing.Point(9, 108);
this.rbtnSendHex.Name = "rbtnSendHex";
this.rbtnSendHex.Size = new System.Drawing.Size(41, 16);
this.rbtnSendHex.TabIndex = 6;
this.rbtnSendHex.Text = "Hex";
this.rbtnSendHex.UseVisualStyleBackColor = true;
this.rbtnSendHex.Click += new System.EventHandler(this.rbtnSend_Click);
//
// rbtnSendASCII
//
this.rbtnSendASCII.AutoSize = true;
this.rbtnSendASCII.Checked = true;
this.rbtnSendASCII.Location = new System.Drawing.Point(68, 109);
this.rbtnSendASCII.Name = "rbtnSendASCII";
this.rbtnSendASCII.Size = new System.Drawing.Size(41, 16);
this.rbtnSendASCII.TabIndex = 7;
this.rbtnSendASCII.TabStop = true;
this.rbtnSendASCII.Text = "GBK";
this.rbtnSendASCII.UseVisualStyleBackColor = true;
this.rbtnSendASCII.Click += new System.EventHandler(this.rbtnSend_Click);
//
// rbtnSendUTF8
//
this.rbtnSendUTF8.AutoSize = true;
this.rbtnSendUTF8.Location = new System.Drawing.Point(9, 130);
this.rbtnSendUTF8.Name = "rbtnSendUTF8";
this.rbtnSendUTF8.Size = new System.Drawing.Size(53, 16);
this.rbtnSendUTF8.TabIndex = 8;
this.rbtnSendUTF8.Text = "UTF-8";
this.rbtnSendUTF8.UseVisualStyleBackColor = true;
this.rbtnSendUTF8.Click += new System.EventHandler(this.rbtnSend_Click);
//
// lkbReadSend
//
this.lkbReadSend.AutoSize = true;
this.lkbReadSend.Location = new System.Drawing.Point(16, 159);
this.lkbReadSend.Name = "lkbReadSend";
this.lkbReadSend.Size = new System.Drawing.Size(53, 12);
this.lkbReadSend.TabIndex = 10;
this.lkbReadSend.TabStop = true;
this.lkbReadSend.Text = "文件载入";
this.lkbReadSend.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbReadSend_LinkClicked);
//
// lkbClearSend
//
this.lkbClearSend.AutoSize = true;
this.lkbClearSend.Location = new System.Drawing.Point(83, 159);
this.lkbClearSend.Name = "lkbClearSend";
this.lkbClearSend.Size = new System.Drawing.Size(53, 12);
this.lkbClearSend.TabIndex = 11;
this.lkbClearSend.TabStop = true;
this.lkbClearSend.Text = "清除发送";
this.lkbClearSend.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbClearSend_LinkClicked);
//
// groupboxRecSetting
//
this.groupboxRecSetting.Controls.Add(this.chkRecSend);
this.groupboxRecSetting.Controls.Add(this.lkbSaveRev);
this.groupboxRecSetting.Controls.Add(this.rbtnUnicode);
this.groupboxRecSetting.Controls.Add(this.rbtnUTF8);
this.groupboxRecSetting.Controls.Add(this.rbtnASCII);
this.groupboxRecSetting.Controls.Add(this.rbtnHex);
this.groupboxRecSetting.Controls.Add(this.lkbClearRev);
this.groupboxRecSetting.Controls.Add(this.chkShowTime);
this.groupboxRecSetting.Controls.Add(this.chkAutoLine);
this.groupboxRecSetting.Location = new System.Drawing.Point(3, 203);
this.groupboxRecSetting.Name = "groupboxRecSetting";
this.groupboxRecSetting.Size = new System.Drawing.Size(170, 152);
this.groupboxRecSetting.TabIndex = 2;
this.groupboxRecSetting.TabStop = false;
this.groupboxRecSetting.Text = "接收区设置";
//
// chkRecSend
//
this.chkRecSend.AutoSize = true;
this.chkRecSend.Location = new System.Drawing.Point(13, 64);
this.chkRecSend.Name = "chkRecSend";
this.chkRecSend.Size = new System.Drawing.Size(96, 16);
this.chkRecSend.TabIndex = 9;
this.chkRecSend.Text = "输入直接发送";
this.chkRecSend.UseVisualStyleBackColor = true;
//
// lkbSaveRev
//
this.lkbSaveRev.AutoSize = true;
this.lkbSaveRev.Location = new System.Drawing.Point(16, 132);
this.lkbSaveRev.Name = "lkbSaveRev";
this.lkbSaveRev.Size = new System.Drawing.Size(53, 12);
this.lkbSaveRev.TabIndex = 7;
this.lkbSaveRev.TabStop = true;
this.lkbSaveRev.Text = "保存数据";
this.lkbSaveRev.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbSaveRev_LinkClicked);
//
// rbtnUnicode
//
this.rbtnUnicode.AutoSize = true;
this.rbtnUnicode.Location = new System.Drawing.Point(72, 110);
this.rbtnUnicode.Name = "rbtnUnicode";
this.rbtnUnicode.Size = new System.Drawing.Size(65, 16);
this.rbtnUnicode.TabIndex = 6;
this.rbtnUnicode.Text = "Unicode";
this.rbtnUnicode.UseVisualStyleBackColor = true;
this.rbtnUnicode.Click += new System.EventHandler(this.rbtn_Click);
//
// rbtnUTF8
//
this.rbtnUTF8.AutoSize = true;
this.rbtnUTF8.Location = new System.Drawing.Point(12, 110);
this.rbtnUTF8.Name = "rbtnUTF8";
this.rbtnUTF8.Size = new System.Drawing.Size(53, 16);
this.rbtnUTF8.TabIndex = 5;
this.rbtnUTF8.Text = "UTF-8";
this.rbtnUTF8.UseVisualStyleBackColor = true;
this.rbtnUTF8.Click += new System.EventHandler(this.rbtn_Click);
//
// rbtnASCII
//
this.rbtnASCII.AutoSize = true;
this.rbtnASCII.Checked = true;
this.rbtnASCII.Location = new System.Drawing.Point(72, 88);
this.rbtnASCII.Name = "rbtnASCII";
this.rbtnASCII.Size = new System.Drawing.Size(41, 16);
this.rbtnASCII.TabIndex = 4;
this.rbtnASCII.TabStop = true;
this.rbtnASCII.Text = "GBK";
this.rbtnASCII.UseVisualStyleBackColor = true;
this.rbtnASCII.Click += new System.EventHandler(this.rbtn_Click);
//
// rbtnHex
//
this.rbtnHex.AutoSize = true;
this.rbtnHex.Location = new System.Drawing.Point(13, 88);
this.rbtnHex.Name = "rbtnHex";
this.rbtnHex.Size = new System.Drawing.Size(41, 16);
this.rbtnHex.TabIndex = 3;
this.rbtnHex.Text = "Hex";
this.rbtnHex.UseVisualStyleBackColor = true;
this.rbtnHex.Click += new System.EventHandler(this.rbtn_Click);
//
// lkbClearRev
//
this.lkbClearRev.AutoSize = true;
this.lkbClearRev.Location = new System.Drawing.Point(83, 132);
this.lkbClearRev.Name = "lkbClearRev";
this.lkbClearRev.Size = new System.Drawing.Size(53, 12);
this.lkbClearRev.TabIndex = 8;
this.lkbClearRev.TabStop = true;
this.lkbClearRev.Text = "清除接收";
this.lkbClearRev.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbClearRev_LinkClicked);
//
// chkShowTime
//
this.chkShowTime.AutoSize = true;
this.chkShowTime.Location = new System.Drawing.Point(13, 42);
this.chkShowTime.Name = "chkShowTime";
this.chkShowTime.Size = new System.Drawing.Size(96, 16);
this.chkShowTime.TabIndex = 2;
this.chkShowTime.Text = "显示接收时间";
this.chkShowTime.UseVisualStyleBackColor = true;
this.chkShowTime.CheckedChanged += new System.EventHandler(this.chkShowTime_CheckedChanged);
//
// chkAutoLine
//
this.chkAutoLine.AutoSize = true;
this.chkAutoLine.Location = new System.Drawing.Point(13, 20);
this.chkAutoLine.Name = "chkAutoLine";
this.chkAutoLine.Size = new System.Drawing.Size(96, 16);
this.chkAutoLine.TabIndex = 1;
this.chkAutoLine.Text = "自动换行显示";
this.chkAutoLine.UseVisualStyleBackColor = true;
//
// groupBoxComSetting
//
this.groupBoxComSetting.Controls.Add(this.cbbParity);
this.groupBoxComSetting.Controls.Add(this.cbbStopBits);
this.groupBoxComSetting.Controls.Add(this.btnOpen);
this.groupBoxComSetting.Controls.Add(this.cbbDataBits);
this.groupBoxComSetting.Controls.Add(this.cbbBaudRate);
this.groupBoxComSetting.Controls.Add(this.cbbComList);
this.groupBoxComSetting.Controls.Add(this.label2);
this.groupBoxComSetting.Controls.Add(this.label5);
this.groupBoxComSetting.Controls.Add(this.label1);
this.groupBoxComSetting.Controls.Add(this.label4);
this.groupBoxComSetting.Controls.Add(this.label3);
this.groupBoxComSetting.Font = new System.Drawing.Font("宋体", 10F);
this.groupBoxComSetting.Location = new System.Drawing.Point(3, 3);
this.groupBoxComSetting.Name = "groupBoxComSetting";
this.groupBoxComSetting.Size = new System.Drawing.Size(170, 194);
this.groupBoxComSetting.TabIndex = 1;
this.groupBoxComSetting.TabStop = false;
this.groupBoxComSetting.Text = "端口设置";
//
// cbbParity
//
this.cbbParity.FormattingEnabled = true;
this.cbbParity.Items.AddRange(new object[] {
"None",
"Odd",
"Even",
"Mark",
"Space"});
this.cbbParity.Location = new System.Drawing.Point(61, 130);
this.cbbParity.Name = "cbbParity";
this.cbbParity.Size = new System.Drawing.Size(98, 21);
this.cbbParity.TabIndex = 5;
this.cbbParity.TextChanged += new System.EventHandler(this.cbbComSetChange);
//
// cbbStopBits
//
this.cbbStopBits.FormattingEnabled = true;
this.cbbStopBits.Items.AddRange(new object[] {
"1",
"2",
"3"});
this.cbbStopBits.Location = new System.Drawing.Point(61, 104);
this.cbbStopBits.Name = "cbbStopBits";
this.cbbStopBits.Size = new System.Drawing.Size(98, 21);
this.cbbStopBits.TabIndex = 4;
this.cbbStopBits.TextChanged += new System.EventHandler(this.cbbComSetChange);
//
// btnOpen
//
this.btnOpen.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnOpen.Font = new System.Drawing.Font("宋体", 10F);
this.btnOpen.Image = global::ZUART.Properties.Resources.close;
this.btnOpen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnOpen.Location = new System.Drawing.Point(9, 157);
this.btnOpen.Name = "btnOpen";
this.btnOpen.Padding = new System.Windows.Forms.Padding(8, 0, 25, 0);
this.btnOpen.Size = new System.Drawing.Size(150, 32);
this.btnOpen.TabIndex = 6;
this.btnOpen.Text = "打开串口";
this.btnOpen.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btnOpen.UseVisualStyleBackColor = true;
this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
//
// cbbDataBits
//
this.cbbDataBits.FormattingEnabled = true;
this.cbbDataBits.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.cbbDataBits.Items.AddRange(new object[] {
"8",
"7",
"6"});
this.cbbDataBits.Location = new System.Drawing.Point(61, 77);
this.cbbDataBits.Name = "cbbDataBits";
this.cbbDataBits.Size = new System.Drawing.Size(98, 21);
this.cbbDataBits.TabIndex = 3;
this.cbbDataBits.TextChanged += new System.EventHandler(this.cbbComSetChange);
//
// cbbBaudRate
//
this.cbbBaudRate.DisplayMember = "1";
this.cbbBaudRate.FormattingEnabled = true;
this.cbbBaudRate.Items.AddRange(new object[] {
"300",
"600",
"1200",
"2400",
"4800",
"9600",
"14400",
"19200",
"38400",
"43000",
"56000",
"57600",
"74880",
"115200",
"128000",
"256000"});
this.cbbBaudRate.Location = new System.Drawing.Point(61, 48);
this.cbbBaudRate.Name = "cbbBaudRate";
this.cbbBaudRate.Size = new System.Drawing.Size(98, 21);
this.cbbBaudRate.TabIndex = 2;
this.cbbBaudRate.Text = global::ZUART.Properties.Settings.Default.cbbBaudRate;
this.cbbBaudRate.ValueMember = "1";
this.cbbBaudRate.TextChanged += new System.EventHandler(this.cbbComSetChange);
//
// cbbComList
//
this.cbbComList.DisplayMember = "1";
this.cbbComList.FormattingEnabled = true;
this.cbbComList.Location = new System.Drawing.Point(61, 22);
this.cbbComList.Name = "cbbComList";
this.cbbComList.Size = new System.Drawing.Size(98, 21);
this.cbbComList.TabIndex = 1;
this.cbbComList.DropDown += new System.EventHandler(this.cbbComList_DropDown);
this.cbbComList.TextChanged += new System.EventHandler(this.cbbComSetChange);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 51);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(49, 14);
this.label2.TabIndex = 1;
this.label2.Text = "波特率";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 133);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(49, 14);
this.label5.TabIndex = 4;
this.label5.Text = "校验位";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 25);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(35, 14);
this.label1.TabIndex = 0;
this.label1.Text = "端口";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(6, 107);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(49, 14);
this.label4.TabIndex = 3;
this.label4.Text = "停止位";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(6, 80);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(49, 14);
this.label3.TabIndex = 2;
this.label3.Text = "数据位";
//
// panel_Log
//
this.panel_Log.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel_Log.Controls.Add(this.btnabout);
this.panel_Log.Controls.Add(this.Log);
this.panel_Log.Controls.Add(this.btnCleanCount);
this.panel_Log.Controls.Add(this.lblRevCount);
this.panel_Log.Controls.Add(this.lblSendCount);
this.panel_Log.Dock = System.Windows.Forms.DockStyle.Bottom;
this.panel_Log.Location = new System.Drawing.Point(0, 547);
this.panel_Log.Name = "panel_Log";
this.panel_Log.Size = new System.Drawing.Size(986, 25);
this.panel_Log.TabIndex = 3;
//
// btnabout
//
this.btnabout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnabout.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnabout.Location = new System.Drawing.Point(930, 1);
this.btnabout.Name = "btnabout";
this.btnabout.Size = new System.Drawing.Size(51, 20);
this.btnabout.TabIndex = 16;
this.btnabout.Text = "关于";
this.btnabout.UseVisualStyleBackColor = true;
this.btnabout.Click += new System.EventHandler(this.btnabout_Click);
//
// Log
//
this.Log.AutoSize = true;
this.Log.Location = new System.Drawing.Point(6, 3);
this.Log.MinimumSize = new System.Drawing.Size(100, 0);
this.Log.Name = "Log";
this.Log.Padding = new System.Windows.Forms.Padding(2);
this.Log.Size = new System.Drawing.Size(100, 16);
this.Log.TabIndex = 15;
this.Log.Text = "串口关闭";
this.Log.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// btnCleanCount
//
this.btnCleanCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCleanCount.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnCleanCount.Location = new System.Drawing.Point(858, 1);
this.btnCleanCount.Name = "btnCleanCount";
this.btnCleanCount.Size = new System.Drawing.Size(66, 20);
this.btnCleanCount.TabIndex = 14;
this.btnCleanCount.Text = "复位计数";
this.btnCleanCount.UseVisualStyleBackColor = true;
this.btnCleanCount.Click += new System.EventHandler(this.btnCleanCount_Click);
//
// lblRevCount
//
this.lblRevCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.lblRevCount.AutoSize = true;
this.lblRevCount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblRevCount.Location = new System.Drawing.Point(652, 2);
this.lblRevCount.MinimumSize = new System.Drawing.Size(100, 0);
this.lblRevCount.Name = "lblRevCount";
this.lblRevCount.Padding = new System.Windows.Forms.Padding(2);
this.lblRevCount.Size = new System.Drawing.Size(100, 18);
this.lblRevCount.TabIndex = 13;
this.lblRevCount.Text = "接收:0";
this.lblRevCount.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblSendCount
//
this.lblSendCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.lblSendCount.AutoSize = true;
this.lblSendCount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblSendCount.Location = new System.Drawing.Point(755, 2);
this.lblSendCount.MinimumSize = new System.Drawing.Size(100, 0);
this.lblSendCount.Name = "lblSendCount";
this.lblSendCount.Padding = new System.Windows.Forms.Padding(2);
this.lblSendCount.Size = new System.Drawing.Size(100, 18);
this.lblSendCount.TabIndex = 11;
this.lblSendCount.Text = "发送:0";
this.lblSendCount.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ComDevice
//
this.ComDevice.ReadTimeout = 1000;
this.ComDevice.WriteTimeout = 1000;
this.ComDevice.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.Com_DataReceived);
//
// timerAutoSend
//
this.timerAutoSend.Interval = 1;
this.timerAutoSend.Tick += new System.EventHandler(this.timerAutoSend_Tick);
//
// groupBox6
//
this.groupBox6.Controls.Add(this.panel_ListSend);
this.groupBox6.Controls.Add(this.label7);
this.groupBox6.Controls.Add(this.label6);
this.groupBox6.Dock = System.Windows.Forms.DockStyle.Right;
this.groupBox6.Location = new System.Drawing.Point(801, 0);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(185, 547);
this.groupBox6.TabIndex = 6;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "多字符串发送";
//
// panel_ListSend
//
this.panel_ListSend.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.panel_ListSend.AutoScroll = true;
this.panel_ListSend.BackColor = System.Drawing.Color.Transparent;
this.panel_ListSend.Controls.Add(this.ListSend_Send0);
this.panel_ListSend.Controls.Add(this.ListSend_Text0);
this.panel_ListSend.Controls.Add(this.ListSend_Hex0);
this.panel_ListSend.Location = new System.Drawing.Point(4, 32);
this.panel_ListSend.Name = "panel_ListSend";
this.panel_ListSend.Size = new System.Drawing.Size(181, 515);
this.panel_ListSend.TabIndex = 6;
//
// ListSend_Send0
//
this.ListSend_Send0.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ListSend_Send0.Location = new System.Drawing.Point(0, 0);
this.ListSend_Send0.Name = "ListSend_Send0";
this.ListSend_Send0.Size = new System.Drawing.Size(25, 21);
this.ListSend_Send0.TabIndex = 0;
this.ListSend_Send0.TabStop = false;
this.ListSend_Send0.Text = "1";
this.ListSend_Send0.UseVisualStyleBackColor = true;
this.ListSend_Send0.Click += new System.EventHandler(this.ListSendButton_Click);
//
// ListSend_Text0
//
this.ListSend_Text0.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ListSend_Text0.Location = new System.Drawing.Point(27, 0);
this.ListSend_Text0.Name = "ListSend_Text0";
this.ListSend_Text0.Size = new System.Drawing.Size(125, 21);
this.ListSend_Text0.TabIndex = 4;
this.ListSend_Text0.TabStop = false;
//
// ListSend_Hex0
//
this.ListSend_Hex0.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ListSend_Hex0.AutoSize = true;
this.ListSend_Hex0.Location = new System.Drawing.Point(157, 4);
this.ListSend_Hex0.Name = "ListSend_Hex0";
this.ListSend_Hex0.Size = new System.Drawing.Size(15, 14);
this.ListSend_Hex0.TabIndex = 3;
this.ListSend_Hex0.TabStop = false;
this.toolTip1.SetToolTip(this.ListSend_Hex0, "选择:以Hex发送\r\n不选:以文本发送");
this.ListSend_Hex0.UseVisualStyleBackColor = true;
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(138, 16);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(23, 12);
this.label7.TabIndex = 4;
this.label7.Text = "HEX";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(2, 16);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(29, 12);
this.label6.TabIndex = 3;
this.label6.Text = "发送";
//
// timerIcon
//
this.timerIcon.Interval = 300;
this.timerIcon.Tick += new System.EventHandler(this.timerIcon_Tick);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.btnSend);
this.groupBox3.Controls.Add(this.txtSendData);
this.groupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
this.groupBox3.Font = new System.Drawing.Font("宋体", 10F);
this.groupBox3.Location = new System.Drawing.Point(174, 441);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(627, 106);
this.groupBox3.TabIndex = 7;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "数据发送区";
//
// btnSend
//
this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnSend.Font = new System.Drawing.Font("宋体", 10F);
this.btnSend.Location = new System.Drawing.Point(545, 22);
this.btnSend.Name = "btnSend";
this.btnSend.Size = new System.Drawing.Size(78, 76);
this.btnSend.TabIndex = 2;
this.btnSend.Text = "发送";
this.btnSend.UseVisualStyleBackColor = true;
this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
//
// txtSendData
//
this.txtSendData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSendData.Location = new System.Drawing.Point(3, 22);
this.txtSendData.Multiline = true;
this.txtSendData.Name = "txtSendData";
this.txtSendData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtSendData.Size = new System.Drawing.Size(536, 76);
this.txtSendData.TabIndex = 1;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.txtShowData);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
this.groupBox2.Font = new System.Drawing.Font("宋体", 10F);
this.groupBox2.Location = new System.Drawing.Point(174, 0);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(627, 441);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "数据接收区";
//
// txtShowData
//
this.txtShowData.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtShowData.ImeMode = System.Windows.Forms.ImeMode.Disable;
this.txtShowData.Location = new System.Drawing.Point(3, 19);
this.txtShowData.Multiline = true;
this.txtShowData.Name = "txtShowData";
this.txtShowData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtShowData.Size = new System.Drawing.Size(621, 419);
this.txtShowData.TabIndex = 2;
this.txtShowData.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtShowData_KeyPress);
//
// ZUART
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnOpen;
this.ClientSize = new System.Drawing.Size(986, 572);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.panel_Setting);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.panel_Log);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "ZUART";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Z串口调试助手";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ZUART_FormClosing);
this.panel_Setting.ResumeLayout(false);
this.groupboxSendSetting.ResumeLayout(false);
this.groupboxSendSetting.PerformLayout();
this.groupboxRecSetting.ResumeLayout(false);
this.groupboxRecSetting.PerformLayout();
this.groupBoxComSetting.ResumeLayout(false);
this.groupBoxComSetting.PerformLayout();
this.panel_Log.ResumeLayout(false);
this.panel_Log.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.panel_ListSend.ResumeLayout(false);
this.panel_ListSend.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : SettingForm.Designer.cs
License : MIT License
Project Creator : aabiryukov
License : MIT License
Project Creator : aabiryukov
private void InitializeComponent()
{
this.okButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.pathTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.historySettingsGroupBox = new System.Windows.Forms.GroupBox();
this.dateToLabel = new System.Windows.Forms.Label();
this.dateFromLabel = new System.Windows.Forms.Label();
this.timeScaleComboBox = new System.Windows.Forms.ComboBox();
this.loopPlaybackCheckBox = new System.Windows.Forms.CheckBox();
this.label11 = new System.Windows.Forms.Label();
this.dateToPicker = new System.Windows.Forms.DateTimePicker();
this.dateFromPicker = new System.Windows.Forms.DateTimePicker();
this.secondsPerDayTextBox = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.userExcludeTextBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.userIncludeTextBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.resetToDefaultButton = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.filesExcludeTextBox = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.filesIncludeTextBox = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.selectLogoFileButton = new System.Windows.Forms.Button();
this.LogoFileTextBox = new System.Windows.Forms.TextBox();
this.ViewLogoCheckBox = new System.Windows.Forms.CheckBox();
this.viewAvatarsCheckBox = new System.Windows.Forms.CheckBox();
this.viewFilesExtentionMapCheckBox = new System.Windows.Forms.CheckBox();
this.label12 = new System.Windows.Forms.Label();
this.viewUserNamesCheckBox = new System.Windows.Forms.CheckBox();
this.viewDirNamesCheckBox = new System.Windows.Forms.CheckBox();
this.maxFilesTextBox = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.viewFileNamesCheckBox = new System.Windows.Forms.CheckBox();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.saveSettingsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.restoreDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.interactiveKeyboardCommandsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.liveStreamRadioButton = new System.Windows.Forms.RadioButton();
this.historyRadioButton = new System.Windows.Forms.RadioButton();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPageGeneral = new System.Windows.Forms.TabPage();
this.tabPageVisualization = new System.Windows.Forms.TabPage();
this.tabPageFilters = new System.Windows.Forms.TabPage();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.setResolutionCheckBox = new System.Windows.Forms.CheckBox();
this.fullScreenCheckBox = new System.Windows.Forms.CheckBox();
this.resolutionHeightTextBox = new System.Windows.Forms.TextBox();
this.label10 = new System.Windows.Forms.Label();
this.resolutionWidthTextBox = new System.Windows.Forms.TextBox();
this.historySettingsGroupBox.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.groupBox5.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPageGeneral.SuspendLayout();
this.tabPageVisualization.SuspendLayout();
this.tabPageFilters.SuspendLayout();
this.groupBox4.SuspendLayout();
this.SuspendLayout();
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.okButton.Location = new System.Drawing.Point(173, 460);
this.okButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(180, 40);
this.okButton.TabIndex = 0;
this.okButton.Text = "Start";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// cancelButton
//
this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Location = new System.Drawing.Point(361, 460);
this.cancelButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(100, 40);
this.cancelButton.TabIndex = 1;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
//
// pathTextBox
//
this.pathTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pathTextBox.Location = new System.Drawing.Point(57, 41);
this.pathTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.pathTextBox.Name = "pathTextBox";
this.pathTextBox.ReadOnly = true;
this.pathTextBox.Size = new System.Drawing.Size(407, 22);
this.pathTextBox.TabIndex = 4;
this.pathTextBox.TabStop = false;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 41);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(37, 17);
this.label1.TabIndex = 3;
this.label1.Text = "Path";
//
// historySettingsGroupBox
//
this.historySettingsGroupBox.Controls.Add(this.dateToLabel);
this.historySettingsGroupBox.Controls.Add(this.dateFromLabel);
this.historySettingsGroupBox.Controls.Add(this.timeScaleComboBox);
this.historySettingsGroupBox.Controls.Add(this.loopPlaybackCheckBox);
this.historySettingsGroupBox.Controls.Add(this.label11);
this.historySettingsGroupBox.Controls.Add(this.dateToPicker);
this.historySettingsGroupBox.Controls.Add(this.dateFromPicker);
this.historySettingsGroupBox.Controls.Add(this.secondsPerDayTextBox);
this.historySettingsGroupBox.Controls.Add(this.label8);
this.historySettingsGroupBox.Location = new System.Drawing.Point(14, 131);
this.historySettingsGroupBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.historySettingsGroupBox.Name = "historySettingsGroupBox";
this.historySettingsGroupBox.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.historySettingsGroupBox.Size = new System.Drawing.Size(418, 185);
this.historySettingsGroupBox.TabIndex = 6;
this.historySettingsGroupBox.TabStop = false;
this.historySettingsGroupBox.Text = "History setting";
//
// dateToLabel
//
this.dateToLabel.AutoSize = true;
this.dateToLabel.Location = new System.Drawing.Point(216, 39);
this.dateToLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.dateToLabel.Name = "dateToLabel";
this.dateToLabel.Size = new System.Drawing.Size(29, 17);
this.dateToLabel.TabIndex = 2;
this.dateToLabel.Text = "To:";
//
// dateFromLabel
//
this.dateFromLabel.AutoSize = true;
this.dateFromLabel.Location = new System.Drawing.Point(12, 39);
this.dateFromLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.dateFromLabel.Name = "dateFromLabel";
this.dateFromLabel.Size = new System.Drawing.Size(44, 17);
this.dateFromLabel.TabIndex = 0;
this.dateFromLabel.Text = "From:";
//
// timeScaleComboBox
//
this.timeScaleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.timeScaleComboBox.FormattingEnabled = true;
this.timeScaleComboBox.Items.AddRange(new object[] {
"<None>",
"Slow x1/8",
"Slow x1/4",
"Slow x1/2",
"Fast x2",
"Fast x3",
"Fast x4"});
this.timeScaleComboBox.Location = new System.Drawing.Point(193, 120);
this.timeScaleComboBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.timeScaleComboBox.Name = "timeScaleComboBox";
this.timeScaleComboBox.Size = new System.Drawing.Size(108, 24);
this.timeScaleComboBox.TabIndex = 7;
//
// loopPlaybackCheckBox
//
this.loopPlaybackCheckBox.AutoSize = true;
this.loopPlaybackCheckBox.Location = new System.Drawing.Point(15, 156);
this.loopPlaybackCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.loopPlaybackCheckBox.Name = "loopPlaybackCheckBox";
this.loopPlaybackCheckBox.Size = new System.Drawing.Size(122, 21);
this.loopPlaybackCheckBox.TabIndex = 10;
this.loopPlaybackCheckBox.Text = "Loop playback";
this.loopPlaybackCheckBox.UseVisualStyleBackColor = true;
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(10, 121);
this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(80, 17);
this.label11.TabIndex = 6;
this.label11.Text = "Time scale:";
//
// dateToPicker
//
this.dateToPicker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dateToPicker.Location = new System.Drawing.Point(255, 36);
this.dateToPicker.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dateToPicker.Name = "dateToPicker";
this.dateToPicker.Size = new System.Drawing.Size(139, 22);
this.dateToPicker.TabIndex = 3;
//
// dateFromPicker
//
this.dateFromPicker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dateFromPicker.Location = new System.Drawing.Point(64, 35);
this.dateFromPicker.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.dateFromPicker.Name = "dateFromPicker";
this.dateFromPicker.Size = new System.Drawing.Size(139, 22);
this.dateFromPicker.TabIndex = 1;
//
// secondsPerDayTextBox
//
this.secondsPerDayTextBox.Location = new System.Drawing.Point(193, 90);
this.secondsPerDayTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.secondsPerDayTextBox.MaxLength = 5;
this.secondsPerDayTextBox.Name = "secondsPerDayTextBox";
this.secondsPerDayTextBox.Size = new System.Drawing.Size(67, 22);
this.secondsPerDayTextBox.TabIndex = 5;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(9, 93);
this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(178, 17);
this.label8.TabIndex = 4;
this.label8.Text = "Seconds per day (1-1000):";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.userExcludeTextBox);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.userIncludeTextBox);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(14, 22);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox1.Size = new System.Drawing.Size(418, 132);
this.groupBox1.TabIndex = 11;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "User name filter";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(81, 94);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(193, 17);
this.label4.TabIndex = 4;
this.label4.Text = "Example: John*; *Eva; *robot*";
//
// userExcludeTextBox
//
this.userExcludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.userExcludeTextBox.Location = new System.Drawing.Point(84, 66);
this.userExcludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.userExcludeTextBox.Name = "userExcludeTextBox";
this.userExcludeTextBox.Size = new System.Drawing.Size(325, 22);
this.userExcludeTextBox.TabIndex = 3;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(11, 70);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(61, 17);
this.label3.TabIndex = 2;
this.label3.Text = "Exclude:";
//
// userIncludeTextBox
//
this.userIncludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.userIncludeTextBox.Location = new System.Drawing.Point(84, 34);
this.userIncludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.userIncludeTextBox.Name = "userIncludeTextBox";
this.userIncludeTextBox.Size = new System.Drawing.Size(325, 22);
this.userIncludeTextBox.TabIndex = 1;
this.userIncludeTextBox.Text = "*";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(11, 38);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(57, 17);
this.label2.TabIndex = 0;
this.label2.Text = "Include:";
//
// resetToDefaultButton
//
this.resetToDefaultButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.resetToDefaultButton.Location = new System.Drawing.Point(12, 460);
this.resetToDefaultButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.resetToDefaultButton.Name = "resetToDefaultButton";
this.resetToDefaultButton.Size = new System.Drawing.Size(128, 40);
this.resetToDefaultButton.TabIndex = 14;
this.resetToDefaultButton.Text = "Restore &Defaults";
this.resetToDefaultButton.UseVisualStyleBackColor = true;
this.resetToDefaultButton.Click += new System.EventHandler(this.resetToDefaultButton_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.filesExcludeTextBox);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.filesIncludeTextBox);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Location = new System.Drawing.Point(14, 184);
this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox2.Size = new System.Drawing.Size(418, 132);
this.groupBox2.TabIndex = 12;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "File type filter";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(81, 96);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(119, 17);
this.label5.TabIndex = 4;
this.label5.Text = "Example: *.cs;*.txt";
//
// filesExcludeTextBox
//
this.filesExcludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.filesExcludeTextBox.Location = new System.Drawing.Point(84, 68);
this.filesExcludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.filesExcludeTextBox.Name = "filesExcludeTextBox";
this.filesExcludeTextBox.Size = new System.Drawing.Size(325, 22);
this.filesExcludeTextBox.TabIndex = 3;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(11, 72);
this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(61, 17);
this.label6.TabIndex = 2;
this.label6.Text = "Exclude:";
//
// filesIncludeTextBox
//
this.filesIncludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.filesIncludeTextBox.Location = new System.Drawing.Point(84, 36);
this.filesIncludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.filesIncludeTextBox.Name = "filesIncludeTextBox";
this.filesIncludeTextBox.Size = new System.Drawing.Size(325, 22);
this.filesIncludeTextBox.TabIndex = 1;
this.filesIncludeTextBox.Text = "*";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(11, 40);
this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(57, 17);
this.label7.TabIndex = 0;
this.label7.Text = "Include:";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.selectLogoFileButton);
this.groupBox3.Controls.Add(this.LogoFileTextBox);
this.groupBox3.Controls.Add(this.ViewLogoCheckBox);
this.groupBox3.Controls.Add(this.viewAvatarsCheckBox);
this.groupBox3.Controls.Add(this.viewFilesExtentionMapCheckBox);
this.groupBox3.Controls.Add(this.label12);
this.groupBox3.Controls.Add(this.viewUserNamesCheckBox);
this.groupBox3.Controls.Add(this.viewDirNamesCheckBox);
this.groupBox3.Controls.Add(this.maxFilesTextBox);
this.groupBox3.Controls.Add(this.label9);
this.groupBox3.Controls.Add(this.viewFileNamesCheckBox);
this.groupBox3.Location = new System.Drawing.Point(14, 22);
this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox3.Size = new System.Drawing.Size(418, 161);
this.groupBox3.TabIndex = 7;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Visualization";
//
// selectLogoFileButton
//
this.selectLogoFileButton.Location = new System.Drawing.Point(370, 122);
this.selectLogoFileButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.selectLogoFileButton.Name = "selectLogoFileButton";
this.selectLogoFileButton.Size = new System.Drawing.Size(40, 27);
this.selectLogoFileButton.TabIndex = 10;
this.selectLogoFileButton.Text = "...";
this.selectLogoFileButton.UseVisualStyleBackColor = true;
this.selectLogoFileButton.Click += new System.EventHandler(this.selectLogoFileButton_Click);
//
// LogoFileTextBox
//
this.LogoFileTextBox.Location = new System.Drawing.Point(105, 126);
this.LogoFileTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.LogoFileTextBox.Name = "LogoFileTextBox";
this.LogoFileTextBox.Size = new System.Drawing.Size(257, 22);
this.LogoFileTextBox.TabIndex = 9;
//
// ViewLogoCheckBox
//
this.ViewLogoCheckBox.AutoSize = true;
this.ViewLogoCheckBox.Location = new System.Drawing.Point(12, 128);
this.ViewLogoCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.ViewLogoCheckBox.Name = "ViewLogoCheckBox";
this.ViewLogoCheckBox.Size = new System.Drawing.Size(88, 21);
this.ViewLogoCheckBox.TabIndex = 8;
this.ViewLogoCheckBox.Text = "Logo file:";
this.ViewLogoCheckBox.ThreeState = true;
this.ViewLogoCheckBox.UseVisualStyleBackColor = true;
this.ViewLogoCheckBox.CheckStateChanged += new System.EventHandler(this.ViewLogoCheckBox_CheckStateChanged);
//
// viewAvatarsCheckBox
//
this.viewAvatarsCheckBox.AutoSize = true;
this.viewAvatarsCheckBox.Location = new System.Drawing.Point(320, 31);
this.viewAvatarsCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.viewAvatarsCheckBox.Name = "viewAvatarsCheckBox";
this.viewAvatarsCheckBox.Size = new System.Drawing.Size(78, 21);
this.viewAvatarsCheckBox.TabIndex = 4;
this.viewAvatarsCheckBox.Text = "Avatars";
this.viewAvatarsCheckBox.UseVisualStyleBackColor = true;
//
// viewFilesExtentionMapCheckBox
//
this.viewFilesExtentionMapCheckBox.AutoSize = true;
this.viewFilesExtentionMapCheckBox.Location = new System.Drawing.Point(13, 96);
this.viewFilesExtentionMapCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.viewFilesExtentionMapCheckBox.Name = "viewFilesExtentionMapCheckBox";
this.viewFilesExtentionMapCheckBox.Size = new System.Drawing.Size(183, 21);
this.viewFilesExtentionMapCheckBox.TabIndex = 7;
this.viewFilesExtentionMapCheckBox.Text = "View files extension map";
this.viewFilesExtentionMapCheckBox.UseVisualStyleBackColor = true;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(9, 32);
this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(41, 17);
this.label12.TabIndex = 0;
this.label12.Text = "View:";
//
// viewUserNamesCheckBox
//
this.viewUserNamesCheckBox.AutoSize = true;
this.viewUserNamesCheckBox.Location = new System.Drawing.Point(241, 31);
this.viewUserNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.viewUserNamesCheckBox.Name = "viewUserNamesCheckBox";
this.viewUserNamesCheckBox.Size = new System.Drawing.Size(67, 21);
this.viewUserNamesCheckBox.TabIndex = 3;
this.viewUserNamesCheckBox.Text = "Users";
this.viewUserNamesCheckBox.UseVisualStyleBackColor = true;
//
// viewDirNamesCheckBox
//
this.viewDirNamesCheckBox.AutoSize = true;
this.viewDirNamesCheckBox.Location = new System.Drawing.Point(132, 31);
this.viewDirNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.viewDirNamesCheckBox.Name = "viewDirNamesCheckBox";
this.viewDirNamesCheckBox.Size = new System.Drawing.Size(98, 21);
this.viewDirNamesCheckBox.TabIndex = 2;
this.viewDirNamesCheckBox.Text = "Directories";
this.viewDirNamesCheckBox.UseVisualStyleBackColor = true;
//
// maxFilesTextBox
//
this.maxFilesTextBox.Location = new System.Drawing.Point(199, 64);
this.maxFilesTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.maxFilesTextBox.MaxLength = 7;
this.maxFilesTextBox.Name = "maxFilesTextBox";
this.maxFilesTextBox.Size = new System.Drawing.Size(67, 22);
this.maxFilesTextBox.TabIndex = 6;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(9, 68);
this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(175, 17);
this.label9.TabIndex = 5;
this.label9.Text = "Max number of active files:";
//
// viewFileNamesCheckBox
//
this.viewFileNamesCheckBox.AutoSize = true;
this.viewFileNamesCheckBox.Location = new System.Drawing.Point(61, 31);
this.viewFileNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.viewFileNamesCheckBox.Name = "viewFileNamesCheckBox";
this.viewFileNamesCheckBox.Size = new System.Drawing.Size(59, 21);
this.viewFileNamesCheckBox.TabIndex = 1;
this.viewFileNamesCheckBox.Text = "Files";
this.viewFileNamesCheckBox.UseVisualStyleBackColor = true;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
this.menuStrip1.Size = new System.Drawing.Size(477, 28);
this.menuStrip1.TabIndex = 2;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.loadSettingsToolStripMenuItem,
this.toolStripMenuItem2,
this.saveSettingsToFileToolStripMenuItem,
this.toolStripMenuItem1,
this.restoreDefaultToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
this.fileToolStripMenuItem.Text = "File";
//
// loadSettingsToolStripMenuItem
//
this.loadSettingsToolStripMenuItem.Name = "loadSettingsToolStripMenuItem";
this.loadSettingsToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
this.loadSettingsToolStripMenuItem.Text = "&Load Settings";
this.loadSettingsToolStripMenuItem.Click += new System.EventHandler(this.loadSettingsToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(233, 6);
//
// saveSettingsToFileToolStripMenuItem
//
this.saveSettingsToFileToolStripMenuItem.Name = "saveSettingsToFileToolStripMenuItem";
this.saveSettingsToFileToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
this.saveSettingsToFileToolStripMenuItem.Text = "&Save Settings As...";
this.saveSettingsToFileToolStripMenuItem.Click += new System.EventHandler(this.saveSettingsToFileToolStripMenuItem_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(233, 6);
//
// restoreDefaultToolStripMenuItem
//
this.restoreDefaultToolStripMenuItem.Name = "restoreDefaultToolStripMenuItem";
this.restoreDefaultToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
this.restoreDefaultToolStripMenuItem.Text = "Restore Default settings";
this.restoreDefaultToolStripMenuItem.Click += new System.EventHandler(this.resetToDefaultButton_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.interactiveKeyboardCommandsToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
this.helpToolStripMenuItem.Text = "Help";
//
// interactiveKeyboardCommandsToolStripMenuItem
//
this.interactiveKeyboardCommandsToolStripMenuItem.Name = "interactiveKeyboardCommandsToolStripMenuItem";
this.interactiveKeyboardCommandsToolStripMenuItem.Size = new System.Drawing.Size(290, 24);
this.interactiveKeyboardCommandsToolStripMenuItem.Text = "Interactive keyboard commands";
this.interactiveKeyboardCommandsToolStripMenuItem.Click += new System.EventHandler(this.interactiveKeyboardCommandsToolStripMenuItem_Click);
//
// saveFileDialog1
//
this.saveFileDialog1.DefaultExt = "VHCfg";
this.saveFileDialog1.FileName = "VisualHistorySettings1.VHCfg";
this.saveFileDialog1.Filter = "Setting|*.VHCfg";
this.saveFileDialog1.replacedle = "Save Visualization Settings";
//
// openFileDialog1
//
this.openFileDialog1.DefaultExt = "VHCfg";
this.openFileDialog1.FileName = "VisualHistorySettings1.VHCfg";
this.openFileDialog1.Filter = "Setting|*.VHCfg";
this.openFileDialog1.replacedle = "Open Visualization Settings";
//
// groupBox5
//
this.groupBox5.Controls.Add(this.liveStreamRadioButton);
this.groupBox5.Controls.Add(this.historyRadioButton);
this.groupBox5.Location = new System.Drawing.Point(14, 22);
this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.groupBox5.Size = new System.Drawing.Size(418, 89);
this.groupBox5.TabIndex = 5;
this.groupBox5.TabStop = false;
this.groupBox5.Text = "Play Mode";
//
// liveStreamRadioButton
//
this.liveStreamRadioButton.AutoSize = true;
this.liveStreamRadioButton.Location = new System.Drawing.Point(199, 41);
this.liveStreamRadioButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.liveStreamRadioButton.Name = "liveStreamRadioButton";
this.liveStreamRadioButton.Size = new System.Drawing.Size(183, 21);
this.liveStreamRadioButton.TabIndex = 1;
this.liveStreamRadioButton.Text = "Live Changes (real time)";
this.liveStreamRadioButton.UseVisualStyleBackColor = true;
this.liveStreamRadioButton.CheckedChanged += new System.EventHandler(this.historyRadioButton_CheckedChanged);
//
// historyRadioButton
//
this.historyRadioButton.AutoSize = true;
this.historyRadioButton.Checked = true;
this.historyRadioButton.Location = new System.Drawing.Point(29, 41);
this.historyRadioButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.historyRadioButton.Name = "historyRadioButton";
this.historyRadioButton.Size = new System.Drawing.Size(133, 21);
this.historyRadioButton.TabIndex = 0;
this.historyRadioButton.TabStop = true;
this.historyRadioButton.Text = "Visualize History";
this.historyRadioButton.UseVisualStyleBackColor = true;
this.historyRadioButton.CheckedChanged += new System.EventHandler(this.historyRadioButton_CheckedChanged);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPageGeneral);
this.tabControl1.Controls.Add(this.tabPageVisualization);
this.tabControl1.Controls.Add(this.tabPageFilters);
this.tabControl1.Location = new System.Drawing.Point(12, 74);
this.tabControl1.Name = "tabControl1";
this.tabControl1.Padding = new System.Drawing.Point(16, 6);
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(454, 373);
this.tabControl1.TabIndex = 15;
//
// tabPageGeneral
//
this.tabPageGeneral.Controls.Add(this.groupBox5);
this.tabPageGeneral.Controls.Add(this.historySettingsGroupBox);
this.tabPageGeneral.Location = new System.Drawing.Point(4, 31);
this.tabPageGeneral.Name = "tabPageGeneral";
this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
this.tabPageGeneral.Size = new System.Drawing.Size(446, 338);
this.tabPageGeneral.TabIndex = 0;
this.tabPageGeneral.Text = "General";
this.tabPageGeneral.UseVisualStyleBackColor = true;
//
// tabPageVisualization
//
this.tabPageVisualization.Controls.Add(this.groupBox4);
this.tabPageVisualization.Controls.Add(this.groupBox3);
this.tabPageVisualization.Location = new System.Drawing.Point(4, 31);
this.tabPageVisualization.Name = "tabPageVisualization";
this.tabPageVisualization.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
this.tabPageVisualization.Size = new System.Drawing.Size(446, 338);
this.tabPageVisualization.TabIndex = 1;
this.tabPageVisualization.Text = "Visualization";
this.tabPageVisualization.UseVisualStyleBackColor = true;
//
// tabPageFilters
//
this.tabPageFilters.Controls.Add(this.groupBox1);
this.tabPageFilters.Controls.Add(this.groupBox2);
this.tabPageFilters.Location = new System.Drawing.Point(4, 31);
this.tabPageFilters.Name = "tabPageFilters";
this.tabPageFilters.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
this.tabPageFilters.Size = new System.Drawing.Size(446, 338);
this.tabPageFilters.TabIndex = 2;
this.tabPageFilters.Text = "Filters";
this.tabPageFilters.UseVisualStyleBackColor = true;
//
// groupBox4
//
this.groupBox4.Controls.Add(this.setResolutionCheckBox);
this.groupBox4.Controls.Add(this.fullScreenCheckBox);
this.groupBox4.Controls.Add(this.resolutionHeightTextBox);
this.groupBox4.Controls.Add(this.label10);
this.groupBox4.Controls.Add(this.resolutionWidthTextBox);
this.groupBox4.Location = new System.Drawing.Point(14, 211);
this.groupBox4.Margin = new System.Windows.Forms.Padding(4);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Padding = new System.Windows.Forms.Padding(4);
this.groupBox4.Size = new System.Drawing.Size(420, 105);
this.groupBox4.TabIndex = 14;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "View Size";
//
// setResolutionCheckBox
//
this.setResolutionCheckBox.AutoSize = true;
this.setResolutionCheckBox.Location = new System.Drawing.Point(19, 62);
this.setResolutionCheckBox.Margin = new System.Windows.Forms.Padding(4);
this.setResolutionCheckBox.Name = "setResolutionCheckBox";
this.setResolutionCheckBox.Size = new System.Drawing.Size(122, 21);
this.setResolutionCheckBox.TabIndex = 1;
this.setResolutionCheckBox.Text = "Set Resolution";
this.setResolutionCheckBox.UseVisualStyleBackColor = true;
this.setResolutionCheckBox.CheckedChanged += new System.EventHandler(this.setResolutionCheckBox_CheckedChanged);
//
// fullScreenCheckBox
//
this.fullScreenCheckBox.AutoSize = true;
this.fullScreenCheckBox.Location = new System.Drawing.Point(19, 31);
this.fullScreenCheckBox.Margin = new System.Windows.Forms.Padding(4);
this.fullScreenCheckBox.Name = "fullScreenCheckBox";
this.fullScreenCheckBox.Size = new System.Drawing.Size(255, 21);
this.fullScreenCheckBox.TabIndex = 0;
this.fullScreenCheckBox.Text = "Full Screen mode (toggle Alt+Enter)";
this.fullScreenCheckBox.UseVisualStyleBackColor = true;
//
// resolutionHeightTextBox
//
this.resolutionHeightTextBox.Enabled = false;
this.resolutionHeightTextBox.Location = new System.Drawing.Point(253, 60);
this.resolutionHeightTextBox.Margin = new System.Windows.Forms.Padding(4);
this.resolutionHeightTextBox.MaxLength = 4;
this.resolutionHeightTextBox.Name = "resolutionHeightTextBox";
this.resolutionHeightTextBox.Size = new System.Drawing.Size(56, 22);
this.resolutionHeightTextBox.TabIndex = 3;
this.resolutionHeightTextBox.Text = "600";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(229, 63);
this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(14, 17);
this.label10.TabIndex = 3;
this.label10.Text = "x";
//
// resolutionWidthTextBox
//
this.resolutionWidthTextBox.Enabled = false;
this.resolutionWidthTextBox.Location = new System.Drawing.Point(159, 60);
this.resolutionWidthTextBox.Margin = new System.Windows.Forms.Padding(4);
this.resolutionWidthTextBox.MaxLength = 4;
this.resolutionWidthTextBox.Name = "resolutionWidthTextBox";
this.resolutionWidthTextBox.Size = new System.Drawing.Size(61, 22);
this.resolutionWidthTextBox.TabIndex = 2;
this.resolutionWidthTextBox.Text = "800";
//
// SettingForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cancelButton;
this.ClientSize = new System.Drawing.Size(477, 515);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.resetToDefaultButton);
this.Controls.Add(this.label1);
this.Controls.Add(this.pathTextBox);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.okButton);
this.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MainMenuStrip = this.menuStrip1;
this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SettingForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Visualization Settings";
this.historySettingsGroupBox.ResumeLayout(false);
this.historySettingsGroupBox.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPageGeneral.ResumeLayout(false);
this.tabPageVisualization.ResumeLayout(false);
this.tabPageFilters.ResumeLayout(false);
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : SettingsDialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : aglab2
License : GNU General Public License v3.0
Project Creator : aglab2
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.offsetComboBox = new System.Windows.Forms.ComboBox();
this.stringTextBox = new System.Windows.Forms.TextBox();
this.textOnlyCheckbox = new System.Windows.Forms.CheckBox();
this.checkBox7 = new System.Windows.Forms.CheckBox();
this.checkBox6 = new System.Windows.Forms.CheckBox();
this.checkBox5 = new System.Windows.Forms.CheckBox();
this.checkBox4 = new System.Windows.Forms.CheckBox();
this.checkBox3 = new System.Windows.Forms.CheckBox();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.checkBox8 = new System.Windows.Forms.CheckBox();
this.highlightPresetComboBox = new System.Windows.Forms.ComboBox();
this.is8StarsCheckbox = new System.Windows.Forms.CheckBox();
this.highlightOffsetTextBox = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(202, 117);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(51, 40);
this.button1.TabIndex = 2;
this.button1.Text = "Save";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// offsetComboBox
//
this.offsetComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.offsetComboBox.FormattingEnabled = true;
this.offsetComboBox.Items.AddRange(new object[] {
"Overworld",
"Flags 1",
"Flags 2",
"Flags 3",
"Course 1",
"Course 2",
"Course 3",
"Course 4",
"Course 5",
"Course 6",
"Course 7",
"Course 8",
"Course 9",
"Course 10",
"Course 11",
"Course 12",
"Course 13",
"Course 14",
"Course 15",
"Bowser 1",
"Bowser 2",
"Bowser 3",
"Peach Slide",
"Metal Cap",
"Wing Cap",
"Vanish Cap",
"Rainbow",
"Aquarium",
"\"The End\""});
this.offsetComboBox.Location = new System.Drawing.Point(6, 42);
this.offsetComboBox.Name = "offsetComboBox";
this.offsetComboBox.Size = new System.Drawing.Size(89, 21);
this.offsetComboBox.TabIndex = 3;
//
// stringTextBox
//
this.stringTextBox.Location = new System.Drawing.Point(9, 42);
this.stringTextBox.Name = "stringTextBox";
this.stringTextBox.Size = new System.Drawing.Size(114, 20);
this.stringTextBox.TabIndex = 0;
//
// textOnlyCheckbox
//
this.textOnlyCheckbox.AutoSize = true;
this.textOnlyCheckbox.Location = new System.Drawing.Point(9, 19);
this.textOnlyCheckbox.Name = "textOnlyCheckbox";
this.textOnlyCheckbox.Size = new System.Drawing.Size(71, 17);
this.textOnlyCheckbox.TabIndex = 0;
this.textOnlyCheckbox.Text = "Text Only";
this.textOnlyCheckbox.UseVisualStyleBackColor = true;
//
// checkBox7
//
this.checkBox7.AutoSize = true;
this.checkBox7.Location = new System.Drawing.Point(135, 46);
this.checkBox7.Name = "checkBox7";
this.checkBox7.Size = new System.Drawing.Size(15, 14);
this.checkBox7.TabIndex = 20;
this.checkBox7.UseVisualStyleBackColor = true;
//
// checkBox6
//
this.checkBox6.AutoSize = true;
this.checkBox6.Location = new System.Drawing.Point(114, 46);
this.checkBox6.Name = "checkBox6";
this.checkBox6.Size = new System.Drawing.Size(15, 14);
this.checkBox6.TabIndex = 19;
this.checkBox6.UseVisualStyleBackColor = true;
//
// checkBox5
//
this.checkBox5.AutoSize = true;
this.checkBox5.Location = new System.Drawing.Point(93, 46);
this.checkBox5.Name = "checkBox5";
this.checkBox5.Size = new System.Drawing.Size(15, 14);
this.checkBox5.TabIndex = 18;
this.checkBox5.UseVisualStyleBackColor = true;
//
// checkBox4
//
this.checkBox4.AutoSize = true;
this.checkBox4.Location = new System.Drawing.Point(72, 46);
this.checkBox4.Name = "checkBox4";
this.checkBox4.Size = new System.Drawing.Size(15, 14);
this.checkBox4.TabIndex = 17;
this.checkBox4.UseVisualStyleBackColor = true;
//
// checkBox3
//
this.checkBox3.AutoSize = true;
this.checkBox3.Location = new System.Drawing.Point(51, 46);
this.checkBox3.Name = "checkBox3";
this.checkBox3.Size = new System.Drawing.Size(15, 14);
this.checkBox3.TabIndex = 16;
this.checkBox3.UseVisualStyleBackColor = true;
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Location = new System.Drawing.Point(30, 46);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(15, 14);
this.checkBox2.TabIndex = 15;
this.checkBox2.UseVisualStyleBackColor = true;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(9, 46);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(15, 14);
this.checkBox1.TabIndex = 14;
this.checkBox1.UseVisualStyleBackColor = true;
//
// checkBox8
//
this.checkBox8.AutoSize = true;
this.checkBox8.Location = new System.Drawing.Point(156, 46);
this.checkBox8.Name = "checkBox8";
this.checkBox8.Size = new System.Drawing.Size(15, 14);
this.checkBox8.TabIndex = 13;
this.checkBox8.UseVisualStyleBackColor = true;
//
// highlightPresetComboBox
//
this.highlightPresetComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.highlightPresetComboBox.FormattingEnabled = true;
this.highlightPresetComboBox.Items.AddRange(new object[] {
"",
"Nothing",
"Wing Cap",
"Metal Cap",
"Vanish Cap",
"Bowser 1 Key",
"Bowser 2 Key"});
this.highlightPresetComboBox.Location = new System.Drawing.Point(9, 19);
this.highlightPresetComboBox.Name = "highlightPresetComboBox";
this.highlightPresetComboBox.Size = new System.Drawing.Size(99, 21);
this.highlightPresetComboBox.TabIndex = 21;
this.highlightPresetComboBox.SelectedIndexChanged += new System.EventHandler(this.highlightPresetComboBox_SelectedIndexChanged);
//
// is8StarsCheckbox
//
this.is8StarsCheckbox.AutoSize = true;
this.is8StarsCheckbox.Location = new System.Drawing.Point(6, 19);
this.is8StarsCheckbox.Name = "is8StarsCheckbox";
this.is8StarsCheckbox.Size = new System.Drawing.Size(89, 17);
this.is8StarsCheckbox.TabIndex = 23;
this.is8StarsCheckbox.Text = "Show 8 Stars";
this.is8StarsCheckbox.UseVisualStyleBackColor = true;
//
// highlightOffsetTextBox
//
this.highlightOffsetTextBox.Location = new System.Drawing.Point(114, 20);
this.highlightOffsetTextBox.Name = "highlightOffsetTextBox";
this.highlightOffsetTextBox.Size = new System.Drawing.Size(57, 20);
this.highlightOffsetTextBox.TabIndex = 24;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.textOnlyCheckbox);
this.groupBox1.Controls.Add(this.stringTextBox);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(134, 79);
this.groupBox1.TabIndex = 25;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Text";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.is8StarsCheckbox);
this.groupBox2.Controls.Add(this.offsetComboBox);
this.groupBox2.Location = new System.Drawing.Point(158, 12);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(104, 79);
this.groupBox2.TabIndex = 26;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Level";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.checkBox5);
this.groupBox3.Controls.Add(this.checkBox8);
this.groupBox3.Controls.Add(this.highlightOffsetTextBox);
this.groupBox3.Controls.Add(this.checkBox1);
this.groupBox3.Controls.Add(this.checkBox2);
this.groupBox3.Controls.Add(this.highlightPresetComboBox);
this.groupBox3.Controls.Add(this.checkBox3);
this.groupBox3.Controls.Add(this.checkBox7);
this.groupBox3.Controls.Add(this.checkBox4);
this.groupBox3.Controls.Add(this.checkBox6);
this.groupBox3.Location = new System.Drawing.Point(12, 97);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(179, 73);
this.groupBox3.TabIndex = 27;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Highlight";
//
// Settings
//
this.AcceptButton = this.button1;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(271, 173);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.button1);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Settings";
this.ShowIcon = false;
this.Text = "Settings";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : WarpDialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : aglab2
License : GNU General Public License v3.0
Project Creator : aglab2
private void InitializeComponent()
{
this.offsetComboBox = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
this.warpTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.areaTextBox = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// offsetComboBox
//
this.offsetComboBox.FormattingEnabled = true;
this.offsetComboBox.Items.AddRange(new object[] {
"Course 1",
"Course 2",
"Course 3",
"Course 4",
"Course 5",
"Course 6",
"Course 7",
"Course 8",
"Course 9",
"Course 10",
"Course 11",
"Course 12",
"Course 13",
"Course 14",
"Course 15",
"Bowser 1",
"Fight 1",
"Bowser 2",
"Fight 2",
"Bowser 3",
"Fight 3",
"Peach Slide",
"Metal Cap",
"Wing Cap",
"Vanish Cap",
"Rainbow",
"Aquarium",
"\"The End\"",
"Castle Grounds",
"Inside Castle",
"Castle Courtyard"});
this.offsetComboBox.Location = new System.Drawing.Point(12, 64);
this.offsetComboBox.Name = "offsetComboBox";
this.offsetComboBox.Size = new System.Drawing.Size(121, 21);
this.offsetComboBox.TabIndex = 5;
//
// button1
//
this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
this.button1.Location = new System.Drawing.Point(140, 64);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(51, 23);
this.button1.TabIndex = 4;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// warpTextBox
//
this.warpTextBox.Location = new System.Drawing.Point(73, 12);
this.warpTextBox.Name = "warpTextBox";
this.warpTextBox.Size = new System.Drawing.Size(117, 20);
this.warpTextBox.TabIndex = 6;
this.warpTextBox.Text = "10";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(47, 13);
this.label1.TabIndex = 7;
this.label1.Text = "Warp ID";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 41);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(43, 13);
this.label2.TabIndex = 8;
this.label2.Text = "Area ID";
//
// areaTextBox
//
this.areaTextBox.Location = new System.Drawing.Point(73, 38);
this.areaTextBox.Name = "areaTextBox";
this.areaTextBox.Size = new System.Drawing.Size(117, 20);
this.areaTextBox.TabIndex = 9;
this.areaTextBox.Text = "1";
//
// WarpDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(203, 95);
this.Controls.Add(this.areaTextBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.warpTextBox);
this.Controls.Add(this.offsetComboBox);
this.Controls.Add(this.button1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "WarpDialog";
this.ShowIcon = false;
this.Text = "Warp To";
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : FormPlotIconSettings.Designer.cs
License : GNU General Public License v3.0
Project Creator : AHeroicLlama
License : GNU General Public License v3.0
Project Creator : AHeroicLlama
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPlotIconSettings));
this.checkBoxCrosshairOuter = new System.Windows.Forms.CheckBox();
this.checkBoxCircle = new System.Windows.Forms.CheckBox();
this.checkBoxCrosshairInner = new System.Windows.Forms.CheckBox();
this.checkBoxSquare = new System.Windows.Forms.CheckBox();
this.checkBoxDiamond = new System.Windows.Forms.CheckBox();
this.buttonApply = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.groupBoxColorPalette = new System.Windows.Forms.GroupBox();
this.buttonRemoveColor = new System.Windows.Forms.Button();
this.labelLoadPalette = new System.Windows.Forms.Label();
this.comboBoxPalette = new System.Windows.Forms.ComboBox();
this.buttonAddColor = new System.Windows.Forms.Button();
this.listViewColorPalette = new System.Windows.Forms.ListView();
this.labelOpacityShadow = new System.Windows.Forms.Label();
this.labelOpacity = new System.Windows.Forms.Label();
this.trackBarIconWidth = new System.Windows.Forms.TrackBar();
this.labelIconWidth = new System.Windows.Forms.Label();
this.trackBarIconSize = new System.Windows.Forms.TrackBar();
this.labelIconSize = new System.Windows.Forms.Label();
this.toolTipControls = new System.Windows.Forms.ToolTip(this.components);
this.listViewShapePalette = new System.Windows.Forms.ListView();
this.trackBarIconOpacity = new System.Windows.Forms.TrackBar();
this.trackBarShadowOpacity = new System.Windows.Forms.TrackBar();
this.buttonRemoveShape = new System.Windows.Forms.Button();
this.buttonAddShape = new System.Windows.Forms.Button();
this.buttonReset = new System.Windows.Forms.Button();
this.checkBoxFill = new System.Windows.Forms.CheckBox();
this.colorDialogPalette = new System.Windows.Forms.ColorDialog();
this.groupBoxGeneral = new System.Windows.Forms.GroupBox();
this.groupBoxIconPalette = new System.Windows.Forms.GroupBox();
this.groupBoxColorPalette.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconWidth)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconSize)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconOpacity)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarShadowOpacity)).BeginInit();
this.groupBoxGeneral.SuspendLayout();
this.groupBoxIconPalette.SuspendLayout();
this.SuspendLayout();
//
// checkBoxCrosshairOuter
//
this.checkBoxCrosshairOuter.AutoSize = true;
this.checkBoxCrosshairOuter.Location = new System.Drawing.Point(80, 117);
this.checkBoxCrosshairOuter.Name = "checkBoxCrosshairOuter";
this.checkBoxCrosshairOuter.Size = new System.Drawing.Size(98, 17);
this.checkBoxCrosshairOuter.TabIndex = 5;
this.checkBoxCrosshairOuter.Text = "Outer Crosshair";
this.toolTipControls.SetToolTip(this.checkBoxCrosshairOuter, "Add a crosshair extruding from the plot icon.");
this.checkBoxCrosshairOuter.UseVisualStyleBackColor = true;
//
// checkBoxCircle
//
this.checkBoxCircle.AutoSize = true;
this.checkBoxCircle.Location = new System.Drawing.Point(6, 141);
this.checkBoxCircle.Name = "checkBoxCircle";
this.checkBoxCircle.Size = new System.Drawing.Size(52, 17);
this.checkBoxCircle.TabIndex = 3;
this.checkBoxCircle.Text = "Circle";
this.toolTipControls.SetToolTip(this.checkBoxCircle, "Add a circle shape to the plot icon.");
this.checkBoxCircle.UseVisualStyleBackColor = true;
//
// checkBoxCrosshairInner
//
this.checkBoxCrosshairInner.AutoSize = true;
this.checkBoxCrosshairInner.Location = new System.Drawing.Point(80, 94);
this.checkBoxCrosshairInner.Name = "checkBoxCrosshairInner";
this.checkBoxCrosshairInner.Size = new System.Drawing.Size(96, 17);
this.checkBoxCrosshairInner.TabIndex = 4;
this.checkBoxCrosshairInner.Text = "Inner Crosshair";
this.toolTipControls.SetToolTip(this.checkBoxCrosshairInner, "Add a crosshair within the plot icon.");
this.checkBoxCrosshairInner.UseVisualStyleBackColor = true;
//
// checkBoxSquare
//
this.checkBoxSquare.AutoSize = true;
this.checkBoxSquare.Location = new System.Drawing.Point(6, 118);
this.checkBoxSquare.Name = "checkBoxSquare";
this.checkBoxSquare.Size = new System.Drawing.Size(60, 17);
this.checkBoxSquare.TabIndex = 2;
this.checkBoxSquare.Text = "Square";
this.toolTipControls.SetToolTip(this.checkBoxSquare, "Add a square shape to the plot icon.");
this.checkBoxSquare.UseVisualStyleBackColor = true;
//
// checkBoxDiamond
//
this.checkBoxDiamond.AutoSize = true;
this.checkBoxDiamond.Location = new System.Drawing.Point(6, 94);
this.checkBoxDiamond.Name = "checkBoxDiamond";
this.checkBoxDiamond.Size = new System.Drawing.Size(68, 17);
this.checkBoxDiamond.TabIndex = 1;
this.checkBoxDiamond.Text = "Diamond";
this.toolTipControls.SetToolTip(this.checkBoxDiamond, "Add a diamond shape to the plot icon.");
this.checkBoxDiamond.UseVisualStyleBackColor = true;
//
// buttonApply
//
this.buttonApply.Location = new System.Drawing.Point(267, 343);
this.buttonApply.Name = "buttonApply";
this.buttonApply.Size = new System.Drawing.Size(75, 23);
this.buttonApply.TabIndex = 3;
this.buttonApply.Text = "Apply";
this.toolTipControls.SetToolTip(this.buttonApply, "Confirm and apply these settings.");
this.buttonApply.UseVisualStyleBackColor = true;
this.buttonApply.Click += new System.EventHandler(this.ButtonApply_Click);
//
// buttonCancel
//
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(348, 343);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 4;
this.buttonCancel.Text = "Cancel";
this.toolTipControls.SetToolTip(this.buttonCancel, "Discard any changes.");
this.buttonCancel.UseVisualStyleBackColor = true;
//
// groupBoxColorPalette
//
this.groupBoxColorPalette.Controls.Add(this.buttonRemoveColor);
this.groupBoxColorPalette.Controls.Add(this.labelLoadPalette);
this.groupBoxColorPalette.Controls.Add(this.comboBoxPalette);
this.groupBoxColorPalette.Controls.Add(this.buttonAddColor);
this.groupBoxColorPalette.Controls.Add(this.listViewColorPalette);
this.groupBoxColorPalette.Location = new System.Drawing.Point(12, 141);
this.groupBoxColorPalette.Name = "groupBoxColorPalette";
this.groupBoxColorPalette.Size = new System.Drawing.Size(209, 196);
this.groupBoxColorPalette.TabIndex = 1;
this.groupBoxColorPalette.TabStop = false;
this.groupBoxColorPalette.Text = "Color Palette";
this.toolTipControls.SetToolTip(this.groupBoxColorPalette, "The collection of colors which will be used to plot different items.");
//
// buttonRemoveColor
//
this.buttonRemoveColor.Location = new System.Drawing.Point(97, 164);
this.buttonRemoveColor.Name = "buttonRemoveColor";
this.buttonRemoveColor.Size = new System.Drawing.Size(105, 23);
this.buttonRemoveColor.TabIndex = 3;
this.buttonRemoveColor.Text = "Remove Selected";
this.toolTipControls.SetToolTip(this.buttonRemoveColor, "Remove the selected color(s) from the palette.");
this.buttonRemoveColor.UseVisualStyleBackColor = true;
this.buttonRemoveColor.Click += new System.EventHandler(this.ButtonRemoveColor_Click);
//
// labelLoadPalette
//
this.labelLoadPalette.AutoSize = true;
this.labelLoadPalette.Location = new System.Drawing.Point(6, 16);
this.labelLoadPalette.Name = "labelLoadPalette";
this.labelLoadPalette.Size = new System.Drawing.Size(63, 13);
this.labelLoadPalette.TabIndex = 3;
this.labelLoadPalette.Text = "Load preset";
this.toolTipControls.SetToolTip(this.labelLoadPalette, "Choose a premade color palette.");
//
// comboBoxPalette
//
this.comboBoxPalette.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxPalette.FormattingEnabled = true;
this.comboBoxPalette.Items.AddRange(new object[] {
"Default",
"Colorblind (IBM)",
"Colorblind (Wong)",
"Colorblind (Tol)"});
this.comboBoxPalette.Location = new System.Drawing.Point(6, 32);
this.comboBoxPalette.Name = "comboBoxPalette";
this.comboBoxPalette.Size = new System.Drawing.Size(197, 21);
this.comboBoxPalette.TabIndex = 0;
this.toolTipControls.SetToolTip(this.comboBoxPalette, "Choose a premade color palette.");
this.comboBoxPalette.SelectedIndexChanged += new System.EventHandler(this.ComboBoxColorPalette_SelectedIndexChanged);
//
// buttonAddColor
//
this.buttonAddColor.Location = new System.Drawing.Point(6, 164);
this.buttonAddColor.Name = "buttonAddColor";
this.buttonAddColor.Size = new System.Drawing.Size(85, 23);
this.buttonAddColor.TabIndex = 2;
this.buttonAddColor.Text = "Add Color";
this.toolTipControls.SetToolTip(this.buttonAddColor, "Choose a new color to add to the palette.");
this.buttonAddColor.UseVisualStyleBackColor = true;
this.buttonAddColor.Click += new System.EventHandler(this.ButtonAddColor_Click);
//
// listViewColorPalette
//
this.listViewColorPalette.HideSelection = false;
this.listViewColorPalette.LabelWrap = false;
this.listViewColorPalette.Location = new System.Drawing.Point(6, 59);
this.listViewColorPalette.Name = "listViewColorPalette";
this.listViewColorPalette.Size = new System.Drawing.Size(197, 99);
this.listViewColorPalette.TabIndex = 1;
this.toolTipControls.SetToolTip(this.listViewColorPalette, "The collection of colors which will be used to plot different items.");
this.listViewColorPalette.UseCompatibleStateImageBehavior = false;
this.listViewColorPalette.View = System.Windows.Forms.View.SmallIcon;
//
// labelOpacityShadow
//
this.labelOpacityShadow.AutoSize = true;
this.labelOpacityShadow.Location = new System.Drawing.Point(210, 70);
this.labelOpacityShadow.Name = "labelOpacityShadow";
this.labelOpacityShadow.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.labelOpacityShadow.Size = new System.Drawing.Size(85, 13);
this.labelOpacityShadow.TabIndex = 6;
this.labelOpacityShadow.Text = "Shadow Opacity";
this.toolTipControls.SetToolTip(this.labelOpacityShadow, "The opacity (apparent darkness) of a cast shadow.");
//
// labelOpacity
//
this.labelOpacity.AutoSize = true;
this.labelOpacity.Location = new System.Drawing.Point(228, 19);
this.labelOpacity.Name = "labelOpacity";
this.labelOpacity.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.labelOpacity.Size = new System.Drawing.Size(67, 13);
this.labelOpacity.TabIndex = 4;
this.labelOpacity.Text = "Icon Opacity";
this.toolTipControls.SetToolTip(this.labelOpacity, "The opacity of the icon.");
//
// trackBarIconWidth
//
this.trackBarIconWidth.LargeChange = 1;
this.trackBarIconWidth.Location = new System.Drawing.Point(71, 70);
this.trackBarIconWidth.Name = "trackBarIconWidth";
this.trackBarIconWidth.Size = new System.Drawing.Size(104, 45);
this.trackBarIconWidth.TabIndex = 1;
this.toolTipControls.SetToolTip(this.trackBarIconWidth, "The width of the lines (and shadows) which form the plot icon.");
this.trackBarIconWidth.Value = 1;
//
// labelIconWidth
//
this.labelIconWidth.AutoSize = true;
this.labelIconWidth.Location = new System.Drawing.Point(6, 70);
this.labelIconWidth.Name = "labelIconWidth";
this.labelIconWidth.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.labelIconWidth.Size = new System.Drawing.Size(59, 13);
this.labelIconWidth.TabIndex = 10;
this.labelIconWidth.Text = "Icon Width";
this.toolTipControls.SetToolTip(this.labelIconWidth, "The width of the lines (and shadows) which form the plot icon.");
//
// trackBarIconSize
//
this.trackBarIconSize.LargeChange = 3;
this.trackBarIconSize.Location = new System.Drawing.Point(71, 19);
this.trackBarIconSize.Name = "trackBarIconSize";
this.trackBarIconSize.Size = new System.Drawing.Size(104, 45);
this.trackBarIconSize.TabIndex = 0;
this.toolTipControls.SetToolTip(this.trackBarIconSize, "The maximum diameter of the plot icon.");
this.trackBarIconSize.Value = 1;
//
// labelIconSize
//
this.labelIconSize.AutoSize = true;
this.labelIconSize.Location = new System.Drawing.Point(14, 19);
this.labelIconSize.Name = "labelIconSize";
this.labelIconSize.Size = new System.Drawing.Size(51, 13);
this.labelIconSize.TabIndex = 10;
this.labelIconSize.Text = "Icon Size";
this.toolTipControls.SetToolTip(this.labelIconSize, "The maximum diameter of the plot icon.");
//
// listViewShapePalette
//
this.listViewShapePalette.HideSelection = false;
this.listViewShapePalette.LabelWrap = false;
this.listViewShapePalette.Location = new System.Drawing.Point(6, 19);
this.listViewShapePalette.MultiSelect = false;
this.listViewShapePalette.Name = "listViewShapePalette";
this.listViewShapePalette.Size = new System.Drawing.Size(184, 69);
this.listViewShapePalette.TabIndex = 0;
this.toolTipControls.SetToolTip(this.listViewShapePalette, "The collection of shapes which will be used to plot different items.");
this.listViewShapePalette.UseCompatibleStateImageBehavior = false;
this.listViewShapePalette.View = System.Windows.Forms.View.SmallIcon;
this.listViewShapePalette.SelectedIndexChanged += new System.EventHandler(this.ListViewShapePalette_SelectedIndexChanged);
//
// trackBarIconOpacity
//
this.trackBarIconOpacity.LargeChange = 3;
this.trackBarIconOpacity.Location = new System.Drawing.Point(301, 19);
this.trackBarIconOpacity.Name = "trackBarIconOpacity";
this.trackBarIconOpacity.Size = new System.Drawing.Size(104, 45);
this.trackBarIconOpacity.TabIndex = 2;
this.toolTipControls.SetToolTip(this.trackBarIconOpacity, "The opacity of the icon.");
this.trackBarIconOpacity.Value = 1;
//
// trackBarShadowOpacity
//
this.trackBarShadowOpacity.LargeChange = 3;
this.trackBarShadowOpacity.Location = new System.Drawing.Point(301, 70);
this.trackBarShadowOpacity.Name = "trackBarShadowOpacity";
this.trackBarShadowOpacity.Size = new System.Drawing.Size(104, 45);
this.trackBarShadowOpacity.TabIndex = 5;
this.toolTipControls.SetToolTip(this.trackBarShadowOpacity, "The opacity (apparent darkness) of a cast shadow.");
//
// buttonRemoveShape
//
this.buttonRemoveShape.Location = new System.Drawing.Point(81, 164);
this.buttonRemoveShape.Name = "buttonRemoveShape";
this.buttonRemoveShape.Size = new System.Drawing.Size(102, 23);
this.buttonRemoveShape.TabIndex = 7;
this.buttonRemoveShape.Text = "Remove Selected";
this.toolTipControls.SetToolTip(this.buttonRemoveShape, "Remove the currently selected shape from the palette.");
this.buttonRemoveShape.UseVisualStyleBackColor = true;
this.buttonRemoveShape.Click += new System.EventHandler(this.ButtonRemoveShape_Click);
//
// buttonAddShape
//
this.buttonAddShape.Location = new System.Drawing.Point(6, 164);
this.buttonAddShape.Name = "buttonAddShape";
this.buttonAddShape.Size = new System.Drawing.Size(69, 23);
this.buttonAddShape.TabIndex = 6;
this.buttonAddShape.Text = "Add Shape";
this.toolTipControls.SetToolTip(this.buttonAddShape, "Add a new shape to the palette.");
this.buttonAddShape.UseVisualStyleBackColor = true;
this.buttonAddShape.Click += new System.EventHandler(this.ButtonAddShape_Click);
//
// buttonReset
//
this.buttonReset.Location = new System.Drawing.Point(12, 343);
this.buttonReset.Name = "buttonReset";
this.buttonReset.Size = new System.Drawing.Size(97, 23);
this.buttonReset.TabIndex = 5;
this.buttonReset.Text = "Reset to Default";
this.toolTipControls.SetToolTip(this.buttonReset, "Reset all plot settings on this form to default values.");
this.buttonReset.UseVisualStyleBackColor = true;
this.buttonReset.Click += new System.EventHandler(this.ButtonReset_Click);
//
// checkBoxFill
//
this.checkBoxFill.AutoSize = true;
this.checkBoxFill.Location = new System.Drawing.Point(80, 141);
this.checkBoxFill.Name = "checkBoxFill";
this.checkBoxFill.Size = new System.Drawing.Size(72, 17);
this.checkBoxFill.TabIndex = 8;
this.checkBoxFill.Text = "Fill Shape";
this.toolTipControls.SetToolTip(this.checkBoxFill, "Fill hollow shapes with solid color.");
this.checkBoxFill.UseVisualStyleBackColor = true;
//
// groupBoxGeneral
//
this.groupBoxGeneral.Controls.Add(this.trackBarShadowOpacity);
this.groupBoxGeneral.Controls.Add(this.labelOpacityShadow);
this.groupBoxGeneral.Controls.Add(this.trackBarIconOpacity);
this.groupBoxGeneral.Controls.Add(this.labelIconWidth);
this.groupBoxGeneral.Controls.Add(this.trackBarIconWidth);
this.groupBoxGeneral.Controls.Add(this.labelOpacity);
this.groupBoxGeneral.Controls.Add(this.trackBarIconSize);
this.groupBoxGeneral.Controls.Add(this.labelIconSize);
this.groupBoxGeneral.Location = new System.Drawing.Point(12, 12);
this.groupBoxGeneral.Name = "groupBoxGeneral";
this.groupBoxGeneral.Size = new System.Drawing.Size(411, 123);
this.groupBoxGeneral.TabIndex = 0;
this.groupBoxGeneral.TabStop = false;
this.groupBoxGeneral.Text = "General";
//
// groupBoxIconPalette
//
this.groupBoxIconPalette.Controls.Add(this.checkBoxFill);
this.groupBoxIconPalette.Controls.Add(this.listViewShapePalette);
this.groupBoxIconPalette.Controls.Add(this.checkBoxCrosshairOuter);
this.groupBoxIconPalette.Controls.Add(this.buttonRemoveShape);
this.groupBoxIconPalette.Controls.Add(this.buttonAddShape);
this.groupBoxIconPalette.Controls.Add(this.checkBoxCircle);
this.groupBoxIconPalette.Controls.Add(this.checkBoxDiamond);
this.groupBoxIconPalette.Controls.Add(this.checkBoxCrosshairInner);
this.groupBoxIconPalette.Controls.Add(this.checkBoxSquare);
this.groupBoxIconPalette.Location = new System.Drawing.Point(227, 141);
this.groupBoxIconPalette.Name = "groupBoxIconPalette";
this.groupBoxIconPalette.Size = new System.Drawing.Size(196, 196);
this.groupBoxIconPalette.TabIndex = 2;
this.groupBoxIconPalette.TabStop = false;
this.groupBoxIconPalette.Text = "Shape Palette";
//
// FormPlotIconSettings
//
this.AcceptButton = this.buttonApply;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(434, 377);
this.Controls.Add(this.groupBoxGeneral);
this.Controls.Add(this.buttonReset);
this.Controls.Add(this.groupBoxColorPalette);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.groupBoxIconPalette);
this.Controls.Add(this.buttonApply);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormPlotIconSettings";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Plot Icon Settings";
this.groupBoxColorPalette.ResumeLayout(false);
this.groupBoxColorPalette.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconWidth)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconSize)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarIconOpacity)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.trackBarShadowOpacity)).EndInit();
this.groupBoxGeneral.ResumeLayout(false);
this.groupBoxGeneral.PerformLayout();
this.groupBoxIconPalette.ResumeLayout(false);
this.groupBoxIconPalette.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : frmLogs.Designer.cs
License : MIT License
Project Creator : ahm3tcelik
License : MIT License
Project Creator : ahm3tcelik
private void InitializeComponent()
{
this.tbxSearch = new MetroFramework.Controls.MetroTextBox();
this.tbxHome = new MetroFramework.Controls.MetroLink();
this.metroLink1 = new MetroFramework.Controls.MetroLink();
this.tbxCounter = new MetroFramework.Controls.MetroLabel();
this.lvLogs = 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.cbxEvents = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// tbxSearch
//
//
//
//
this.tbxSearch.CustomButton.Image = null;
this.tbxSearch.CustomButton.Location = new System.Drawing.Point(99, 1);
this.tbxSearch.CustomButton.Name = "";
this.tbxSearch.CustomButton.Size = new System.Drawing.Size(21, 21);
this.tbxSearch.CustomButton.Style = MetroFramework.MetroColorStyle.Blue;
this.tbxSearch.CustomButton.TabIndex = 1;
this.tbxSearch.CustomButton.Theme = MetroFramework.MetroThemeStyle.Light;
this.tbxSearch.CustomButton.UseSelectable = true;
this.tbxSearch.CustomButton.Visible = false;
this.tbxSearch.Lines = new string[0];
this.tbxSearch.Location = new System.Drawing.Point(656, 36);
this.tbxSearch.MaxLength = 32767;
this.tbxSearch.Name = "tbxSearch";
this.tbxSearch.PreplacedwordChar = '\0';
this.tbxSearch.PromptText = "Ara...";
this.tbxSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
this.tbxSearch.SelectedText = "";
this.tbxSearch.SelectionLength = 0;
this.tbxSearch.SelectionStart = 0;
this.tbxSearch.ShortcutsEnabled = true;
this.tbxSearch.Size = new System.Drawing.Size(121, 23);
this.tbxSearch.TabIndex = 1;
this.tbxSearch.UseSelectable = true;
this.tbxSearch.WaterMark = "Ara...";
this.tbxSearch.WaterMarkColor = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(109)))), ((int)(((byte)(109)))));
this.tbxSearch.WaterMarkFont = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Pixel);
this.tbxSearch.TextChanged += new System.EventHandler(this.tbxSearch_TextChanged);
//
// tbxHome
//
this.tbxHome.BackColor = System.Drawing.Color.White;
this.tbxHome.Cursor = System.Windows.Forms.Cursors.Hand;
this.tbxHome.FontSize = MetroFramework.MetroLinkSize.Tall;
this.tbxHome.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(26)))), ((int)(((byte)(66)))));
this.tbxHome.Location = new System.Drawing.Point(23, 33);
this.tbxHome.Name = "tbxHome";
this.tbxHome.Size = new System.Drawing.Size(103, 24);
this.tbxHome.TabIndex = 2;
this.tbxHome.Text = "Ana Sayfa";
this.tbxHome.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.tbxHome.UseCustomForeColor = true;
this.tbxHome.UseSelectable = true;
this.tbxHome.Click += new System.EventHandler(this.tbxHome_Click);
//
// metroLink1
//
this.metroLink1.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.metroLink1.FontSize = MetroFramework.MetroLinkSize.Medium;
this.metroLink1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(26)))), ((int)(((byte)(66)))));
this.metroLink1.Location = new System.Drawing.Point(116, 35);
this.metroLink1.Name = "metroLink1";
this.metroLink1.Size = new System.Drawing.Size(112, 24);
this.metroLink1.TabIndex = 3;
this.metroLink1.Text = "/ Log Kayıtları";
this.metroLink1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.metroLink1.UseCustomForeColor = true;
this.metroLink1.UseSelectable = true;
//
// tbxCounter
//
this.tbxCounter.AutoSize = true;
this.tbxCounter.FontSize = MetroFramework.MetroLabelSize.Small;
this.tbxCounter.FontWeight = MetroFramework.MetroLabelWeight.Regular;
this.tbxCounter.Location = new System.Drawing.Point(20, 396);
this.tbxCounter.Name = "tbxCounter";
this.tbxCounter.Size = new System.Drawing.Size(42, 15);
this.tbxCounter.TabIndex = 4;
this.tbxCounter.Text = "Satır: 6";
//
// lvLogs
//
this.lvLogs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4});
this.lvLogs.FullRowSelect = true;
this.lvLogs.GridLines = true;
this.lvLogs.HideSelection = false;
this.lvLogs.Location = new System.Drawing.Point(23, 65);
this.lvLogs.Name = "lvLogs";
this.lvLogs.Size = new System.Drawing.Size(757, 358);
this.lvLogs.TabIndex = 5;
this.lvLogs.UseCompatibleStateImageBehavior = false;
this.lvLogs.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "#";
//
// columnHeader2
//
this.columnHeader2.Text = "Mesaj";
//
// columnHeader3
//
this.columnHeader3.Text = "Tarih";
//
// columnHeader4
//
this.columnHeader4.Text = "Olay";
//
// cbxEvents
//
this.cbxEvents.FormattingEnabled = true;
this.cbxEvents.Items.AddRange(new object[] {
"AUTH",
"LOGIN",
"LOGOUT"});
this.cbxEvents.Location = new System.Drawing.Point(529, 37);
this.cbxEvents.Name = "cbxEvents";
this.cbxEvents.Size = new System.Drawing.Size(121, 21);
this.cbxEvents.TabIndex = 7;
this.cbxEvents.Text = "Tümü";
this.cbxEvents.SelectedIndexChanged += new System.EventHandler(this.cbxEvents_SelectedIndexChanged);
//
// frmLogs
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.cbxEvents);
this.Controls.Add(this.lvLogs);
this.Controls.Add(this.tbxCounter);
this.Controls.Add(this.metroLink1);
this.Controls.Add(this.tbxHome);
this.Controls.Add(this.tbxSearch);
this.DisplayHeader = false;
this.Name = "frmLogs";
this.Padding = new System.Windows.Forms.Padding(20, 30, 20, 20);
this.Style = MetroFramework.MetroColorStyle.Silver;
this.Load += new System.EventHandler(this.frmLogs_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Dashboard.Designer.cs
License : GNU General Public License v3.0
Project Creator : AHosseinRnj
License : GNU General Public License v3.0
Project Creator : AHosseinRnj
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Dashboard));
this.ExitBtn = new System.Windows.Forms.Button();
this.MiniBtn = new System.Windows.Forms.Button();
this.SeprLbl = new System.Windows.Forms.Label();
this.NameLbl = new System.Windows.Forms.Label();
this.CountriesCmBox = new System.Windows.Forms.ComboBox();
this.CountriesFlgPicBox = new System.Windows.Forms.PictureBox();
this.ConnectBtn = new System.Windows.Forms.Button();
this.DisconnectBtn = new System.Windows.Forms.Button();
this.statusPicbox = new System.Windows.Forms.PictureBox();
this.usermode_Lbl = new System.Windows.Forms.Label();
this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.openApplicationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.InfoBtn = new System.Windows.Forms.Button();
this.PPTP_rBtn = new System.Windows.Forms.RadioButton();
this.ProtocolGrpBox = new System.Windows.Forms.GroupBox();
this.RecommendedLbl = new System.Windows.Forms.Label();
this.L2TP_rBtn = new System.Windows.Forms.RadioButton();
((System.ComponentModel.ISupportInitialize)(this.CountriesFlgPicBox)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusPicbox)).BeginInit();
this.CMenu.SuspendLayout();
this.ProtocolGrpBox.SuspendLayout();
this.SuspendLayout();
//
// ExitBtn
//
this.ExitBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.ExitBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.ExitBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ExitBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.ExitBtn.Location = new System.Drawing.Point(304, 3);
this.ExitBtn.Name = "ExitBtn";
this.ExitBtn.Size = new System.Drawing.Size(25, 26);
this.ExitBtn.TabIndex = 0;
this.ExitBtn.Text = "X";
this.ExitBtn.UseVisualStyleBackColor = true;
this.ExitBtn.Click += new System.EventHandler(this.ExitBtn_Click);
//
// MiniBtn
//
this.MiniBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.MiniBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.MiniBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MiniBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.MiniBtn.Location = new System.Drawing.Point(276, 3);
this.MiniBtn.Name = "MiniBtn";
this.MiniBtn.Size = new System.Drawing.Size(25, 26);
this.MiniBtn.TabIndex = 1;
this.MiniBtn.Text = "_";
this.MiniBtn.UseVisualStyleBackColor = true;
this.MiniBtn.Click += new System.EventHandler(this.MiniBtn_Click);
//
// SeprLbl
//
this.SeprLbl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.SeprLbl.Location = new System.Drawing.Point(3, 35);
this.SeprLbl.Name = "SeprLbl";
this.SeprLbl.Size = new System.Drawing.Size(326, 1);
this.SeprLbl.TabIndex = 2;
//
// NameLbl
//
this.NameLbl.AutoSize = true;
this.NameLbl.Font = new System.Drawing.Font("Microsoft Tai Le", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.NameLbl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.NameLbl.Location = new System.Drawing.Point(-1, 7);
this.NameLbl.Name = "NameLbl";
this.NameLbl.Size = new System.Drawing.Size(145, 22);
this.NameLbl.TabIndex = 3;
this.NameLbl.Text = "SimpleVPN 1.3.4";
//
// CountriesCmBox
//
this.CountriesCmBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(27)))), ((int)(((byte)(33)))));
this.CountriesCmBox.Cursor = System.Windows.Forms.Cursors.Hand;
this.CountriesCmBox.DropDownHeight = 95;
this.CountriesCmBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.CountriesCmBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.CountriesCmBox.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.CountriesCmBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.CountriesCmBox.FormattingEnabled = true;
this.CountriesCmBox.IntegralHeight = false;
this.CountriesCmBox.ItemHeight = 23;
this.CountriesCmBox.Items.AddRange(new object[] {
"Select",
"France",
"Canada",
"Germany",
"Argentina",
"Netherlands",
"United States",
"Russian Federation"});
this.CountriesCmBox.Location = new System.Drawing.Point(12, 285);
this.CountriesCmBox.Name = "CountriesCmBox";
this.CountriesCmBox.Size = new System.Drawing.Size(269, 31);
this.CountriesCmBox.TabIndex = 4;
this.CountriesCmBox.SelectedIndexChanged += new System.EventHandler(this.CountriesCmBox_SelectedIndexChanged);
//
// CountriesFlgPicBox
//
this.CountriesFlgPicBox.Location = new System.Drawing.Point(286, 285);
this.CountriesFlgPicBox.Name = "CountriesFlgPicBox";
this.CountriesFlgPicBox.Size = new System.Drawing.Size(34, 31);
this.CountriesFlgPicBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.CountriesFlgPicBox.TabIndex = 5;
this.CountriesFlgPicBox.TabStop = false;
//
// ConnectBtn
//
this.ConnectBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.ConnectBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.ConnectBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ConnectBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.ConnectBtn.Location = new System.Drawing.Point(12, 324);
this.ConnectBtn.Name = "ConnectBtn";
this.ConnectBtn.Size = new System.Drawing.Size(155, 43);
this.ConnectBtn.TabIndex = 6;
this.ConnectBtn.Text = "Connect";
this.ConnectBtn.UseVisualStyleBackColor = true;
this.ConnectBtn.Click += new System.EventHandler(this.ConnectBtn_Click);
//
// DisconnectBtn
//
this.DisconnectBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.DisconnectBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.DisconnectBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.DisconnectBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.DisconnectBtn.Location = new System.Drawing.Point(170, 324);
this.DisconnectBtn.Name = "DisconnectBtn";
this.DisconnectBtn.Size = new System.Drawing.Size(150, 43);
this.DisconnectBtn.TabIndex = 7;
this.DisconnectBtn.Text = "Disconnect";
this.DisconnectBtn.UseVisualStyleBackColor = true;
this.DisconnectBtn.Click += new System.EventHandler(this.DisconnectBtn_Click);
//
// statusPicbox
//
this.statusPicbox.Image = global::Simple_VPN.Properties.Resources.Disconnectpic;
this.statusPicbox.Location = new System.Drawing.Point(77, 46);
this.statusPicbox.Name = "statusPicbox";
this.statusPicbox.Size = new System.Drawing.Size(181, 181);
this.statusPicbox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.statusPicbox.TabIndex = 8;
this.statusPicbox.TabStop = false;
//
// usermode_Lbl
//
this.usermode_Lbl.AutoSize = true;
this.usermode_Lbl.BackColor = System.Drawing.Color.Transparent;
this.usermode_Lbl.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.usermode_Lbl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.usermode_Lbl.Location = new System.Drawing.Point(138, 14);
this.usermode_Lbl.Name = "usermode_Lbl";
this.usermode_Lbl.Size = new System.Drawing.Size(43, 14);
this.usermode_Lbl.TabIndex = 11;
this.usermode_Lbl.Text = "(Latest)";
//
// NotifyIcon
//
this.NotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.NotifyIcon.BalloonTipText = "Running in background";
this.NotifyIcon.BalloonTipreplacedle = "SimpleVPN";
this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
this.NotifyIcon.Text = "SimpleVPN";
this.NotifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.NotifyIcon_MouseDoubleClick);
//
// openApplicationToolStripMenuItem
//
this.openApplicationToolStripMenuItem.Name = "openApplicationToolStripMenuItem";
this.openApplicationToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.openApplicationToolStripMenuItem.Text = "Open Application";
this.openApplicationToolStripMenuItem.Click += new System.EventHandler(this.openApplicationToolStripMenuItem_Click);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// CMenu
//
this.CMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openApplicationToolStripMenuItem,
this.exitToolStripMenuItem});
this.CMenu.Name = "CMenu";
this.CMenu.Size = new System.Drawing.Size(168, 48);
//
// InfoBtn
//
this.InfoBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.InfoBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.InfoBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.InfoBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.InfoBtn.Location = new System.Drawing.Point(248, 3);
this.InfoBtn.Name = "InfoBtn";
this.InfoBtn.Size = new System.Drawing.Size(25, 26);
this.InfoBtn.TabIndex = 12;
this.InfoBtn.Text = "?";
this.InfoBtn.UseVisualStyleBackColor = true;
this.InfoBtn.Click += new System.EventHandler(this.InfoBtn_Click);
//
// PPTP_rBtn
//
this.PPTP_rBtn.AutoSize = true;
this.PPTP_rBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.PPTP_rBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.PPTP_rBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.PPTP_rBtn.Location = new System.Drawing.Point(41, 13);
this.PPTP_rBtn.Name = "PPTP_rBtn";
this.PPTP_rBtn.Size = new System.Drawing.Size(71, 27);
this.PPTP_rBtn.TabIndex = 13;
this.PPTP_rBtn.Text = "PPTP";
this.PPTP_rBtn.UseVisualStyleBackColor = true;
this.PPTP_rBtn.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PPTP_rBtn_MouseClick);
//
// ProtocolGrpBox
//
this.ProtocolGrpBox.Controls.Add(this.RecommendedLbl);
this.ProtocolGrpBox.Controls.Add(this.L2TP_rBtn);
this.ProtocolGrpBox.Controls.Add(this.PPTP_rBtn);
this.ProtocolGrpBox.Font = new System.Drawing.Font("Microsoft Tai Le", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.ProtocolGrpBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.ProtocolGrpBox.Location = new System.Drawing.Point(12, 233);
this.ProtocolGrpBox.Name = "ProtocolGrpBox";
this.ProtocolGrpBox.Size = new System.Drawing.Size(308, 46);
this.ProtocolGrpBox.TabIndex = 14;
this.ProtocolGrpBox.TabStop = false;
this.ProtocolGrpBox.Text = "Protocol";
//
// RecommendedLbl
//
this.RecommendedLbl.AutoSize = true;
this.RecommendedLbl.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.RecommendedLbl.Location = new System.Drawing.Point(104, 22);
this.RecommendedLbl.Name = "RecommendedLbl";
this.RecommendedLbl.Size = new System.Drawing.Size(86, 14);
this.RecommendedLbl.TabIndex = 15;
this.RecommendedLbl.Text = "(recommended)";
//
// L2TP_rBtn
//
this.L2TP_rBtn.AutoSize = true;
this.L2TP_rBtn.Cursor = System.Windows.Forms.Cursors.Hand;
this.L2TP_rBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.L2TP_rBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
this.L2TP_rBtn.Location = new System.Drawing.Point(206, 13);
this.L2TP_rBtn.Name = "L2TP_rBtn";
this.L2TP_rBtn.Size = new System.Drawing.Size(68, 27);
this.L2TP_rBtn.TabIndex = 14;
this.L2TP_rBtn.Text = "L2TP";
this.L2TP_rBtn.UseVisualStyleBackColor = true;
this.L2TP_rBtn.MouseClick += new System.Windows.Forms.MouseEventHandler(this.L2TP_rBtn_MouseClick);
//
// Dashboard
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(27)))), ((int)(((byte)(33)))));
this.ClientSize = new System.Drawing.Size(332, 380);
this.ControlBox = false;
this.Controls.Add(this.ProtocolGrpBox);
this.Controls.Add(this.InfoBtn);
this.Controls.Add(this.usermode_Lbl);
this.Controls.Add(this.statusPicbox);
this.Controls.Add(this.DisconnectBtn);
this.Controls.Add(this.ConnectBtn);
this.Controls.Add(this.CountriesFlgPicBox);
this.Controls.Add(this.CountriesCmBox);
this.Controls.Add(this.NameLbl);
this.Controls.Add(this.SeprLbl);
this.Controls.Add(this.MiniBtn);
this.Controls.Add(this.ExitBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "Dashboard";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Load += new System.EventHandler(this.Form1_Load);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
((System.ComponentModel.ISupportInitialize)(this.CountriesFlgPicBox)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.statusPicbox)).EndInit();
this.CMenu.ResumeLayout(false);
this.ProtocolGrpBox.ResumeLayout(false);
this.ProtocolGrpBox.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : addForm.Designer.cs
License : MIT License
Project Creator : ajohns6
License : MIT License
Project Creator : ajohns6
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(addForm));
this.localLabel = new System.Windows.Forms.Label();
this.fileText = new System.Windows.Forms.TextBox();
this.browseButton = new System.Windows.Forms.Button();
this.nameText = new System.Windows.Forms.TextBox();
this.nameLabel = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.typeCombo = new System.Windows.Forms.ComboBox();
this.creatorText = new System.Windows.Forms.TextBox();
this.creatorLabel = new System.Windows.Forms.Label();
this.descLabel = new System.Windows.Forms.Label();
this.descText = new System.Windows.Forms.RichTextBox();
this.cancelButton = new System.Windows.Forms.Button();
this.addButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// localLabel
//
this.localLabel.AutoSize = true;
this.localLabel.Location = new System.Drawing.Point(15, 12);
this.localLabel.Name = "localLabel";
this.localLabel.Size = new System.Drawing.Size(76, 13);
this.localLabel.TabIndex = 0;
this.localLabel.Text = "Local PAK File";
//
// fileText
//
this.fileText.Location = new System.Drawing.Point(15, 28);
this.fileText.Name = "fileText";
this.fileText.Size = new System.Drawing.Size(248, 20);
this.fileText.TabIndex = 1;
//
// browseButton
//
this.browseButton.AutoSize = true;
this.browseButton.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.browseButton.Location = new System.Drawing.Point(269, 26);
this.browseButton.Name = "browseButton";
this.browseButton.Size = new System.Drawing.Size(26, 23);
this.browseButton.TabIndex = 2;
this.browseButton.Text = "...";
this.browseButton.UseVisualStyleBackColor = true;
this.browseButton.Click += new System.EventHandler(this.browseButton_Click);
//
// nameText
//
this.nameText.Location = new System.Drawing.Point(15, 67);
this.nameText.Name = "nameText";
this.nameText.Size = new System.Drawing.Size(200, 20);
this.nameText.TabIndex = 3;
//
// nameLabel
//
this.nameLabel.AutoSize = true;
this.nameLabel.Location = new System.Drawing.Point(15, 51);
this.nameLabel.Name = "nameLabel";
this.nameLabel.Size = new System.Drawing.Size(83, 13);
this.nameLabel.TabIndex = 4;
this.nameLabel.Text = "PAK Mod Name";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(298, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(55, 13);
this.label1.TabIndex = 5;
this.label1.Text = "PAK Type";
//
// typeCombo
//
this.typeCombo.FormattingEnabled = true;
this.typeCombo.Items.AddRange(new object[] {
"Texture",
"Model",
"Music",
"Misc",
"Combo"});
this.typeCombo.Location = new System.Drawing.Point(301, 26);
this.typeCombo.Name = "typeCombo";
this.typeCombo.Size = new System.Drawing.Size(121, 21);
this.typeCombo.TabIndex = 6;
this.typeCombo.Text = "Select PAK type...";
//
// creatorText
//
this.creatorText.Location = new System.Drawing.Point(222, 67);
this.creatorText.Name = "creatorText";
this.creatorText.Size = new System.Drawing.Size(200, 20);
this.creatorText.TabIndex = 7;
//
// creatorLabel
//
this.creatorLabel.AutoSize = true;
this.creatorLabel.Location = new System.Drawing.Point(219, 51);
this.creatorLabel.Name = "creatorLabel";
this.creatorLabel.Size = new System.Drawing.Size(65, 13);
this.creatorLabel.TabIndex = 8;
this.creatorLabel.Text = "PAK Creator";
//
// descLabel
//
this.descLabel.AutoSize = true;
this.descLabel.Location = new System.Drawing.Point(15, 90);
this.descLabel.Name = "descLabel";
this.descLabel.Size = new System.Drawing.Size(84, 13);
this.descLabel.TabIndex = 9;
this.descLabel.Text = "Brief Description";
//
// descText
//
this.descText.Location = new System.Drawing.Point(15, 106);
this.descText.Name = "descText";
this.descText.Size = new System.Drawing.Size(407, 31);
this.descText.TabIndex = 10;
this.descText.Text = "";
//
// cancelButton
//
this.cancelButton.Location = new System.Drawing.Point(347, 143);
this.cancelButton.Name = "cancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 11;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
//
// addButton
//
this.addButton.Location = new System.Drawing.Point(269, 143);
this.addButton.Name = "addButton";
this.addButton.Size = new System.Drawing.Size(75, 23);
this.addButton.TabIndex = 12;
this.addButton.Text = "Add";
this.addButton.UseVisualStyleBackColor = true;
this.addButton.Click += new System.EventHandler(this.addButton_Click);
//
// addForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.ClientSize = new System.Drawing.Size(1159, 641);
this.Controls.Add(this.addButton);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.descText);
this.Controls.Add(this.descLabel);
this.Controls.Add(this.creatorLabel);
this.Controls.Add(this.creatorText);
this.Controls.Add(this.typeCombo);
this.Controls.Add(this.label1);
this.Controls.Add(this.nameLabel);
this.Controls.Add(this.nameText);
this.Controls.Add(this.browseButton);
this.Controls.Add(this.fileText);
this.Controls.Add(this.localLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "addForm";
this.Padding = new System.Windows.Forms.Padding(12);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Add Local PAK";
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : PriceExternalList.Designer.cs
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBoxImport = new System.Windows.Forms.GroupBox();
this.checkBoxImportLog = new System.Windows.Forms.CheckBox();
this.buttonImport = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.comboBoxCondition = new System.Windows.Forms.ComboBox();
this.labelCondition = new System.Windows.Forms.Label();
this.comboBoxLanguage = new System.Windows.Forms.ComboBox();
this.labelLanguage = new System.Windows.Forms.Label();
this.comboBoxExpansion = new System.Windows.Forms.ComboBox();
this.labelExpansion = new System.Windows.Forms.Label();
this.comboBoxPlayset = new System.Windows.Forms.ComboBox();
this.labelPlayset = new System.Windows.Forms.Label();
this.comboBoxAltered = new System.Windows.Forms.ComboBox();
this.labelAltered = new System.Windows.Forms.Label();
this.comboBoxSigned = new System.Windows.Forms.ComboBox();
this.labelSinged = new System.Windows.Forms.Label();
this.comboBoxFoil = new System.Windows.Forms.ComboBox();
this.labelFoil = new System.Windows.Forms.Label();
this.groupBoxPrice = new System.Windows.Forms.GroupBox();
this.checkBoxMyStock = new System.Windows.Forms.CheckBox();
this.buttonBotSettings = new System.Windows.Forms.Button();
this.buttonAppraise = new System.Windows.Forms.Button();
this.checkBoxToolPrices = new System.Windows.Forms.CheckBox();
this.checkBoxPriceGuide = new System.Windows.Forms.CheckBox();
this.groupBoxExport = new System.Windows.Forms.GroupBox();
this.groupBoxExportMKM = new System.Windows.Forms.GroupBox();
this.checkBoxExportLogAll = new System.Windows.Forms.CheckBox();
this.buttonExportToMKM = new System.Windows.Forms.Button();
this.comboBoxExportUploadPrice = new System.Windows.Forms.ComboBox();
this.labelExportWhichPrice = new System.Windows.Forms.Label();
this.groupBoxExportFile = new System.Windows.Forms.GroupBox();
this.checkBoxExportOnlyAppraised = new System.Windows.Forms.CheckBox();
this.checkBoxExportAll = new System.Windows.Forms.CheckBox();
this.buttonExport = new System.Windows.Forms.Button();
this.checkBoxExportToolPrices = new System.Windows.Forms.CheckBox();
this.checkBoxExportFormatDeckbox = new System.Windows.Forms.CheckBox();
this.checkBoxExportPriceGuide = new System.Windows.Forms.CheckBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.groupBoxImport.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBoxPrice.SuspendLayout();
this.groupBoxExport.SuspendLayout();
this.groupBoxExportMKM.SuspendLayout();
this.groupBoxExportFile.SuspendLayout();
this.SuspendLayout();
//
// groupBoxImport
//
this.groupBoxImport.Controls.Add(this.checkBoxImportLog);
this.groupBoxImport.Controls.Add(this.buttonImport);
this.groupBoxImport.Controls.Add(this.groupBox1);
this.groupBoxImport.Location = new System.Drawing.Point(10, 12);
this.groupBoxImport.Name = "groupBoxImport";
this.groupBoxImport.Size = new System.Drawing.Size(496, 235);
this.groupBoxImport.TabIndex = 0;
this.groupBoxImport.TabStop = false;
this.groupBoxImport.Text = "Import";
//
// checkBoxImportLog
//
this.checkBoxImportLog.AutoSize = true;
this.checkBoxImportLog.Location = new System.Drawing.Point(15, 132);
this.checkBoxImportLog.Name = "checkBoxImportLog";
this.checkBoxImportLog.Size = new System.Drawing.Size(136, 17);
this.checkBoxImportLog.TabIndex = 13;
this.checkBoxImportLog.Text = "Log all imported articles";
this.toolTip1.SetToolTip(this.checkBoxImportLog, "If turned off, only articles for which import fails will be logged.");
this.checkBoxImportLog.UseVisualStyleBackColor = true;
//
// buttonImport
//
this.buttonImport.Location = new System.Drawing.Point(170, 166);
this.buttonImport.Name = "buttonImport";
this.buttonImport.Size = new System.Drawing.Size(142, 54);
this.buttonImport.TabIndex = 12;
this.buttonImport.Text = "Import CSV file...";
this.buttonImport.UseVisualStyleBackColor = true;
this.buttonImport.Click += new System.EventHandler(this.buttonImport_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.comboBoxCondition);
this.groupBox1.Controls.Add(this.labelCondition);
this.groupBox1.Controls.Add(this.comboBoxLanguage);
this.groupBox1.Controls.Add(this.labelLanguage);
this.groupBox1.Controls.Add(this.comboBoxExpansion);
this.groupBox1.Controls.Add(this.labelExpansion);
this.groupBox1.Controls.Add(this.comboBoxPlayset);
this.groupBox1.Controls.Add(this.labelPlayset);
this.groupBox1.Controls.Add(this.comboBoxAltered);
this.groupBox1.Controls.Add(this.labelAltered);
this.groupBox1.Controls.Add(this.comboBoxSigned);
this.groupBox1.Controls.Add(this.labelSinged);
this.groupBox1.Controls.Add(this.comboBoxFoil);
this.groupBox1.Controls.Add(this.labelFoil);
this.groupBox1.Location = new System.Drawing.Point(6, 19);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(484, 107);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "replacedume when not defined";
//
// comboBoxCondition
//
this.comboBoxCondition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxCondition.FormattingEnabled = true;
this.comboBoxCondition.Items.AddRange(new object[] {
"MT",
"NM",
"EX",
"GD",
"LP",
"PL",
"PO"});
this.comboBoxCondition.Location = new System.Drawing.Point(391, 19);
this.comboBoxCondition.Name = "comboBoxCondition";
this.comboBoxCondition.Size = new System.Drawing.Size(81, 21);
this.comboBoxCondition.TabIndex = 13;
//
// labelCondition
//
this.labelCondition.AutoSize = true;
this.labelCondition.Location = new System.Drawing.Point(327, 22);
this.labelCondition.Name = "labelCondition";
this.labelCondition.Size = new System.Drawing.Size(54, 13);
this.labelCondition.TabIndex = 12;
this.labelCondition.Text = "Condition:";
//
// comboBoxLanguage
//
this.comboBoxLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxLanguage.FormattingEnabled = true;
this.comboBoxLanguage.Location = new System.Drawing.Point(324, 73);
this.comboBoxLanguage.Name = "comboBoxLanguage";
this.comboBoxLanguage.Size = new System.Drawing.Size(148, 21);
this.comboBoxLanguage.TabIndex = 11;
//
// labelLanguage
//
this.labelLanguage.AutoSize = true;
this.labelLanguage.Location = new System.Drawing.Point(250, 76);
this.labelLanguage.Name = "labelLanguage";
this.labelLanguage.Size = new System.Drawing.Size(58, 13);
this.labelLanguage.TabIndex = 10;
this.labelLanguage.Text = "Language:";
//
// comboBoxExpansion
//
this.comboBoxExpansion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxExpansion.FormattingEnabled = true;
this.comboBoxExpansion.Items.AddRange(new object[] {
"Latest",
"Oldest",
"Cheapest",
"Median Price",
"Most Expensive"});
this.comboBoxExpansion.Location = new System.Drawing.Point(71, 73);
this.comboBoxExpansion.Name = "comboBoxExpansion";
this.comboBoxExpansion.Size = new System.Drawing.Size(148, 21);
this.comboBoxExpansion.TabIndex = 9;
//
// labelExpansion
//
this.labelExpansion.AutoSize = true;
this.labelExpansion.Location = new System.Drawing.Point(6, 76);
this.labelExpansion.Name = "labelExpansion";
this.labelExpansion.Size = new System.Drawing.Size(59, 13);
this.labelExpansion.TabIndex = 8;
this.labelExpansion.Text = "Expansion:";
//
// comboBoxPlayset
//
this.comboBoxPlayset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxPlayset.FormattingEnabled = true;
this.comboBoxPlayset.Items.AddRange(new object[] {
"Any",
"Yes",
"No"});
this.comboBoxPlayset.Location = new System.Drawing.Point(225, 46);
this.comboBoxPlayset.Name = "comboBoxPlayset";
this.comboBoxPlayset.Size = new System.Drawing.Size(81, 21);
this.comboBoxPlayset.TabIndex = 7;
//
// labelPlayset
//
this.labelPlayset.AutoSize = true;
this.labelPlayset.Location = new System.Drawing.Point(161, 49);
this.labelPlayset.Name = "labelPlayset";
this.labelPlayset.Size = new System.Drawing.Size(44, 13);
this.labelPlayset.TabIndex = 6;
this.labelPlayset.Text = "Playset:";
//
// comboBoxAltered
//
this.comboBoxAltered.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxAltered.FormattingEnabled = true;
this.comboBoxAltered.Items.AddRange(new object[] {
"Any",
"Yes",
"No"});
this.comboBoxAltered.Location = new System.Drawing.Point(71, 46);
this.comboBoxAltered.Name = "comboBoxAltered";
this.comboBoxAltered.Size = new System.Drawing.Size(81, 21);
this.comboBoxAltered.TabIndex = 5;
//
// labelAltered
//
this.labelAltered.AutoSize = true;
this.labelAltered.Location = new System.Drawing.Point(7, 49);
this.labelAltered.Name = "labelAltered";
this.labelAltered.Size = new System.Drawing.Size(43, 13);
this.labelAltered.TabIndex = 4;
this.labelAltered.Text = "Altered:";
//
// comboBoxSigned
//
this.comboBoxSigned.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxSigned.FormattingEnabled = true;
this.comboBoxSigned.Items.AddRange(new object[] {
"Any",
"Yes",
"No"});
this.comboBoxSigned.Location = new System.Drawing.Point(225, 19);
this.comboBoxSigned.Name = "comboBoxSigned";
this.comboBoxSigned.Size = new System.Drawing.Size(81, 21);
this.comboBoxSigned.TabIndex = 3;
//
// labelSinged
//
this.labelSinged.AutoSize = true;
this.labelSinged.Location = new System.Drawing.Point(161, 22);
this.labelSinged.Name = "labelSinged";
this.labelSinged.Size = new System.Drawing.Size(43, 13);
this.labelSinged.TabIndex = 2;
this.labelSinged.Text = "Signed:";
//
// comboBoxFoil
//
this.comboBoxFoil.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFoil.FormattingEnabled = true;
this.comboBoxFoil.Items.AddRange(new object[] {
"Any",
"Yes",
"No"});
this.comboBoxFoil.Location = new System.Drawing.Point(71, 19);
this.comboBoxFoil.Name = "comboBoxFoil";
this.comboBoxFoil.Size = new System.Drawing.Size(81, 21);
this.comboBoxFoil.TabIndex = 1;
//
// labelFoil
//
this.labelFoil.AutoSize = true;
this.labelFoil.Location = new System.Drawing.Point(7, 22);
this.labelFoil.Name = "labelFoil";
this.labelFoil.Size = new System.Drawing.Size(26, 13);
this.labelFoil.TabIndex = 0;
this.labelFoil.Text = "Foil:";
//
// groupBoxPrice
//
this.groupBoxPrice.Controls.Add(this.checkBoxMyStock);
this.groupBoxPrice.Controls.Add(this.buttonBotSettings);
this.groupBoxPrice.Controls.Add(this.buttonAppraise);
this.groupBoxPrice.Controls.Add(this.checkBoxToolPrices);
this.groupBoxPrice.Controls.Add(this.checkBoxPriceGuide);
this.groupBoxPrice.Location = new System.Drawing.Point(10, 253);
this.groupBoxPrice.Name = "groupBoxPrice";
this.groupBoxPrice.Size = new System.Drawing.Size(496, 130);
this.groupBoxPrice.TabIndex = 1;
this.groupBoxPrice.TabStop = false;
this.groupBoxPrice.Text = "Appraise";
//
// checkBoxMyStock
//
this.checkBoxMyStock.AutoSize = true;
this.checkBoxMyStock.Location = new System.Drawing.Point(239, 42);
this.checkBoxMyStock.Name = "checkBoxMyStock";
this.checkBoxMyStock.Size = new System.Drawing.Size(109, 17);
this.checkBoxMyStock.TabIndex = 15;
this.checkBoxMyStock.Text = "Use myStock.csv";
this.toolTip1.SetToolTip(this.checkBoxMyStock,
"If checked, your myStock.csv will be used to limit minimal prices for the replacedigned MKMTool Price");
this.checkBoxMyStock.UseVisualStyleBackColor = true;
//
// buttonBotSettings
//
this.buttonBotSettings.Location = new System.Drawing.Point(393, 12);
this.buttonBotSettings.Name = "buttonBotSettings";
this.buttonBotSettings.Size = new System.Drawing.Size(91, 28);
this.buttonBotSettings.TabIndex = 14;
this.buttonBotSettings.Text = "Settings";
this.buttonBotSettings.UseVisualStyleBackColor = true;
this.buttonBotSettings.Click += new System.EventHandler(this.buttonBotSettings_Click);
//
// buttonAppraise
//
this.buttonAppraise.Location = new System.Drawing.Point(170, 65);
this.buttonAppraise.Name = "buttonAppraise";
this.buttonAppraise.Size = new System.Drawing.Size(142, 54);
this.buttonAppraise.TabIndex = 13;
this.buttonAppraise.Text = "Appraise";
this.buttonAppraise.UseVisualStyleBackColor = true;
this.buttonAppraise.Click += new System.EventHandler(this.buttonAppraise_Click);
//
// checkBoxToolPrices
//
this.checkBoxToolPrices.AutoSize = true;
this.checkBoxToolPrices.Checked = true;
this.checkBoxToolPrices.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxToolPrices.Location = new System.Drawing.Point(239, 19);
this.checkBoxToolPrices.Name = "checkBoxToolPrices";
this.checkBoxToolPrices.Size = new System.Drawing.Size(148, 17);
this.checkBoxToolPrices.TabIndex = 1;
this.checkBoxToolPrices.Text = "Compute MKMTool prices";
this.checkBoxToolPrices.UseVisualStyleBackColor = true;
this.checkBoxToolPrices.CheckedChanged += new System.EventHandler(this.checkBoxToolPrices_CheckedChanged);
//
// checkBoxPriceGuide
//
this.checkBoxPriceGuide.AutoSize = true;
this.checkBoxPriceGuide.Location = new System.Drawing.Point(6, 19);
this.checkBoxPriceGuide.Name = "checkBoxPriceGuide";
this.checkBoxPriceGuide.Size = new System.Drawing.Size(167, 17);
this.checkBoxPriceGuide.TabIndex = 0;
this.checkBoxPriceGuide.Text = "Fetch MKM price guide prices";
this.checkBoxPriceGuide.UseVisualStyleBackColor = true;
//
// groupBoxExport
//
this.groupBoxExport.Controls.Add(this.groupBoxExportMKM);
this.groupBoxExport.Controls.Add(this.groupBoxExportFile);
this.groupBoxExport.Location = new System.Drawing.Point(10, 389);
this.groupBoxExport.Name = "groupBoxExport";
this.groupBoxExport.Size = new System.Drawing.Size(496, 225);
this.groupBoxExport.TabIndex = 1;
this.groupBoxExport.TabStop = false;
this.groupBoxExport.Text = "Export";
//
// groupBoxExportMKM
//
this.groupBoxExportMKM.Controls.Add(this.checkBoxExportLogAll);
this.groupBoxExportMKM.Controls.Add(this.buttonExportToMKM);
this.groupBoxExportMKM.Controls.Add(this.comboBoxExportUploadPrice);
this.groupBoxExportMKM.Controls.Add(this.labelExportWhichPrice);
this.groupBoxExportMKM.Location = new System.Drawing.Point(248, 19);
this.groupBoxExportMKM.Name = "groupBoxExportMKM";
this.groupBoxExportMKM.Size = new System.Drawing.Size(242, 195);
this.groupBoxExportMKM.TabIndex = 15;
this.groupBoxExportMKM.TabStop = false;
this.groupBoxExportMKM.Text = "To MKM";
//
// checkBoxExportLogAll
//
this.checkBoxExportLogAll.AutoSize = true;
this.checkBoxExportLogAll.Location = new System.Drawing.Point(11, 65);
this.checkBoxExportLogAll.Name = "checkBoxExportLogAll";
this.checkBoxExportLogAll.Size = new System.Drawing.Size(140, 17);
this.checkBoxExportLogAll.TabIndex = 14;
this.checkBoxExportLogAll.Text = "Log all uploaded articles";
this.toolTip1.SetToolTip(this.checkBoxExportLogAll, "If turned off, only articles for which upload fails will be logged.");
this.checkBoxExportLogAll.UseVisualStyleBackColor = true;
//
// buttonExportToMKM
//
this.buttonExportToMKM.Location = new System.Drawing.Point(55, 135);
this.buttonExportToMKM.Name = "buttonExportToMKM";
this.buttonExportToMKM.Size = new System.Drawing.Size(142, 54);
this.buttonExportToMKM.TabIndex = 22;
this.buttonExportToMKM.Text = "Upload to MKM";
this.buttonExportToMKM.UseVisualStyleBackColor = true;
this.buttonExportToMKM.Click += new System.EventHandler(this.buttonExportToMKM_Click);
//
// comboBoxExportUploadPrice
//
this.comboBoxExportUploadPrice.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxExportUploadPrice.FormattingEnabled = true;
this.comboBoxExportUploadPrice.Items.AddRange(new object[] {
"MKMTool Price",
"Cheapest matching article",
"Price guide - Low",
"Price guide - Average",
"Price guide - Trend"});
this.comboBoxExportUploadPrice.Location = new System.Drawing.Point(77, 17);
this.comboBoxExportUploadPrice.Name = "comboBoxExportUploadPrice";
this.comboBoxExportUploadPrice.Size = new System.Drawing.Size(159, 21);
this.comboBoxExportUploadPrice.TabIndex = 13;
//
// labelExportWhichPrice
//
this.labelExportWhichPrice.AutoSize = true;
this.labelExportWhichPrice.Location = new System.Drawing.Point(7, 21);
this.labelExportWhichPrice.Name = "labelExportWhichPrice";
this.labelExportWhichPrice.Size = new System.Drawing.Size(70, 13);
this.labelExportWhichPrice.TabIndex = 12;
this.labelExportWhichPrice.Text = "Upload price:";
//
// groupBoxExportFile
//
this.groupBoxExportFile.Controls.Add(this.checkBoxExportOnlyAppraised);
this.groupBoxExportFile.Controls.Add(this.checkBoxExportAll);
this.groupBoxExportFile.Controls.Add(this.buttonExport);
this.groupBoxExportFile.Controls.Add(this.checkBoxExportToolPrices);
this.groupBoxExportFile.Controls.Add(this.checkBoxExportFormatDeckbox);
this.groupBoxExportFile.Controls.Add(this.checkBoxExportPriceGuide);
this.groupBoxExportFile.Location = new System.Drawing.Point(9, 19);
this.groupBoxExportFile.Name = "groupBoxExportFile";
this.groupBoxExportFile.Size = new System.Drawing.Size(233, 195);
this.groupBoxExportFile.TabIndex = 23;
this.groupBoxExportFile.TabStop = false;
this.groupBoxExportFile.Text = "To file";
//
// checkBoxExportOnlyAppraised
//
this.checkBoxExportOnlyAppraised.AutoSize = true;
this.checkBoxExportOnlyAppraised.Location = new System.Drawing.Point(6, 112);
this.checkBoxExportOnlyAppraised.Name = "checkBoxExportOnlyAppraised";
this.checkBoxExportOnlyAppraised.Size = new System.Drawing.Size(96, 17);
this.checkBoxExportOnlyAppraised.TabIndex = 22;
this.checkBoxExportOnlyAppraised.Text = "Only appraised";
this.toolTip1.SetToolTip(this.checkBoxExportOnlyAppraised, "If checked, only items that had a price generated for them (at least one of the " +
"selected prices) will be exported");
this.checkBoxExportOnlyAppraised.UseVisualStyleBackColor = true;
//
// checkBoxExportAll
//
this.checkBoxExportAll.AutoSize = true;
this.checkBoxExportAll.Location = new System.Drawing.Point(6, 19);
this.checkBoxExportAll.Name = "checkBoxExportAll";
this.checkBoxExportAll.Size = new System.Drawing.Size(129, 17);
this.checkBoxExportAll.TabIndex = 18;
this.checkBoxExportAll.Text = "Include all known info";
this.checkBoxExportAll.UseVisualStyleBackColor = true;
this.checkBoxExportAll.CheckedChanged += new System.EventHandler(this.checkBoxExportAll_CheckedChanged);
//
// buttonExport
//
this.buttonExport.Location = new System.Drawing.Point(33, 135);
this.buttonExport.Name = "buttonExport";
this.buttonExport.Size = new System.Drawing.Size(142, 54);
this.buttonExport.TabIndex = 13;
this.buttonExport.Text = "Export CSV file...";
this.buttonExport.UseVisualStyleBackColor = true;
this.buttonExport.Click += new System.EventHandler(this.buttonExport_Click);
//
// checkBoxExportToolPrices
//
this.checkBoxExportToolPrices.AutoSize = true;
this.checkBoxExportToolPrices.Checked = true;
this.checkBoxExportToolPrices.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxExportToolPrices.Location = new System.Drawing.Point(6, 65);
this.checkBoxExportToolPrices.Name = "checkBoxExportToolPrices";
this.checkBoxExportToolPrices.Size = new System.Drawing.Size(103, 17);
this.checkBoxExportToolPrices.TabIndex = 20;
this.checkBoxExportToolPrices.Text = "MKMTool prices";
this.checkBoxExportToolPrices.UseVisualStyleBackColor = true;
//
// checkBoxExportFormatDeckbox
//
this.checkBoxExportFormatDeckbox.AutoSize = true;
this.checkBoxExportFormatDeckbox.Location = new System.Drawing.Point(6, 88);
this.checkBoxExportFormatDeckbox.Name = "checkBoxExportFormatDeckbox";
this.checkBoxExportFormatDeckbox.Size = new System.Drawing.Size(147, 17);
this.checkBoxExportFormatDeckbox.TabIndex = 21;
this.checkBoxExportFormatDeckbox.Text = "Force deckbox.org format";
this.toolTip1.SetToolTip(this.checkBoxExportFormatDeckbox, "Affects format of condition, foil, signed and altered columns");
this.checkBoxExportFormatDeckbox.UseVisualStyleBackColor = true;
//
// checkBoxExportPriceGuide
//
this.checkBoxExportPriceGuide.AutoSize = true;
this.checkBoxExportPriceGuide.Location = new System.Drawing.Point(6, 42);
this.checkBoxExportPriceGuide.Name = "checkBoxExportPriceGuide";
this.checkBoxExportPriceGuide.Size = new System.Drawing.Size(137, 17);
this.checkBoxExportPriceGuide.TabIndex = 19;
this.checkBoxExportPriceGuide.Text = "MKM price guide prices";
this.checkBoxExportPriceGuide.UseVisualStyleBackColor = true;
//
// PriceExternalList
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(515, 620);
this.Controls.Add(this.groupBoxPrice);
this.Controls.Add(this.groupBoxExport);
this.Controls.Add(this.groupBoxImport);
this.Name = "PriceExternalList";
this.Text = "Price External List";
this.Shown += new System.EventHandler(this.priceExternalList_Shown);
this.groupBoxImport.ResumeLayout(false);
this.groupBoxImport.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBoxPrice.ResumeLayout(false);
this.groupBoxPrice.PerformLayout();
this.groupBoxExport.ResumeLayout(false);
this.groupBoxExportMKM.ResumeLayout(false);
this.groupBoxExportMKM.PerformLayout();
this.groupBoxExportFile.ResumeLayout(false);
this.groupBoxExportFile.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : CheckWantsView.Designer.cs
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.wantListsBox2 = new System.Windows.Forms.ComboBox();
this.checkListButton = new System.Windows.Forms.Button();
this.percentText = new System.Windows.Forms.TextBox();
this.labelPercent = new System.Windows.Forms.Label();
this.shipAddition = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.buttonEmptyCart = new System.Windows.Forms.Button();
this.editionBox = new System.Windows.Forms.ComboBox();
this.checkEditionButton = new System.Windows.Forms.Button();
this.groupBoxPriceParam = new System.Windows.Forms.GroupBox();
this.checkBestInter = new System.Windows.Forms.CheckBox();
this.domesticCheck = new System.Windows.Forms.CheckBox();
this.maxPrice = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.checkBoxTrend = new System.Windows.Forms.CheckBox();
this.groupBoxCardParam = new System.Windows.Forms.GroupBox();
this.label4 = new System.Windows.Forms.Label();
this.signedBox = new System.Windows.Forms.CheckBox();
this.foilBox = new System.Windows.Forms.CheckBox();
this.alteredBox = new System.Windows.Forms.CheckBox();
this.conditionBox = new System.Windows.Forms.Label();
this.conditionCombo = new System.Windows.Forms.ComboBox();
this.playsetBox = new System.Windows.Forms.CheckBox();
this.langCombo = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.textBoxUser = new System.Windows.Forms.TextBox();
this.groupBoxWantlist = new System.Windows.Forms.GroupBox();
this.groupBoxBulkCheck = new System.Windows.Forms.GroupBox();
this.groupBoxUserCheck = new System.Windows.Forms.GroupBox();
this.checkBoxUserExpansions = new System.Windows.Forms.CheckBox();
this.labelUserName = new System.Windows.Forms.Label();
this.buttonCheckUser = new System.Windows.Forms.Button();
this.groupBoxParams = new System.Windows.Forms.GroupBox();
this.groupBoxPerform = new System.Windows.Forms.GroupBox();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.groupBoxPriceParam.SuspendLayout();
this.groupBoxCardParam.SuspendLayout();
this.groupBoxWantlist.SuspendLayout();
this.groupBoxBulkCheck.SuspendLayout();
this.groupBoxUserCheck.SuspendLayout();
this.groupBoxParams.SuspendLayout();
this.groupBoxPerform.SuspendLayout();
this.SuspendLayout();
//
// wantListsBox2
//
this.wantListsBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.wantListsBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.wantListsBox2.FormattingEnabled = true;
this.wantListsBox2.Location = new System.Drawing.Point(20, 19);
this.wantListsBox2.Name = "wantListsBox2";
this.wantListsBox2.Size = new System.Drawing.Size(188, 21);
this.wantListsBox2.TabIndex = 0;
this.wantListsBox2.SelectedIndexChanged += new System.EventHandler(this.wantListsBox2_SelectedIndexChanged);
//
// checkListButton
//
this.checkListButton.Location = new System.Drawing.Point(20, 46);
this.checkListButton.Name = "checkListButton";
this.checkListButton.Size = new System.Drawing.Size(188, 51);
this.checkListButton.TabIndex = 6;
this.checkListButton.Text = "Check selected list";
this.toolTip1.SetToolTip(this.checkListButton, "All cards in the wantlist will be checked - Card parameters will be ignored");
this.checkListButton.UseVisualStyleBackColor = true;
this.checkListButton.Click += new System.EventHandler(this.checkListButton_Click);
//
// percentText
//
this.percentText.Location = new System.Drawing.Point(6, 19);
this.percentText.Name = "percentText";
this.percentText.Size = new System.Drawing.Size(40, 20);
this.percentText.TabIndex = 7;
this.percentText.Text = "20";
//
// labelPercent
//
this.labelPercent.AutoSize = true;
this.labelPercent.Location = new System.Drawing.Point(52, 22);
this.labelPercent.Name = "labelPercent";
this.labelPercent.Size = new System.Drawing.Size(78, 13);
this.labelPercent.TabIndex = 8;
this.labelPercent.Text = "% below others";
//
// shipAddition
//
this.shipAddition.Location = new System.Drawing.Point(6, 45);
this.shipAddition.Name = "shipAddition";
this.shipAddition.Size = new System.Drawing.Size(40, 20);
this.shipAddition.TabIndex = 10;
this.shipAddition.Text = "1";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(52, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 13);
this.label2.TabIndex = 11;
this.label2.Text = "Shipping Addition";
//
// buttonEmptyCart
//
this.buttonEmptyCart.Location = new System.Drawing.Point(53, 355);
this.buttonEmptyCart.Name = "buttonEmptyCart";
this.buttonEmptyCart.Size = new System.Drawing.Size(132, 35);
this.buttonEmptyCart.TabIndex = 13;
this.buttonEmptyCart.Text = "Empty cart";
this.buttonEmptyCart.UseVisualStyleBackColor = true;
this.buttonEmptyCart.Click += new System.EventHandler(this.button1_Click);
//
// editionBox
//
this.editionBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.editionBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.editionBox.FormattingEnabled = true;
this.editionBox.Location = new System.Drawing.Point(6, 154);
this.editionBox.Name = "editionBox";
this.editionBox.Size = new System.Drawing.Size(188, 21);
this.editionBox.TabIndex = 27;
//
// checkEditionButton
//
this.checkEditionButton.Location = new System.Drawing.Point(21, 17);
this.checkEditionButton.Name = "checkEditionButton";
this.checkEditionButton.Size = new System.Drawing.Size(188, 51);
this.checkEditionButton.TabIndex = 28;
this.checkEditionButton.Text = "Check now";
this.checkEditionButton.UseVisualStyleBackColor = true;
this.checkEditionButton.Click += new System.EventHandler(this.checkEditionButton_Click);
//
// groupBoxPriceParam
//
this.groupBoxPriceParam.Controls.Add(this.checkBestInter);
this.groupBoxPriceParam.Controls.Add(this.domesticCheck);
this.groupBoxPriceParam.Controls.Add(this.maxPrice);
this.groupBoxPriceParam.Controls.Add(this.label3);
this.groupBoxPriceParam.Controls.Add(this.checkBoxTrend);
this.groupBoxPriceParam.Controls.Add(this.percentText);
this.groupBoxPriceParam.Controls.Add(this.labelPercent);
this.groupBoxPriceParam.Controls.Add(this.shipAddition);
this.groupBoxPriceParam.Controls.Add(this.label2);
this.groupBoxPriceParam.Location = new System.Drawing.Point(6, 16);
this.groupBoxPriceParam.Name = "groupBoxPriceParam";
this.groupBoxPriceParam.Size = new System.Drawing.Size(220, 179);
this.groupBoxPriceParam.TabIndex = 29;
this.groupBoxPriceParam.TabStop = false;
this.groupBoxPriceParam.Text = "Price parameters";
//
// checkBestInter
//
this.checkBestInter.AutoSize = true;
this.checkBestInter.Checked = true;
this.checkBestInter.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBestInter.Location = new System.Drawing.Point(6, 144);
this.checkBestInter.Name = "checkBestInter";
this.checkBestInter.Size = new System.Drawing.Size(165, 17);
this.checkBestInter.TabIndex = 16;
this.checkBestInter.Text = "check best price international";
this.checkBestInter.UseVisualStyleBackColor = true;
//
// domesticCheck
//
this.domesticCheck.AutoSize = true;
this.domesticCheck.Checked = true;
this.domesticCheck.CheckState = System.Windows.Forms.CheckState.Checked;
this.domesticCheck.Location = new System.Drawing.Point(6, 122);
this.domesticCheck.Name = "domesticCheck";
this.domesticCheck.Size = new System.Drawing.Size(151, 17);
this.domesticCheck.TabIndex = 15;
this.domesticCheck.Text = "check domestic deals only";
this.domesticCheck.UseVisualStyleBackColor = true;
//
// maxPrice
//
this.maxPrice.Location = new System.Drawing.Point(6, 71);
this.maxPrice.Name = "maxPrice";
this.maxPrice.Size = new System.Drawing.Size(40, 20);
this.maxPrice.TabIndex = 13;
this.maxPrice.Text = "10";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(52, 74);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(97, 13);
this.label3.TabIndex = 14;
this.label3.Text = "Max Price per Card";
//
// checkBoxTrend
//
this.checkBoxTrend.AutoSize = true;
this.checkBoxTrend.Checked = true;
this.checkBoxTrend.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxTrend.Location = new System.Drawing.Point(6, 99);
this.checkBoxTrend.Name = "checkBoxTrend";
this.checkBoxTrend.Size = new System.Drawing.Size(87, 17);
this.checkBoxTrend.TabIndex = 12;
this.checkBoxTrend.Text = "check Trend";
this.checkBoxTrend.UseVisualStyleBackColor = true;
//
// groupBoxCardParam
//
this.groupBoxCardParam.Controls.Add(this.label4);
this.groupBoxCardParam.Controls.Add(this.signedBox);
this.groupBoxCardParam.Controls.Add(this.editionBox);
this.groupBoxCardParam.Controls.Add(this.foilBox);
this.groupBoxCardParam.Controls.Add(this.alteredBox);
this.groupBoxCardParam.Controls.Add(this.conditionBox);
this.groupBoxCardParam.Controls.Add(this.conditionCombo);
this.groupBoxCardParam.Controls.Add(this.playsetBox);
this.groupBoxCardParam.Controls.Add(this.langCombo);
this.groupBoxCardParam.Controls.Add(this.label1);
this.groupBoxCardParam.Location = new System.Drawing.Point(6, 201);
this.groupBoxCardParam.Name = "groupBoxCardParam";
this.groupBoxCardParam.Size = new System.Drawing.Size(220, 189);
this.groupBoxCardParam.TabIndex = 31;
this.groupBoxCardParam.TabStop = false;
this.groupBoxCardParam.Text = "Card parameters";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(7, 134);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(59, 13);
this.label4.TabIndex = 41;
this.label4.Text = "Expansion:";
//
// signedBox
//
this.signedBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.signedBox.AutoSize = true;
this.signedBox.Location = new System.Drawing.Point(10, 107);
this.signedBox.Margin = new System.Windows.Forms.Padding(2);
this.signedBox.Name = "signedBox";
this.signedBox.Size = new System.Drawing.Size(59, 17);
this.signedBox.TabIndex = 40;
this.signedBox.Text = "Signed";
this.signedBox.UseVisualStyleBackColor = true;
//
// foilBox
//
this.foilBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.foilBox.AutoSize = true;
this.foilBox.Location = new System.Drawing.Point(103, 85);
this.foilBox.Margin = new System.Windows.Forms.Padding(2);
this.foilBox.Name = "foilBox";
this.foilBox.Size = new System.Drawing.Size(42, 17);
this.foilBox.TabIndex = 37;
this.foilBox.Text = "Foil";
this.foilBox.UseVisualStyleBackColor = true;
//
// alteredBox
//
this.alteredBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.alteredBox.AutoSize = true;
this.alteredBox.Location = new System.Drawing.Point(103, 106);
this.alteredBox.Margin = new System.Windows.Forms.Padding(2);
this.alteredBox.Name = "alteredBox";
this.alteredBox.Size = new System.Drawing.Size(59, 17);
this.alteredBox.TabIndex = 39;
this.alteredBox.Text = "Altered";
this.alteredBox.UseVisualStyleBackColor = true;
//
// conditionBox
//
this.conditionBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.conditionBox.AutoSize = true;
this.conditionBox.Location = new System.Drawing.Point(100, 58);
this.conditionBox.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.conditionBox.Name = "conditionBox";
this.conditionBox.Size = new System.Drawing.Size(95, 13);
this.conditionBox.TabIndex = 34;
this.conditionBox.Text = "Minimum Condition";
//
// conditionCombo
//
this.conditionCombo.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.conditionCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.conditionCombo.FormattingEnabled = true;
this.conditionCombo.Items.AddRange(new object[] {
"MT",
"NM",
"EX",
"GD",
"LP",
"PL",
"PO"});
this.conditionCombo.Location = new System.Drawing.Point(6, 56);
this.conditionCombo.Margin = new System.Windows.Forms.Padding(2);
this.conditionCombo.Name = "conditionCombo";
this.conditionCombo.Size = new System.Drawing.Size(90, 21);
this.conditionCombo.TabIndex = 33;
//
// playsetBox
//
this.playsetBox.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.playsetBox.AutoSize = true;
this.playsetBox.Location = new System.Drawing.Point(10, 86);
this.playsetBox.Margin = new System.Windows.Forms.Padding(2);
this.playsetBox.Name = "playsetBox";
this.playsetBox.Size = new System.Drawing.Size(60, 17);
this.playsetBox.TabIndex = 38;
this.playsetBox.Text = "Playset";
this.playsetBox.UseVisualStyleBackColor = true;
//
// langCombo
//
this.langCombo.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.langCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.langCombo.FormattingEnabled = true;
this.langCombo.Location = new System.Drawing.Point(6, 29);
this.langCombo.Margin = new System.Windows.Forms.Padding(2);
this.langCombo.Name = "langCombo";
this.langCombo.Size = new System.Drawing.Size(90, 21);
this.langCombo.TabIndex = 35;
//
// label1
//
this.label1.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(100, 32);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(55, 13);
this.label1.TabIndex = 36;
this.label1.Text = "Language";
//
// textBoxUser
//
this.textBoxUser.Location = new System.Drawing.Point(97, 19);
this.textBoxUser.Name = "textBoxUser";
this.textBoxUser.Size = new System.Drawing.Size(111, 20);
this.textBoxUser.TabIndex = 42;
//
// groupBoxWantlist
//
this.groupBoxWantlist.Controls.Add(this.checkListButton);
this.groupBoxWantlist.Controls.Add(this.wantListsBox2);
this.groupBoxWantlist.Location = new System.Drawing.Point(7, 235);
this.groupBoxWantlist.Name = "groupBoxWantlist";
this.groupBoxWantlist.Size = new System.Drawing.Size(227, 110);
this.groupBoxWantlist.TabIndex = 32;
this.groupBoxWantlist.TabStop = false;
this.groupBoxWantlist.Text = "Check Wantslist";
//
// groupBoxBulkCheck
//
this.groupBoxBulkCheck.Controls.Add(this.checkEditionButton);
this.groupBoxBulkCheck.Location = new System.Drawing.Point(6, 19);
this.groupBoxBulkCheck.Name = "groupBoxBulkCheck";
this.groupBoxBulkCheck.Size = new System.Drawing.Size(228, 74);
this.groupBoxBulkCheck.TabIndex = 33;
this.groupBoxBulkCheck.TabStop = false;
this.groupBoxBulkCheck.Text = "Whole expansion check";
//
// groupBoxUserCheck
//
this.groupBoxUserCheck.Controls.Add(this.checkBoxUserExpansions);
this.groupBoxUserCheck.Controls.Add(this.labelUserName);
this.groupBoxUserCheck.Controls.Add(this.textBoxUser);
this.groupBoxUserCheck.Controls.Add(this.buttonCheckUser);
this.groupBoxUserCheck.Location = new System.Drawing.Point(7, 99);
this.groupBoxUserCheck.Name = "groupBoxUserCheck";
this.groupBoxUserCheck.Size = new System.Drawing.Size(227, 130);
this.groupBoxUserCheck.TabIndex = 33;
this.groupBoxUserCheck.TabStop = false;
this.groupBoxUserCheck.Text = "Check user";
//
// checkBoxUserExpansions
//
this.checkBoxUserExpansions.AutoSize = true;
this.checkBoxUserExpansions.Checked = true;
this.checkBoxUserExpansions.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxUserExpansions.Location = new System.Drawing.Point(20, 45);
this.checkBoxUserExpansions.Name = "checkBoxUserExpansions";
this.checkBoxUserExpansions.Size = new System.Drawing.Size(126, 17);
this.checkBoxUserExpansions.TabIndex = 44;
this.checkBoxUserExpansions.Text = "Check all expansions";
this.toolTip1.SetToolTip(this.checkBoxUserExpansions, "If checked, all cards from the user will checked. If unchecked, only cards from t" +
"he specified expansion will be taken into account");
this.checkBoxUserExpansions.UseVisualStyleBackColor = true;
//
// labelUserName
//
this.labelUserName.AutoSize = true;
this.labelUserName.Location = new System.Drawing.Point(17, 22);
this.labelUserName.Name = "labelUserName";
this.labelUserName.Size = new System.Drawing.Size(69, 13);
this.labelUserName.TabIndex = 43;
this.labelUserName.Text = "Seller\'s name";
//
// buttonCheckUser
//
this.buttonCheckUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonCheckUser.Location = new System.Drawing.Point(20, 68);
this.buttonCheckUser.Name = "buttonCheckUser";
this.buttonCheckUser.Size = new System.Drawing.Size(188, 51);
this.buttonCheckUser.TabIndex = 6;
this.buttonCheckUser.Text = "Check user\'s stock";
this.buttonCheckUser.UseVisualStyleBackColor = true;
this.buttonCheckUser.Click += new System.EventHandler(this.buttonCheckUser_Click);
//
// groupBoxParams
//
this.groupBoxParams.Controls.Add(this.groupBoxPriceParam);
this.groupBoxParams.Controls.Add(this.groupBoxCardParam);
this.groupBoxParams.Location = new System.Drawing.Point(12, 12);
this.groupBoxParams.Name = "groupBoxParams";
this.groupBoxParams.Size = new System.Drawing.Size(232, 398);
this.groupBoxParams.TabIndex = 34;
this.groupBoxParams.TabStop = false;
this.groupBoxParams.Text = "Parameters";
//
// groupBoxPerform
//
this.groupBoxPerform.Controls.Add(this.groupBoxBulkCheck);
this.groupBoxPerform.Controls.Add(this.groupBoxWantlist);
this.groupBoxPerform.Controls.Add(this.buttonEmptyCart);
this.groupBoxPerform.Controls.Add(this.groupBoxUserCheck);
this.groupBoxPerform.Location = new System.Drawing.Point(250, 12);
this.groupBoxPerform.Name = "groupBoxPerform";
this.groupBoxPerform.Size = new System.Drawing.Size(240, 398);
this.groupBoxPerform.TabIndex = 35;
this.groupBoxPerform.TabStop = false;
this.groupBoxPerform.Text = "Perform check";
//
// CheckWantsView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(499, 428);
this.Controls.Add(this.groupBoxPerform);
this.Controls.Add(this.groupBoxParams);
this.MinimizeBox = false;
this.Name = "CheckWantsView";
this.ShowIcon = false;
this.Text = "Check for cheap deals";
this.Shown += new System.EventHandler(this.checkWantsView_Shown);
this.VisibleChanged += new System.EventHandler(this.checkWantsView_VisibleChanged);
this.groupBoxPriceParam.ResumeLayout(false);
this.groupBoxPriceParam.PerformLayout();
this.groupBoxCardParam.ResumeLayout(false);
this.groupBoxCardParam.PerformLayout();
this.groupBoxWantlist.ResumeLayout(false);
this.groupBoxBulkCheck.ResumeLayout(false);
this.groupBoxUserCheck.ResumeLayout(false);
this.groupBoxUserCheck.PerformLayout();
this.groupBoxParams.ResumeLayout(false);
this.groupBoxPerform.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : WantlistEditorView.Designer.cs
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
License : GNU Affero General Public License v3.0
Project Creator : alexander-pick
private void InitializeComponent()
{
this.searchBox = new System.Windows.Forms.TextBox();
this.wantListsBox = new System.Windows.Forms.ComboBox();
this.cardView = new System.Windows.Forms.ListView();
this.addButton = new System.Windows.Forms.Button();
this.wantsView = new System.Windows.Forms.DataGridView();
this.deleteItemButton = new System.Windows.Forms.Button();
this.conditionCombo = new System.Windows.Forms.ComboBox();
this.conditionBox = new System.Windows.Forms.Label();
this.langCombo = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.foilBox = new System.Windows.Forms.CheckBox();
this.playsetBox = new System.Windows.Forms.CheckBox();
this.alteredBox = new System.Windows.Forms.CheckBox();
this.signedBox = new System.Windows.Forms.CheckBox();
this.editionBox = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.wantsView)).BeginInit();
this.SuspendLayout();
//
// searchBox
//
this.searchBox.Location = new System.Drawing.Point(2, 10);
this.searchBox.Margin = new System.Windows.Forms.Padding(2);
this.searchBox.Name = "searchBox";
this.searchBox.Size = new System.Drawing.Size(279, 20);
this.searchBox.TabIndex = 0;
this.searchBox.TextChanged += new System.EventHandler(this.searchBox_TextChanged);
//
// wantListsBox
//
this.wantListsBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.wantListsBox.FormattingEnabled = true;
this.wantListsBox.Location = new System.Drawing.Point(460, 9);
this.wantListsBox.Margin = new System.Windows.Forms.Padding(2);
this.wantListsBox.Name = "wantListsBox";
this.wantListsBox.Size = new System.Drawing.Size(695, 21);
this.wantListsBox.TabIndex = 3;
this.wantListsBox.SelectedIndexChanged += new System.EventHandler(this.wantListsBox_SelectedIndexChanged);
//
// cardView
//
this.cardView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.cardView.Location = new System.Drawing.Point(2, 36);
this.cardView.Name = "cardView";
this.cardView.Size = new System.Drawing.Size(454, 503);
this.cardView.TabIndex = 13;
this.cardView.UseCompatibleStateImageBehavior = false;
this.cardView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.cardView_ColumnClick);
//
// addButton
//
this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.addButton.Location = new System.Drawing.Point(2, 594);
this.addButton.Name = "addButton";
this.addButton.Size = new System.Drawing.Size(454, 23);
this.addButton.TabIndex = 15;
this.addButton.Text = "Add selected cards to MKM Wantlist";
this.addButton.UseVisualStyleBackColor = true;
this.addButton.Click += new System.EventHandler(this.addButton_Click);
//
// wantsView
//
this.wantsView.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.wantsView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.wantsView.Location = new System.Drawing.Point(462, 36);
this.wantsView.Name = "wantsView";
this.wantsView.Size = new System.Drawing.Size(693, 550);
this.wantsView.TabIndex = 16;
//
// deleteItemButton
//
this.deleteItemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.deleteItemButton.Location = new System.Drawing.Point(460, 594);
this.deleteItemButton.Margin = new System.Windows.Forms.Padding(2);
this.deleteItemButton.Name = "deleteItemButton";
this.deleteItemButton.Size = new System.Drawing.Size(179, 23);
this.deleteItemButton.TabIndex = 17;
this.deleteItemButton.Text = "Delete Item";
this.deleteItemButton.UseVisualStyleBackColor = true;
this.deleteItemButton.Click += new System.EventHandler(this.deleteItemButton_Click);
//
// conditionCombo
//
this.conditionCombo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.conditionCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.conditionCombo.FormattingEnabled = true;
this.conditionCombo.Items.AddRange(new object[] {
"MT",
"NM ",
"EX",
"GD",
"LP",
"PL",
"PO"});
this.conditionCombo.Location = new System.Drawing.Point(2, 544);
this.conditionCombo.Margin = new System.Windows.Forms.Padding(2);
this.conditionCombo.Name = "conditionCombo";
this.conditionCombo.Size = new System.Drawing.Size(90, 21);
this.conditionCombo.TabIndex = 18;
//
// conditionBox
//
this.conditionBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.conditionBox.AutoSize = true;
this.conditionBox.Location = new System.Drawing.Point(93, 547);
this.conditionBox.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.conditionBox.Name = "conditionBox";
this.conditionBox.Size = new System.Drawing.Size(95, 13);
this.conditionBox.TabIndex = 19;
this.conditionBox.Text = "Minimum Condition";
//
// langCombo
//
this.langCombo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.langCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.langCombo.FormattingEnabled = true;
this.langCombo.Location = new System.Drawing.Point(2, 570);
this.langCombo.Margin = new System.Windows.Forms.Padding(2);
this.langCombo.Name = "langCombo";
this.langCombo.Size = new System.Drawing.Size(90, 21);
this.langCombo.TabIndex = 20;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(93, 573);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(55, 13);
this.label1.TabIndex = 21;
this.label1.Text = "Language";
//
// foilBox
//
this.foilBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.foilBox.AutoSize = true;
this.foilBox.Location = new System.Drawing.Point(323, 549);
this.foilBox.Margin = new System.Windows.Forms.Padding(2);
this.foilBox.Name = "foilBox";
this.foilBox.Size = new System.Drawing.Size(42, 17);
this.foilBox.TabIndex = 22;
this.foilBox.Text = "Foil";
this.foilBox.UseVisualStyleBackColor = true;
//
// playsetBox
//
this.playsetBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.playsetBox.AutoSize = true;
this.playsetBox.Location = new System.Drawing.Point(323, 570);
this.playsetBox.Margin = new System.Windows.Forms.Padding(2);
this.playsetBox.Name = "playsetBox";
this.playsetBox.Size = new System.Drawing.Size(60, 17);
this.playsetBox.TabIndex = 23;
this.playsetBox.Text = "Playset";
this.playsetBox.UseVisualStyleBackColor = true;
//
// alteredBox
//
this.alteredBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.alteredBox.AutoSize = true;
this.alteredBox.Location = new System.Drawing.Point(396, 549);
this.alteredBox.Margin = new System.Windows.Forms.Padding(2);
this.alteredBox.Name = "alteredBox";
this.alteredBox.Size = new System.Drawing.Size(59, 17);
this.alteredBox.TabIndex = 24;
this.alteredBox.Text = "Altered";
this.alteredBox.UseVisualStyleBackColor = true;
//
// signedBox
//
this.signedBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.signedBox.AutoSize = true;
this.signedBox.Location = new System.Drawing.Point(396, 570);
this.signedBox.Margin = new System.Windows.Forms.Padding(2);
this.signedBox.Name = "signedBox";
this.signedBox.Size = new System.Drawing.Size(59, 17);
this.signedBox.TabIndex = 25;
this.signedBox.Text = "Signed";
this.signedBox.UseVisualStyleBackColor = true;
//
// editionBox
//
this.editionBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.editionBox.FormattingEnabled = true;
this.editionBox.Location = new System.Drawing.Point(286, 9);
this.editionBox.Name = "editionBox";
this.editionBox.Size = new System.Drawing.Size(170, 21);
this.editionBox.TabIndex = 26;
this.editionBox.SelectedIndexChanged += new System.EventHandler(this.editionBox_SelectedIndexChanged);
//
// WantlistEditorView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1158, 623);
this.Controls.Add(this.editionBox);
this.Controls.Add(this.signedBox);
this.Controls.Add(this.alteredBox);
this.Controls.Add(this.playsetBox);
this.Controls.Add(this.foilBox);
this.Controls.Add(this.label1);
this.Controls.Add(this.langCombo);
this.Controls.Add(this.conditionBox);
this.Controls.Add(this.conditionCombo);
this.Controls.Add(this.deleteItemButton);
this.Controls.Add(this.wantsView);
this.Controls.Add(this.addButton);
this.Controls.Add(this.wantListsBox);
this.Controls.Add(this.searchBox);
this.Controls.Add(this.cardView);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "WantlistEditorView";
this.ShowIcon = false;
this.Text = "Wantlist Editor";
this.Shown += new System.EventHandler(this.wantlistEditorView_Shown);
this.VisibleChanged += new System.EventHandler(this.wantlistEditorView_VisibleChanged);
((System.ComponentModel.ISupportInitialize)(this.wantsView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Dialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.chkUseTabs = new System.Windows.Forms.CheckBox();
this.btnGenerate = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.updIndentSize = new System.Windows.Forms.NumericUpDown();
this.lblIndentSize = new System.Windows.Forms.Label();
this.lstImportList = new System.Windows.Forms.ListBox();
this.importToolStrip = new System.Windows.Forms.ToolStrip();
this.toolDelete = new System.Windows.Forms.ToolStripButton();
this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
this.toolImportList = new System.Windows.Forms.ToolStripLabel();
this.txtNewImport = new System.Windows.Forms.TextBox();
this.btnAddItem = new System.Windows.Forms.Button();
this.grpCodeStyle = new System.Windows.Forms.GroupBox();
this.rbAutomaticProperties = new System.Windows.Forms.RadioButton();
this.rbNotImplemented = new System.Windows.Forms.RadioButton();
this.chkUseUnderscoreAndLowercaseInDB = new System.Windows.Forms.CheckBox();
this.chkDefaultLazyFetching = new System.Windows.Forms.CheckBox();
this.cboDefaultMapping = new System.Windows.Forms.ComboBox();
this.lblDefaultMapping = new System.Windows.Forms.Label();
this.chkGenerateNHibernateMapping = new System.Windows.Forms.CheckBox();
this.lblSolutionType = new System.Windows.Forms.Label();
this.cboSolutionType = new System.Windows.Forms.ComboBox();
this.cboLanguage = new System.Windows.Forms.ComboBox();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.btnBrowse = new System.Windows.Forms.Button();
this.txtDestination = new System.Windows.Forms.TextBox();
this.lblDestination = new System.Windows.Forms.Label();
this.gpbNHibernate = new System.Windows.Forms.GroupBox();
this.lblDefaultIdGenerator = new System.Windows.Forms.Label();
this.cboDefaultIdGenerator = new System.Windows.Forms.ComboBox();
this.lblUsePrefixTables = new System.Windows.Forms.Label();
this.txtTextPrefix = new System.Windows.Forms.TextBox();
this.chkGenerateCodeFromTemplates = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.chkGenerateSqlCode = new System.Windows.Forms.CheckBox();
this.cboSqlToServerType = new System.Windows.Forms.ComboBox();
this.lblTargetFrameworkVersion = new System.Windows.Forms.Label();
this.cboTargetFrameworkVersion = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).BeginInit();
this.importToolStrip.SuspendLayout();
this.grpCodeStyle.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.gpbNHibernate.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// chkUseTabs
//
this.chkUseTabs.AutoSize = true;
this.chkUseTabs.Location = new System.Drawing.Point(13, 20);
this.chkUseTabs.Name = "chkUseTabs";
this.chkUseTabs.Size = new System.Drawing.Size(120, 17);
this.chkUseTabs.TabIndex = 0;
this.chkUseTabs.Text = "Use tabs for indents";
this.chkUseTabs.UseVisualStyleBackColor = true;
this.chkUseTabs.CheckedChanged += new System.EventHandler(this.chkUseTabs_CheckedChanged);
//
// btnGenerate
//
this.btnGenerate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnGenerate.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnGenerate.Location = new System.Drawing.Point(426, 413);
this.btnGenerate.Name = "btnGenerate";
this.btnGenerate.Size = new System.Drawing.Size(75, 23);
this.btnGenerate.TabIndex = 10;
this.btnGenerate.Text = "Generate";
this.btnGenerate.UseVisualStyleBackColor = true;
this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
//
// 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.Location = new System.Drawing.Point(507, 413);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 11;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// updIndentSize
//
this.updIndentSize.Location = new System.Drawing.Point(13, 56);
this.updIndentSize.Maximum = new decimal(new int[] {
16,
0,
0,
0});
this.updIndentSize.Name = "updIndentSize";
this.updIndentSize.Size = new System.Drawing.Size(82, 20);
this.updIndentSize.TabIndex = 2;
this.updIndentSize.Value = new decimal(new int[] {
4,
0,
0,
0});
//
// lblIndentSize
//
this.lblIndentSize.AutoSize = true;
this.lblIndentSize.Enabled = false;
this.lblIndentSize.Location = new System.Drawing.Point(10, 40);
this.lblIndentSize.Name = "lblIndentSize";
this.lblIndentSize.Size = new System.Drawing.Size(61, 13);
this.lblIndentSize.TabIndex = 1;
this.lblIndentSize.Text = "Indent size:";
//
// lstImportList
//
this.lstImportList.FormattingEnabled = true;
this.lstImportList.Location = new System.Drawing.Point(12, 90);
this.lstImportList.Name = "lstImportList";
this.lstImportList.Size = new System.Drawing.Size(285, 186);
this.lstImportList.TabIndex = 4;
this.lstImportList.SelectedValueChanged += new System.EventHandler(this.lstImportList_SelectedValueChanged);
this.lstImportList.Leave += new System.EventHandler(this.lstImportList_Leave);
//
// importToolStrip
//
this.importToolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.importToolStrip.AutoSize = false;
this.importToolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.importToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.importToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolDelete,
this.toolMoveDown,
this.toolMoveUp,
this.toolImportList});
this.importToolStrip.Location = new System.Drawing.Point(75, 62);
this.importToolStrip.Name = "importToolStrip";
this.importToolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.importToolStrip.Size = new System.Drawing.Size(222, 25);
this.importToolStrip.TabIndex = 3;
this.importToolStrip.Text = "toolStrip1";
//
// toolDelete
//
this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolDelete.Enabled = false;
this.toolDelete.Image = global::NClreplaced.CodeGenerator.Properties.Resources.Delete;
this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolDelete.Name = "toolDelete";
this.toolDelete.Size = new System.Drawing.Size(23, 22);
this.toolDelete.Text = "Delete";
this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
//
// toolMoveDown
//
this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveDown.Enabled = false;
this.toolMoveDown.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveDown;
this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveDown.Name = "toolMoveDown";
this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
this.toolMoveDown.Text = "Move Down";
this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
//
// toolMoveUp
//
this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveUp.Enabled = false;
this.toolMoveUp.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveUp;
this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveUp.Name = "toolMoveUp";
this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
this.toolMoveUp.Text = "Move Up";
this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
//
// toolImportList
//
this.toolImportList.Name = "toolImportList";
this.toolImportList.Size = new System.Drawing.Size(61, 22);
this.toolImportList.Text = "Import list";
//
// txtNewImport
//
this.txtNewImport.Location = new System.Drawing.Point(12, 284);
this.txtNewImport.Name = "txtNewImport";
this.txtNewImport.Size = new System.Drawing.Size(204, 20);
this.txtNewImport.TabIndex = 5;
this.txtNewImport.TextChanged += new System.EventHandler(this.txtNewImport_TextChanged);
this.txtNewImport.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNewImport_KeyDown);
//
// btnAddItem
//
this.btnAddItem.Enabled = false;
this.btnAddItem.Location = new System.Drawing.Point(222, 282);
this.btnAddItem.Name = "btnAddItem";
this.btnAddItem.Size = new System.Drawing.Size(75, 23);
this.btnAddItem.TabIndex = 6;
this.btnAddItem.Text = "Add item";
this.btnAddItem.UseVisualStyleBackColor = true;
this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
//
// grpCodeStyle
//
this.grpCodeStyle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.grpCodeStyle.Controls.Add(this.rbAutomaticProperties);
this.grpCodeStyle.Controls.Add(this.rbNotImplemented);
this.grpCodeStyle.Controls.Add(this.lblIndentSize);
this.grpCodeStyle.Controls.Add(this.updIndentSize);
this.grpCodeStyle.Controls.Add(this.chkUseTabs);
this.grpCodeStyle.Location = new System.Drawing.Point(311, 110);
this.grpCodeStyle.Name = "grpCodeStyle";
this.grpCodeStyle.Size = new System.Drawing.Size(271, 127);
this.grpCodeStyle.TabIndex = 9;
this.grpCodeStyle.TabStop = false;
this.grpCodeStyle.Text = "Code style";
//
// rbAutomaticProperties
//
this.rbAutomaticProperties.AutoSize = true;
this.rbAutomaticProperties.Location = new System.Drawing.Point(13, 105);
this.rbAutomaticProperties.Name = "rbAutomaticProperties";
this.rbAutomaticProperties.Size = new System.Drawing.Size(121, 17);
this.rbAutomaticProperties.TabIndex = 5;
this.rbAutomaticProperties.Text = "Automatic properties";
this.rbAutomaticProperties.UseVisualStyleBackColor = true;
//
// rbNotImplemented
//
this.rbNotImplemented.AutoSize = true;
this.rbNotImplemented.Location = new System.Drawing.Point(13, 82);
this.rbNotImplemented.Name = "rbNotImplemented";
this.rbNotImplemented.Size = new System.Drawing.Size(242, 17);
this.rbNotImplemented.TabIndex = 4;
this.rbNotImplemented.Text = "Fill methods with \'Not implemented\' exceptions";
this.rbNotImplemented.UseVisualStyleBackColor = true;
//
// chkUseUnderscoreAndLowercaseInDB
//
this.chkUseUnderscoreAndLowercaseInDB.AutoSize = true;
this.chkUseUnderscoreAndLowercaseInDB.Location = new System.Drawing.Point(13, 105);
this.chkUseUnderscoreAndLowercaseInDB.Name = "chkUseUnderscoreAndLowercaseInDB";
this.chkUseUnderscoreAndLowercaseInDB.Size = new System.Drawing.Size(252, 30);
this.chkUseUnderscoreAndLowercaseInDB.TabIndex = 10;
this.chkUseUnderscoreAndLowercaseInDB.Text = "Use underscore and lowercase in the database \r\n(or unchanged)";
this.chkUseUnderscoreAndLowercaseInDB.UseVisualStyleBackColor = true;
//
// chkDefaultLazyFetching
//
this.chkDefaultLazyFetching.AutoSize = true;
this.chkDefaultLazyFetching.Location = new System.Drawing.Point(13, 82);
this.chkDefaultLazyFetching.Name = "chkDefaultLazyFetching";
this.chkDefaultLazyFetching.Size = new System.Drawing.Size(122, 17);
this.chkDefaultLazyFetching.TabIndex = 9;
this.chkDefaultLazyFetching.Text = "Default lazy fetching";
this.chkDefaultLazyFetching.UseVisualStyleBackColor = true;
//
// cboDefaultMapping
//
this.cboDefaultMapping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDefaultMapping.FormattingEnabled = true;
this.cboDefaultMapping.Location = new System.Drawing.Point(13, 55);
this.cboDefaultMapping.Name = "cboDefaultMapping";
this.cboDefaultMapping.Size = new System.Drawing.Size(120, 21);
this.cboDefaultMapping.TabIndex = 8;
//
// lblDefaultMapping
//
this.lblDefaultMapping.AutoSize = true;
this.lblDefaultMapping.Location = new System.Drawing.Point(10, 39);
this.lblDefaultMapping.Name = "lblDefaultMapping";
this.lblDefaultMapping.Size = new System.Drawing.Size(87, 13);
this.lblDefaultMapping.TabIndex = 7;
this.lblDefaultMapping.Text = "Default mapping:";
//
// chkGenerateNHibernateMapping
//
this.chkGenerateNHibernateMapping.AutoSize = true;
this.chkGenerateNHibernateMapping.Location = new System.Drawing.Point(13, 19);
this.chkGenerateNHibernateMapping.Name = "chkGenerateNHibernateMapping";
this.chkGenerateNHibernateMapping.Size = new System.Drawing.Size(170, 17);
this.chkGenerateNHibernateMapping.TabIndex = 6;
this.chkGenerateNHibernateMapping.Text = "Generate NHibernate mapping";
this.chkGenerateNHibernateMapping.UseVisualStyleBackColor = true;
//
// lblSolutionType
//
this.lblSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblSolutionType.AutoSize = true;
this.lblSolutionType.Location = new System.Drawing.Point(308, 67);
this.lblSolutionType.Name = "lblSolutionType";
this.lblSolutionType.Size = new System.Drawing.Size(101, 13);
this.lblSolutionType.TabIndex = 12;
this.lblSolutionType.Text = "Type of solution file:";
//
// cboSolutionType
//
this.cboSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cboSolutionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboSolutionType.FormattingEnabled = true;
this.cboSolutionType.Items.AddRange(new object[] {
"Visual Studio 2005",
"Visual Studio 2008"});
this.cboSolutionType.Location = new System.Drawing.Point(311, 83);
this.cboSolutionType.Name = "cboSolutionType";
this.cboSolutionType.Size = new System.Drawing.Size(133, 21);
this.cboSolutionType.TabIndex = 13;
//
// cboLanguage
//
this.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboLanguage.FormattingEnabled = true;
this.cboLanguage.Items.AddRange(new object[] {
"C#",
"Java"});
this.cboLanguage.Location = new System.Drawing.Point(12, 64);
this.cboLanguage.Name = "cboLanguage";
this.cboLanguage.Size = new System.Drawing.Size(60, 21);
this.cboLanguage.TabIndex = 14;
this.cboLanguage.SelectedIndexChanged += new System.EventHandler(this.cboLanguage_SelectedIndexChanged);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tableLayoutPanel1.ColumnCount = 3;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.tableLayoutPanel1.Controls.Add(this.btnBrowse, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.txtDestination, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.lblDestination, 0, 0);
this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 1;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 37F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(570, 37);
this.tableLayoutPanel1.TabIndex = 15;
//
// btnBrowse
//
this.btnBrowse.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnBrowse.Location = new System.Drawing.Point(495, 7);
this.btnBrowse.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(75, 23);
this.btnBrowse.TabIndex = 6;
this.btnBrowse.Text = "Browse...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// txtDestination
//
this.txtDestination.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.txtDestination.Location = new System.Drawing.Point(66, 8);
this.txtDestination.Name = "txtDestination";
this.txtDestination.Size = new System.Drawing.Size(423, 20);
this.txtDestination.TabIndex = 5;
//
// lblDestination
//
this.lblDestination.Anchor = System.Windows.Forms.AnchorStyles.None;
this.lblDestination.AutoSize = true;
this.lblDestination.Location = new System.Drawing.Point(0, 11);
this.lblDestination.Margin = new System.Windows.Forms.Padding(0, 0, 0, 1);
this.lblDestination.Name = "lblDestination";
this.lblDestination.Size = new System.Drawing.Size(63, 13);
this.lblDestination.TabIndex = 4;
this.lblDestination.Text = "Destination:";
//
// gpbNHibernate
//
this.gpbNHibernate.Controls.Add(this.txtTextPrefix);
this.gpbNHibernate.Controls.Add(this.lblDefaultIdGenerator);
this.gpbNHibernate.Controls.Add(this.cboDefaultIdGenerator);
this.gpbNHibernate.Controls.Add(this.chkGenerateNHibernateMapping);
this.gpbNHibernate.Controls.Add(this.lblDefaultMapping);
this.gpbNHibernate.Controls.Add(this.cboDefaultMapping);
this.gpbNHibernate.Controls.Add(this.chkDefaultLazyFetching);
this.gpbNHibernate.Controls.Add(this.chkUseUnderscoreAndLowercaseInDB);
this.gpbNHibernate.Controls.Add(this.lblUsePrefixTables);
this.gpbNHibernate.Location = new System.Drawing.Point(311, 242);
this.gpbNHibernate.Name = "gpbNHibernate";
this.gpbNHibernate.Size = new System.Drawing.Size(271, 164);
this.gpbNHibernate.TabIndex = 11;
this.gpbNHibernate.TabStop = false;
this.gpbNHibernate.Text = "NHibernate";
//
// lblDefaultIdGenerator
//
this.lblDefaultIdGenerator.AutoSize = true;
this.lblDefaultIdGenerator.Location = new System.Drawing.Point(136, 39);
this.lblDefaultIdGenerator.Name = "lblDefaultIdGenerator";
this.lblDefaultIdGenerator.Size = new System.Drawing.Size(103, 13);
this.lblDefaultIdGenerator.TabIndex = 16;
this.lblDefaultIdGenerator.Text = "Default id generator:";
//
// cboDefaultIdGenerator
//
this.cboDefaultIdGenerator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboDefaultIdGenerator.FormattingEnabled = true;
this.cboDefaultIdGenerator.Location = new System.Drawing.Point(139, 55);
this.cboDefaultIdGenerator.Name = "cboDefaultIdGenerator";
this.cboDefaultIdGenerator.Size = new System.Drawing.Size(121, 21);
this.cboDefaultIdGenerator.TabIndex = 15;
//
// lblUsePrefixTables
//
this.lblUsePrefixTables.AutoSize = true;
this.lblUsePrefixTables.Location = new System.Drawing.Point(10, 142);
this.lblUsePrefixTables.Name = "lblUsePrefixTables";
this.lblUsePrefixTables.Size = new System.Drawing.Size(193, 13);
this.lblUsePrefixTables.TabIndex = 14;
this.lblUsePrefixTables.Text = "Use prefix in the tables (empty to none):";
//
// txtTextPrefix
//
this.txtTextPrefix.Location = new System.Drawing.Point(200, 139);
this.txtTextPrefix.Name = "txtTextPrefix";
this.txtTextPrefix.Size = new System.Drawing.Size(65, 20);
this.txtTextPrefix.TabIndex = 13;
this.txtTextPrefix.Text = "pfx_";
//
// chkGenerateCodeFromTemplates
//
this.chkGenerateCodeFromTemplates.AutoSize = true;
this.chkGenerateCodeFromTemplates.Location = new System.Drawing.Point(13, 19);
this.chkGenerateCodeFromTemplates.Name = "chkGenerateCodeFromTemplates";
this.chkGenerateCodeFromTemplates.Size = new System.Drawing.Size(168, 17);
this.chkGenerateCodeFromTemplates.TabIndex = 16;
this.chkGenerateCodeFromTemplates.Text = "Generate code from templates";
this.chkGenerateCodeFromTemplates.UseVisualStyleBackColor = true;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.chkGenerateCodeFromTemplates);
this.groupBox1.Location = new System.Drawing.Point(12, 361);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(285, 45);
this.groupBox1.TabIndex = 18;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Templates";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.chkGenerateSqlCode);
this.groupBox2.Controls.Add(this.cboSqlToServerType);
this.groupBox2.Location = new System.Drawing.Point(12, 310);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(285, 45);
this.groupBox2.TabIndex = 19;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "SQL";
//
// chkGenerateSqlCode
//
this.chkGenerateSqlCode.AutoSize = true;
this.chkGenerateSqlCode.Location = new System.Drawing.Point(13, 19);
this.chkGenerateSqlCode.Name = "chkGenerateSqlCode";
this.chkGenerateSqlCode.Size = new System.Drawing.Size(136, 17);
this.chkGenerateSqlCode.TabIndex = 2;
this.chkGenerateSqlCode.Text = "Generate SQL code to:";
this.chkGenerateSqlCode.UseVisualStyleBackColor = true;
//
// cboSqlToServerType
//
this.cboSqlToServerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboSqlToServerType.FormattingEnabled = true;
this.cboSqlToServerType.Location = new System.Drawing.Point(158, 17);
this.cboSqlToServerType.Name = "cboSqlToServerType";
this.cboSqlToServerType.Size = new System.Drawing.Size(121, 21);
this.cboSqlToServerType.TabIndex = 1;
//
// lblTargetFrameworkVersion
//
this.lblTargetFrameworkVersion.AutoSize = true;
this.lblTargetFrameworkVersion.Location = new System.Drawing.Point(447, 67);
this.lblTargetFrameworkVersion.Name = "lblTargetFrameworkVersion";
this.lblTargetFrameworkVersion.Size = new System.Drawing.Size(130, 13);
this.lblTargetFrameworkVersion.TabIndex = 20;
this.lblTargetFrameworkVersion.Text = "Target framework version:";
//
// cboTargetFrameworkVersion
//
this.cboTargetFrameworkVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboTargetFrameworkVersion.FormattingEnabled = true;
this.cboTargetFrameworkVersion.Location = new System.Drawing.Point(450, 83);
this.cboTargetFrameworkVersion.Name = "cboTargetFrameworkVersion";
this.cboTargetFrameworkVersion.Size = new System.Drawing.Size(132, 21);
this.cboTargetFrameworkVersion.TabIndex = 21;
//
// Dialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(594, 451);
this.Controls.Add(this.cboTargetFrameworkVersion);
this.Controls.Add(this.lblTargetFrameworkVersion);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.cboLanguage);
this.Controls.Add(this.cboSolutionType);
this.Controls.Add(this.lblSolutionType);
this.Controls.Add(this.gpbNHibernate);
this.Controls.Add(this.grpCodeStyle);
this.Controls.Add(this.btnAddItem);
this.Controls.Add(this.txtNewImport);
this.Controls.Add(this.importToolStrip);
this.Controls.Add(this.lstImportList);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnGenerate);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(600, 309);
this.Name = "Dialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Code Generation";
((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).EndInit();
this.importToolStrip.ResumeLayout(false);
this.importToolStrip.PerformLayout();
this.grpCodeStyle.ResumeLayout(false);
this.grpCodeStyle.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.gpbNHibernate.ResumeLayout(false);
this.gpbNHibernate.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : AssociationDialog.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.txtStartRole = new System.Windows.Forms.TextBox();
this.cboEndMultiplicity = new System.Windows.Forms.ComboBox();
this.txtEndRole = new System.Windows.Forms.TextBox();
this.cboStartMultiplicity = new System.Windows.Forms.ComboBox();
this.picArrow = new System.Windows.Forms.PictureBox();
this.txtName = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize) (this.picArrow)).BeginInit();
this.SuspendLayout();
//
// 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.Location = new System.Drawing.Point(272, 105);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOK.Location = new System.Drawing.Point(191, 105);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// txtStartRole
//
this.txtStartRole.Location = new System.Drawing.Point(12, 60);
this.txtStartRole.Name = "txtStartRole";
this.txtStartRole.Size = new System.Drawing.Size(125, 20);
this.txtStartRole.TabIndex = 2;
//
// cboEndMultiplicity
//
this.cboEndMultiplicity.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.cboEndMultiplicity.FormattingEnabled = true;
this.cboEndMultiplicity.Items.AddRange(new object[] {
"1",
"0..1",
"0..*",
"1..*",
"*"});
this.cboEndMultiplicity.Location = new System.Drawing.Point(297, 12);
this.cboEndMultiplicity.Name = "cboEndMultiplicity";
this.cboEndMultiplicity.Size = new System.Drawing.Size(50, 21);
this.cboEndMultiplicity.TabIndex = 1;
//
// txtEndRole
//
this.txtEndRole.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.txtEndRole.Location = new System.Drawing.Point(222, 60);
this.txtEndRole.Name = "txtEndRole";
this.txtEndRole.Size = new System.Drawing.Size(125, 20);
this.txtEndRole.TabIndex = 3;
this.txtEndRole.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// cboStartMultiplicity
//
this.cboStartMultiplicity.FormattingEnabled = true;
this.cboStartMultiplicity.Items.AddRange(new object[] {
"1",
"0..1",
"0..*",
"1..*",
"*"});
this.cboStartMultiplicity.Location = new System.Drawing.Point(12, 12);
this.cboStartMultiplicity.Name = "cboStartMultiplicity";
this.cboStartMultiplicity.Size = new System.Drawing.Size(50, 21);
this.cboStartMultiplicity.TabIndex = 6;
//
// picArrow
//
this.picArrow.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.picArrow.Location = new System.Drawing.Point(12, 39);
this.picArrow.Name = "picArrow";
this.picArrow.Size = new System.Drawing.Size(335, 15);
this.picArrow.TabIndex = 4;
this.picArrow.TabStop = false;
this.picArrow.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picArrow_MouseDown);
this.picArrow.Paint += new System.Windows.Forms.PaintEventHandler(this.picArrow_Paint);
//
// txtName
//
this.txtName.Anchor = System.Windows.Forms.AnchorStyles.Top;
this.txtName.Location = new System.Drawing.Point(99, 12);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(160, 20);
this.txtName.TabIndex = 0;
this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// replacedociationDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(359, 140);
this.Controls.Add(this.txtName);
this.Controls.Add(this.cboStartMultiplicity);
this.Controls.Add(this.txtEndRole);
this.Controls.Add(this.picArrow);
this.Controls.Add(this.cboEndMultiplicity);
this.Controls.Add(this.txtStartRole);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "replacedociationDialog";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit replacedociation";
((System.ComponentModel.ISupportInitialize) (this.picArrow)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : MembersDialog.designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
this.txtSyntax = new System.Windows.Forms.TextBox();
this.lblSyntax = new System.Windows.Forms.Label();
this.lblName = new System.Windows.Forms.Label();
this.txtName = new System.Windows.Forms.TextBox();
this.lblType = new System.Windows.Forms.Label();
this.lblAccess = new System.Windows.Forms.Label();
this.cboAccess = new System.Windows.Forms.ComboBox();
this.txtInitialValue = new System.Windows.Forms.TextBox();
this.lblInitValue = new System.Windows.Forms.Label();
this.lstMembers = new System.Windows.Forms.ListView();
this.icon = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.type = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.access = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.modifier = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.cboType = new System.Windows.Forms.ComboBox();
this.btnClose = new System.Windows.Forms.Button();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.toolNewField = new System.Windows.Forms.ToolStripButton();
this.toolNewMethod = new System.Windows.Forms.ToolStripButton();
this.toolNewConstructor = new System.Windows.Forms.ToolStripButton();
this.toolNewDestructor = new System.Windows.Forms.ToolStripButton();
this.toolNewProperty = new System.Windows.Forms.ToolStripButton();
this.toolNewEvent = new System.Windows.Forms.ToolStripButton();
this.toolDelete = new System.Windows.Forms.ToolStripButton();
this.toolSepMoving = new System.Windows.Forms.ToolStripSeparator();
this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
this.toolSepSorting = new System.Windows.Forms.ToolStripSeparator();
this.toolSortByName = new System.Windows.Forms.ToolStripButton();
this.toolSortByAccess = new System.Windows.Forms.ToolStripButton();
this.toolSortByKind = new System.Windows.Forms.ToolStripButton();
this.toolSepAddNew = new System.Windows.Forms.ToolStripSeparator();
this.toolOverrideList = new System.Windows.Forms.ToolStripButton();
this.toolImplementList = new System.Windows.Forms.ToolStripButton();
this.grpFieldModifiers = new System.Windows.Forms.GroupBox();
this.chkVolatile = new System.Windows.Forms.CheckBox();
this.chkFieldHider = new System.Windows.Forms.CheckBox();
this.chkConstant = new System.Windows.Forms.CheckBox();
this.chkReadonly = new System.Windows.Forms.CheckBox();
this.chkFieldStatic = new System.Windows.Forms.CheckBox();
this.chkOperationStatic = new System.Windows.Forms.CheckBox();
this.chkVirtual = new System.Windows.Forms.CheckBox();
this.chkAbstract = new System.Windows.Forms.CheckBox();
this.chkOverride = new System.Windows.Forms.CheckBox();
this.chkSealed = new System.Windows.Forms.CheckBox();
this.chkOperationHider = new System.Windows.Forms.CheckBox();
this.grpOperationModifiers = new System.Windows.Forms.GroupBox();
this.lblNHMColumnName = new System.Windows.Forms.Label();
this.txtNHMColumnName = new System.Windows.Forms.TextBox();
this.chkIsPrimaryKey = new System.Windows.Forms.CheckBox();
this.chkIsNotNull = new System.Windows.Forms.CheckBox();
this.chkIsUnique = new System.Windows.Forms.CheckBox();
this.lblForeignKey = new System.Windows.Forms.Label();
this.cboForeignKey = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
this.toolStrip.SuspendLayout();
this.grpFieldModifiers.SuspendLayout();
this.grpOperationModifiers.SuspendLayout();
this.SuspendLayout();
//
// errorProvider
//
this.errorProvider.ContainerControl = this;
//
// txtSyntax
//
this.txtSyntax.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtSyntax.Location = new System.Drawing.Point(71, 12);
this.txtSyntax.Name = "txtSyntax";
this.txtSyntax.Size = new System.Drawing.Size(367, 20);
this.txtSyntax.TabIndex = 0;
this.txtSyntax.Validating += new System.ComponentModel.CancelEventHandler(this.txtSyntax_Validating);
//
// lblSyntax
//
this.lblSyntax.Location = new System.Drawing.Point(0, 15);
this.lblSyntax.Name = "lblSyntax";
this.lblSyntax.Size = new System.Drawing.Size(65, 13);
this.lblSyntax.TabIndex = 10;
this.lblSyntax.Text = "Syntax";
this.lblSyntax.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// lblName
//
this.lblName.Location = new System.Drawing.Point(0, 47);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(65, 13);
this.lblName.TabIndex = 11;
this.lblName.Text = "Name";
this.lblName.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// 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(71, 44);
this.txtName.Name = "txtName";
this.txtName.Size = new System.Drawing.Size(187, 20);
this.txtName.TabIndex = 1;
this.txtName.Validating += new System.ComponentModel.CancelEventHandler(this.txtName_Validating);
//
// lblType
//
this.lblType.Location = new System.Drawing.Point(0, 77);
this.lblType.Name = "lblType";
this.lblType.Size = new System.Drawing.Size(65, 13);
this.lblType.TabIndex = 12;
this.lblType.Text = "Type";
this.lblType.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// lblAccess
//
this.lblAccess.Location = new System.Drawing.Point(0, 107);
this.lblAccess.Name = "lblAccess";
this.lblAccess.Size = new System.Drawing.Size(65, 13);
this.lblAccess.TabIndex = 13;
this.lblAccess.Text = "Access";
this.lblAccess.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// cboAccess
//
this.cboAccess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cboAccess.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboAccess.FormattingEnabled = true;
this.cboAccess.Items.AddRange(new object[] {
"Default",
"Public",
"Protected Internal",
"Internal",
"Protected",
"Private"});
this.cboAccess.Location = new System.Drawing.Point(71, 104);
this.cboAccess.Name = "cboAccess";
this.cboAccess.Size = new System.Drawing.Size(187, 21);
this.cboAccess.TabIndex = 3;
this.cboAccess.SelectedIndexChanged += new System.EventHandler(this.cboAccess_SelectedIndexChanged);
this.cboAccess.Validated += new System.EventHandler(this.cboAccess_Validated);
//
// txtInitialValue
//
this.txtInitialValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtInitialValue.Location = new System.Drawing.Point(71, 134);
this.txtInitialValue.Name = "txtInitialValue";
this.txtInitialValue.Size = new System.Drawing.Size(367, 20);
this.txtInitialValue.TabIndex = 4;
this.txtInitialValue.Validating += new System.ComponentModel.CancelEventHandler(this.txtInitialValue_Validating);
//
// lblInitValue
//
this.lblInitValue.Location = new System.Drawing.Point(0, 137);
this.lblInitValue.Name = "lblInitValue";
this.lblInitValue.Size = new System.Drawing.Size(65, 13);
this.lblInitValue.TabIndex = 14;
this.lblInitValue.Text = "Initial value";
this.lblInitValue.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// lstMembers
//
this.lstMembers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lstMembers.AutoArrange = false;
this.lstMembers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.icon,
this.name,
this.type,
this.access,
this.modifier});
this.lstMembers.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
this.lstMembers.FullRowSelect = true;
this.lstMembers.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.lstMembers.HideSelection = false;
this.lstMembers.Location = new System.Drawing.Point(12, 266);
this.lstMembers.MultiSelect = false;
this.lstMembers.Name = "lstMembers";
this.lstMembers.ShowGroups = false;
this.lstMembers.Size = new System.Drawing.Size(445, 255);
this.lstMembers.TabIndex = 7;
this.lstMembers.UseCompatibleStateImageBehavior = false;
this.lstMembers.View = System.Windows.Forms.View.Details;
this.lstMembers.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lstMembers_ItemSelectionChanged);
this.lstMembers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lstMembers_KeyDown);
//
// icon
//
this.icon.Text = "";
this.icon.Width = 20;
//
// name
//
this.name.Text = "Name";
this.name.Width = 119;
//
// type
//
this.type.Text = "Type";
this.type.Width = 101;
//
// access
//
this.access.Text = "Access";
this.access.Width = 102;
//
// modifier
//
this.modifier.Text = "Modifier";
this.modifier.Width = 99;
//
// cboType
//
this.cboType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cboType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.cboType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.Lisreplacedems;
this.cboType.FormattingEnabled = true;
this.cboType.Location = new System.Drawing.Point(71, 74);
this.cboType.Name = "cboType";
this.cboType.Size = new System.Drawing.Size(187, 21);
this.cboType.Sorted = true;
this.cboType.TabIndex = 2;
this.cboType.Validating += new System.ComponentModel.CancelEventHandler(this.cboType_Validating);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(382, 527);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 8;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// toolStrip
//
this.toolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.toolStrip.AutoSize = false;
this.toolStrip.BackColor = System.Drawing.SystemColors.Control;
this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolNewField,
this.toolNewMethod,
this.toolNewConstructor,
this.toolNewDestructor,
this.toolNewProperty,
this.toolNewEvent,
this.toolDelete,
this.toolSepMoving,
this.toolMoveDown,
this.toolMoveUp,
this.toolSepSorting,
this.toolSortByName,
this.toolSortByAccess,
this.toolSortByKind,
this.toolSepAddNew,
this.toolOverrideList,
this.toolImplementList});
this.toolStrip.Location = new System.Drawing.Point(12, 241);
this.toolStrip.Name = "toolStrip";
this.toolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.toolStrip.Size = new System.Drawing.Size(445, 25);
this.toolStrip.TabIndex = 6;
this.toolStrip.Text = "toolStrip1";
//
// toolNewField
//
this.toolNewField.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewField.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Field;
this.toolNewField.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewField.Name = "toolNewField";
this.toolNewField.Size = new System.Drawing.Size(23, 22);
this.toolNewField.Text = "New Field";
this.toolNewField.Click += new System.EventHandler(this.toolNewField_Click);
//
// toolNewMethod
//
this.toolNewMethod.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewMethod.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Method;
this.toolNewMethod.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewMethod.Name = "toolNewMethod";
this.toolNewMethod.Size = new System.Drawing.Size(23, 22);
this.toolNewMethod.Text = "New Method";
this.toolNewMethod.Click += new System.EventHandler(this.toolNewMethod_Click);
//
// toolNewConstructor
//
this.toolNewConstructor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewConstructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Constructor;
this.toolNewConstructor.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewConstructor.Name = "toolNewConstructor";
this.toolNewConstructor.Size = new System.Drawing.Size(23, 22);
this.toolNewConstructor.Text = "New Constructor";
this.toolNewConstructor.Click += new System.EventHandler(this.toolNewConstructor_Click);
//
// toolNewDestructor
//
this.toolNewDestructor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewDestructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Destructor;
this.toolNewDestructor.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewDestructor.Name = "toolNewDestructor";
this.toolNewDestructor.Size = new System.Drawing.Size(23, 22);
this.toolNewDestructor.Text = "New Destructor";
this.toolNewDestructor.Click += new System.EventHandler(this.toolNewDestructor_Click);
//
// toolNewProperty
//
this.toolNewProperty.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewProperty.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Property;
this.toolNewProperty.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewProperty.Name = "toolNewProperty";
this.toolNewProperty.Size = new System.Drawing.Size(23, 22);
this.toolNewProperty.Text = "New Property";
this.toolNewProperty.Click += new System.EventHandler(this.toolNewProperty_Click);
//
// toolNewEvent
//
this.toolNewEvent.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolNewEvent.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Event;
this.toolNewEvent.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolNewEvent.Name = "toolNewEvent";
this.toolNewEvent.Size = new System.Drawing.Size(23, 22);
this.toolNewEvent.Text = "New Event";
this.toolNewEvent.Click += new System.EventHandler(this.toolNewEvent_Click);
//
// toolDelete
//
this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolDelete.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delete;
this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolDelete.Name = "toolDelete";
this.toolDelete.Size = new System.Drawing.Size(23, 22);
this.toolDelete.Text = "Delete";
this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
//
// toolSepMoving
//
this.toolSepMoving.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolSepMoving.Name = "toolSepMoving";
this.toolSepMoving.Size = new System.Drawing.Size(6, 25);
//
// toolMoveDown
//
this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveDown.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveDown;
this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveDown.Name = "toolMoveDown";
this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
this.toolMoveDown.Text = "Move Down";
this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
//
// toolMoveUp
//
this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolMoveUp.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveUp;
this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolMoveUp.Name = "toolMoveUp";
this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
this.toolMoveUp.Text = "Move Up";
this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
//
// toolSepSorting
//
this.toolSepSorting.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolSepSorting.Name = "toolSepSorting";
this.toolSepSorting.Size = new System.Drawing.Size(6, 25);
//
// toolSortByName
//
this.toolSortByName.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolSortByName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolSortByName.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByName;
this.toolSortByName.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolSortByName.Name = "toolSortByName";
this.toolSortByName.Size = new System.Drawing.Size(23, 22);
this.toolSortByName.Text = "Sort by Name";
this.toolSortByName.Click += new System.EventHandler(this.toolSortByName_Click);
//
// toolSortByAccess
//
this.toolSortByAccess.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolSortByAccess.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolSortByAccess.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByAccess;
this.toolSortByAccess.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolSortByAccess.Name = "toolSortByAccess";
this.toolSortByAccess.Size = new System.Drawing.Size(23, 22);
this.toolSortByAccess.Text = "Sort by Access";
this.toolSortByAccess.Click += new System.EventHandler(this.toolSortByAccess_Click);
//
// toolSortByKind
//
this.toolSortByKind.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolSortByKind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolSortByKind.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByKind;
this.toolSortByKind.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolSortByKind.Name = "toolSortByKind";
this.toolSortByKind.Size = new System.Drawing.Size(23, 22);
this.toolSortByKind.Text = "Sort by Kind";
this.toolSortByKind.Click += new System.EventHandler(this.toolSortByKind_Click);
//
// toolSepAddNew
//
this.toolSepAddNew.Name = "toolSepAddNew";
this.toolSepAddNew.Size = new System.Drawing.Size(6, 25);
//
// toolOverrideList
//
this.toolOverrideList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolOverrideList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Overrides;
this.toolOverrideList.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolOverrideList.Name = "toolOverrideList";
this.toolOverrideList.Size = new System.Drawing.Size(23, 22);
this.toolOverrideList.Text = "Override List";
this.toolOverrideList.Click += new System.EventHandler(this.toolOverrideList_Click);
//
// toolImplementList
//
this.toolImplementList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolImplementList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Implements;
this.toolImplementList.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolImplementList.Name = "toolImplementList";
this.toolImplementList.Size = new System.Drawing.Size(23, 22);
this.toolImplementList.Text = "Interface Implement List";
this.toolImplementList.Click += new System.EventHandler(this.toolImplementList_Click);
//
// grpFieldModifiers
//
this.grpFieldModifiers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.grpFieldModifiers.Controls.Add(this.chkVolatile);
this.grpFieldModifiers.Controls.Add(this.chkFieldHider);
this.grpFieldModifiers.Controls.Add(this.chkConstant);
this.grpFieldModifiers.Controls.Add(this.chkReadonly);
this.grpFieldModifiers.Controls.Add(this.chkFieldStatic);
this.grpFieldModifiers.Location = new System.Drawing.Point(280, 37);
this.grpFieldModifiers.Name = "grpFieldModifiers";
this.grpFieldModifiers.Size = new System.Drawing.Size(158, 88);
this.grpFieldModifiers.TabIndex = 6;
this.grpFieldModifiers.TabStop = false;
this.grpFieldModifiers.Text = "Modifiers";
this.grpFieldModifiers.Validated += new System.EventHandler(this.grpFieldModifiers_Validated);
//
// chkVolatile
//
this.chkVolatile.AutoSize = true;
this.chkVolatile.Location = new System.Drawing.Point(88, 42);
this.chkVolatile.Name = "chkVolatile";
this.chkVolatile.Size = new System.Drawing.Size(60, 17);
this.chkVolatile.TabIndex = 4;
this.chkVolatile.Text = "Volatile";
this.chkVolatile.UseVisualStyleBackColor = true;
this.chkVolatile.CheckedChanged += new System.EventHandler(this.chkVolatile_CheckedChanged);
//
// chkFieldHider
//
this.chkFieldHider.AutoSize = true;
this.chkFieldHider.Location = new System.Drawing.Point(88, 19);
this.chkFieldHider.Name = "chkFieldHider";
this.chkFieldHider.Size = new System.Drawing.Size(48, 17);
this.chkFieldHider.TabIndex = 3;
this.chkFieldHider.Text = "New";
this.chkFieldHider.UseVisualStyleBackColor = true;
this.chkFieldHider.CheckedChanged += new System.EventHandler(this.chkFieldHider_CheckedChanged);
//
// chkConstant
//
this.chkConstant.AutoSize = true;
this.chkConstant.Location = new System.Drawing.Point(11, 65);
this.chkConstant.Name = "chkConstant";
this.chkConstant.Size = new System.Drawing.Size(53, 17);
this.chkConstant.TabIndex = 2;
this.chkConstant.Text = "Const";
this.chkConstant.UseVisualStyleBackColor = true;
this.chkConstant.CheckedChanged += new System.EventHandler(this.chkConstant_CheckedChanged);
//
// chkReadonly
//
this.chkReadonly.AutoSize = true;
this.chkReadonly.Location = new System.Drawing.Point(11, 42);
this.chkReadonly.Name = "chkReadonly";
this.chkReadonly.Size = new System.Drawing.Size(71, 17);
this.chkReadonly.TabIndex = 1;
this.chkReadonly.Text = "Readonly";
this.chkReadonly.UseVisualStyleBackColor = true;
this.chkReadonly.CheckedChanged += new System.EventHandler(this.chkReadonly_CheckedChanged);
//
// chkFieldStatic
//
this.chkFieldStatic.AutoSize = true;
this.chkFieldStatic.Location = new System.Drawing.Point(11, 19);
this.chkFieldStatic.Name = "chkFieldStatic";
this.chkFieldStatic.Size = new System.Drawing.Size(53, 17);
this.chkFieldStatic.TabIndex = 0;
this.chkFieldStatic.Text = "Static";
this.chkFieldStatic.UseVisualStyleBackColor = true;
this.chkFieldStatic.CheckedChanged += new System.EventHandler(this.chkFieldStatic_CheckedChanged);
//
// chkOperationStatic
//
this.chkOperationStatic.AutoSize = true;
this.chkOperationStatic.Location = new System.Drawing.Point(11, 19);
this.chkOperationStatic.Name = "chkOperationStatic";
this.chkOperationStatic.Size = new System.Drawing.Size(53, 17);
this.chkOperationStatic.TabIndex = 0;
this.chkOperationStatic.Text = "Static";
this.chkOperationStatic.UseVisualStyleBackColor = true;
this.chkOperationStatic.CheckedChanged += new System.EventHandler(this.chkOperationStatic_CheckedChanged);
//
// chkVirtual
//
this.chkVirtual.AutoSize = true;
this.chkVirtual.Location = new System.Drawing.Point(11, 42);
this.chkVirtual.Name = "chkVirtual";
this.chkVirtual.Size = new System.Drawing.Size(55, 17);
this.chkVirtual.TabIndex = 1;
this.chkVirtual.Text = "Virtual";
this.chkVirtual.UseVisualStyleBackColor = true;
this.chkVirtual.CheckedChanged += new System.EventHandler(this.chkVirtual_CheckedChanged);
//
// chkAbstract
//
this.chkAbstract.AutoSize = true;
this.chkAbstract.Location = new System.Drawing.Point(11, 65);
this.chkAbstract.Name = "chkAbstract";
this.chkAbstract.Size = new System.Drawing.Size(65, 17);
this.chkAbstract.TabIndex = 2;
this.chkAbstract.Text = "Abstract";
this.chkAbstract.UseVisualStyleBackColor = true;
this.chkAbstract.CheckedChanged += new System.EventHandler(this.chkAbstract_CheckedChanged);
//
// chkOverride
//
this.chkOverride.AutoSize = true;
this.chkOverride.Location = new System.Drawing.Point(88, 42);
this.chkOverride.Name = "chkOverride";
this.chkOverride.Size = new System.Drawing.Size(66, 17);
this.chkOverride.TabIndex = 4;
this.chkOverride.Text = "Override";
this.chkOverride.UseVisualStyleBackColor = true;
this.chkOverride.CheckedChanged += new System.EventHandler(this.chkOverride_CheckedChanged);
//
// chkSealed
//
this.chkSealed.AutoSize = true;
this.chkSealed.Location = new System.Drawing.Point(88, 65);
this.chkSealed.Name = "chkSealed";
this.chkSealed.Size = new System.Drawing.Size(59, 17);
this.chkSealed.TabIndex = 5;
this.chkSealed.Text = "Sealed";
this.chkSealed.UseVisualStyleBackColor = true;
this.chkSealed.CheckedChanged += new System.EventHandler(this.chkSealed_CheckedChanged);
//
// chkOperationHider
//
this.chkOperationHider.AutoSize = true;
this.chkOperationHider.Location = new System.Drawing.Point(88, 19);
this.chkOperationHider.Name = "chkOperationHider";
this.chkOperationHider.Size = new System.Drawing.Size(48, 17);
this.chkOperationHider.TabIndex = 3;
this.chkOperationHider.Text = "New";
this.chkOperationHider.UseVisualStyleBackColor = true;
this.chkOperationHider.CheckedChanged += new System.EventHandler(this.chkOperationHider_CheckedChanged);
//
// grpOperationModifiers
//
this.grpOperationModifiers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.grpOperationModifiers.Controls.Add(this.chkOperationHider);
this.grpOperationModifiers.Controls.Add(this.chkSealed);
this.grpOperationModifiers.Controls.Add(this.chkOverride);
this.grpOperationModifiers.Controls.Add(this.chkAbstract);
this.grpOperationModifiers.Controls.Add(this.chkVirtual);
this.grpOperationModifiers.Controls.Add(this.chkOperationStatic);
this.grpOperationModifiers.Location = new System.Drawing.Point(280, 37);
this.grpOperationModifiers.Name = "grpOperationModifiers";
this.grpOperationModifiers.Size = new System.Drawing.Size(158, 88);
this.grpOperationModifiers.TabIndex = 5;
this.grpOperationModifiers.TabStop = false;
this.grpOperationModifiers.Text = "Modifiers";
this.grpOperationModifiers.Validated += new System.EventHandler(this.grpOperationModifiers_Validated);
//
// lblNHMColumnName
//
this.lblNHMColumnName.AutoSize = true;
this.lblNHMColumnName.Location = new System.Drawing.Point(0, 163);
this.lblNHMColumnName.Name = "lblNHMColumnName";
this.lblNHMColumnName.Size = new System.Drawing.Size(70, 13);
this.lblNHMColumnName.TabIndex = 15;
this.lblNHMColumnName.Text = "NHM Column";
//
// txtNHMColumnName
//
this.txtNHMColumnName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtNHMColumnName.Location = new System.Drawing.Point(71, 160);
this.txtNHMColumnName.Name = "txtNHMColumnName";
this.txtNHMColumnName.Size = new System.Drawing.Size(367, 20);
this.txtNHMColumnName.TabIndex = 5;
this.txtNHMColumnName.Validating += new System.ComponentModel.CancelEventHandler(this.txtNHMColumnName_Validating);
//
// chkIsPrimaryKey
//
this.chkIsPrimaryKey.AutoSize = true;
this.chkIsPrimaryKey.Location = new System.Drawing.Point(71, 186);
this.chkIsPrimaryKey.Name = "chkIsPrimaryKey";
this.chkIsPrimaryKey.Size = new System.Drawing.Size(60, 17);
this.chkIsPrimaryKey.TabIndex = 16;
this.chkIsPrimaryKey.Text = "Idenreplacedy";
this.chkIsPrimaryKey.UseVisualStyleBackColor = true;
this.chkIsPrimaryKey.CheckedChanged += new System.EventHandler(this.chkIsPrimaryKey_CheckedChanged);
//
// chkIsNotNull
//
this.chkIsNotNull.AutoSize = true;
this.chkIsNotNull.Location = new System.Drawing.Point(229, 186);
this.chkIsNotNull.Name = "chkIsNotNull";
this.chkIsNotNull.Size = new System.Drawing.Size(64, 17);
this.chkIsNotNull.TabIndex = 17;
this.chkIsNotNull.Text = "Not Null";
this.chkIsNotNull.UseVisualStyleBackColor = true;
this.chkIsNotNull.CheckedChanged += new System.EventHandler(this.chkIsNotNull_CheckedChanged);
//
// chkIsUnique
//
this.chkIsUnique.AutoSize = true;
this.chkIsUnique.Location = new System.Drawing.Point(151, 186);
this.chkIsUnique.Name = "chkIsUnique";
this.chkIsUnique.Size = new System.Drawing.Size(60, 17);
this.chkIsUnique.TabIndex = 18;
this.chkIsUnique.Text = "Unique";
this.chkIsUnique.UseVisualStyleBackColor = true;
this.chkIsUnique.CheckedChanged += new System.EventHandler(this.chkIsUnique_CheckedChanged);
//
// lblForeignKey
//
this.lblForeignKey.AutoSize = true;
this.lblForeignKey.Location = new System.Drawing.Point(68, 212);
this.lblForeignKey.Name = "lblForeignKey";
this.lblForeignKey.Size = new System.Drawing.Size(71, 13);
this.lblForeignKey.TabIndex = 19;
this.lblForeignKey.Text = "Many to One:";
//
// cboForeignKey
//
this.cboForeignKey.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboForeignKey.FormattingEnabled = true;
this.cboForeignKey.Location = new System.Drawing.Point(137, 209);
this.cboForeignKey.Name = "cboForeignKey";
this.cboForeignKey.Size = new System.Drawing.Size(156, 21);
this.cboForeignKey.TabIndex = 20;
this.cboForeignKey.SelectedIndexChanged += new System.EventHandler(this.cboForeignKey_SelectedIndexChanged);
//
// MembersDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CausesValidation = false;
this.ClientSize = new System.Drawing.Size(469, 562);
this.Controls.Add(this.cboForeignKey);
this.Controls.Add(this.lblForeignKey);
this.Controls.Add(this.chkIsUnique);
this.Controls.Add(this.txtNHMColumnName);
this.Controls.Add(this.chkIsNotNull);
this.Controls.Add(this.chkIsPrimaryKey);
this.Controls.Add(this.lblNHMColumnName);
this.Controls.Add(this.lstMembers);
this.Controls.Add(this.toolStrip);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.cboType);
this.Controls.Add(this.txtInitialValue);
this.Controls.Add(this.lblInitValue);
this.Controls.Add(this.cboAccess);
this.Controls.Add(this.lblAccess);
this.Controls.Add(this.lblType);
this.Controls.Add(this.txtName);
this.Controls.Add(this.lblName);
this.Controls.Add(this.lblSyntax);
this.Controls.Add(this.txtSyntax);
this.Controls.Add(this.grpOperationModifiers);
this.Controls.Add(this.grpFieldModifiers);
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(400, 450);
this.Name = "MembersDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Members";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PropertiesDialog_KeyDown);
((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.grpFieldModifiers.ResumeLayout(false);
this.grpFieldModifiers.PerformLayout();
this.grpOperationModifiers.ResumeLayout(false);
this.grpOperationModifiers.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : PDFExportOptions.Designer.cs
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
License : GNU General Public License v3.0
Project Creator : alexgracianoarj
private void InitializeComponent()
{
this.lblTop = new System.Windows.Forms.Label();
this.chkSelectedOnly = new System.Windows.Forms.CheckBox();
this.grpMargin = new System.Windows.Forms.GroupBox();
this.numBottom = new System.Windows.Forms.NumericUpDown();
this.numRight = new System.Windows.Forms.NumericUpDown();
this.numLeft = new System.Windows.Forms.NumericUpDown();
this.lblBottom = new System.Windows.Forms.Label();
this.numTop = new System.Windows.Forms.NumericUpDown();
this.lblRight = new System.Windows.Forms.Label();
this.cboUnit = new System.Windows.Forms.ComboBox();
this.lblLeft = new System.Windows.Forms.Label();
this.lblUnit = new System.Windows.Forms.Label();
this.cmdCancel = new System.Windows.Forms.Button();
this.cmdOK = new System.Windows.Forms.Button();
this.grpMargin.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numBottom)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numRight)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numLeft)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.numTop)).BeginInit();
this.SuspendLayout();
//
// lblTop
//
this.lblTop.Location = new System.Drawing.Point(28, 48);
this.lblTop.Name = "lblTop";
this.lblTop.Size = new System.Drawing.Size(80, 13);
this.lblTop.TabIndex = 0;
this.lblTop.Text = "Top";
this.lblTop.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// chkSelectedOnly
//
this.chkSelectedOnly.AutoSize = true;
this.chkSelectedOnly.Location = new System.Drawing.Point(12, 12);
this.chkSelectedOnly.Name = "chkSelectedOnly";
this.chkSelectedOnly.Size = new System.Drawing.Size(166, 17);
this.chkSelectedOnly.TabIndex = 1;
this.chkSelectedOnly.Text = "Export only selected elements";
this.chkSelectedOnly.UseVisualStyleBackColor = true;
//
// grpMargin
//
this.grpMargin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.grpMargin.Controls.Add(this.numBottom);
this.grpMargin.Controls.Add(this.numRight);
this.grpMargin.Controls.Add(this.numLeft);
this.grpMargin.Controls.Add(this.lblBottom);
this.grpMargin.Controls.Add(this.lblLeft);
this.grpMargin.Controls.Add(this.numTop);
this.grpMargin.Controls.Add(this.lblRight);
this.grpMargin.Controls.Add(this.cboUnit);
this.grpMargin.Controls.Add(this.lblUnit);
this.grpMargin.Controls.Add(this.lblTop);
this.grpMargin.Location = new System.Drawing.Point(12, 35);
this.grpMargin.Name = "grpMargin";
this.grpMargin.Size = new System.Drawing.Size(268, 147);
this.grpMargin.TabIndex = 2;
this.grpMargin.TabStop = false;
this.grpMargin.Text = "Margin";
//
// numBottom
//
this.numBottom.Location = new System.Drawing.Point(114, 116);
this.numBottom.Name = "numBottom";
this.numBottom.Size = new System.Drawing.Size(48, 20);
this.numBottom.TabIndex = 2;
//
// numRight
//
this.numRight.Location = new System.Drawing.Point(204, 80);
this.numRight.Name = "numRight";
this.numRight.Size = new System.Drawing.Size(48, 20);
this.numRight.TabIndex = 2;
//
// numLeft
//
this.numLeft.Location = new System.Drawing.Point(46, 80);
this.numLeft.Name = "numLeft";
this.numLeft.Size = new System.Drawing.Size(48, 20);
this.numLeft.TabIndex = 2;
//
// lblBottom
//
this.lblBottom.Location = new System.Drawing.Point(28, 118);
this.lblBottom.Name = "lblBottom";
this.lblBottom.Size = new System.Drawing.Size(80, 13);
this.lblBottom.TabIndex = 0;
this.lblBottom.Text = "Bottom";
this.lblBottom.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// numTop
//
this.numTop.Location = new System.Drawing.Point(114, 46);
this.numTop.Name = "numTop";
this.numTop.Size = new System.Drawing.Size(48, 20);
this.numTop.TabIndex = 2;
//
// lblRight
//
this.lblRight.Location = new System.Drawing.Point(116, 82);
this.lblRight.Name = "lblRight";
this.lblRight.Size = new System.Drawing.Size(80, 13);
this.lblRight.TabIndex = 0;
this.lblRight.Text = "Right";
this.lblRight.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cboUnit
//
this.cboUnit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboUnit.FormattingEnabled = true;
this.cboUnit.Items.AddRange(new object[] {
"mm",
"cm",
"dot",
"pixel",
"inch"});
this.cboUnit.Location = new System.Drawing.Point(173, 19);
this.cboUnit.Name = "cboUnit";
this.cboUnit.Size = new System.Drawing.Size(89, 21);
this.cboUnit.TabIndex = 1;
//
// lblLeft
//
this.lblLeft.Location = new System.Drawing.Point(2, 82);
this.lblLeft.Name = "lblLeft";
this.lblLeft.Size = new System.Drawing.Size(40, 13);
this.lblLeft.TabIndex = 0;
this.lblLeft.Text = "Left";
this.lblLeft.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblUnit
//
this.lblUnit.Location = new System.Drawing.Point(13, 22);
this.lblUnit.Name = "lblUnit";
this.lblUnit.Size = new System.Drawing.Size(154, 13);
this.lblUnit.TabIndex = 0;
this.lblUnit.Text = "Unit";
this.lblUnit.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// cmdCancel
//
this.cmdCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cmdCancel.Location = new System.Drawing.Point(205, 189);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(75, 23);
this.cmdCancel.TabIndex = 3;
this.cmdCancel.Text = "Cancel";
this.cmdCancel.UseVisualStyleBackColor = true;
//
// cmdOK
//
this.cmdOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.cmdOK.Location = new System.Drawing.Point(124, 189);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(75, 23);
this.cmdOK.TabIndex = 3;
this.cmdOK.Text = "OK";
this.cmdOK.UseVisualStyleBackColor = true;
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
//
// PDFExportOptions
//
this.AcceptButton = this.cmdOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.cmdCancel;
this.ClientSize = new System.Drawing.Size(292, 224);
this.ControlBox = false;
this.Controls.Add(this.cmdOK);
this.Controls.Add(this.cmdCancel);
this.Controls.Add(this.grpMargin);
this.Controls.Add(this.chkSelectedOnly);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "PDFExportOptions";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "PDF Export Options";
this.Shown += new System.EventHandler(this.PDFExportOptions_Shown);
this.grpMargin.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.numBottom)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numRight)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numLeft)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.numTop)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : NodeComboBox.cs
License : MIT License
Project Creator : AlexGyver
License : MIT License
Project Creator : AlexGyver
private Control CreateCombo(TreeNodeAdv node)
{
ComboBox comboBox = new ComboBox();
if (DropDownItems != null)
comboBox.Items.AddRange(DropDownItems.ToArray());
comboBox.SelectedItem = GetValue(node);
comboBox.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox.DropDownClosed += new EventHandler(EditorDropDownClosed);
SetEditControlProperties(comboBox, node);
return comboBox;
}
19
View Source File : SerialForm.Designer.cs
License : MIT License
Project Creator : AlexGyver
License : MIT License
Project Creator : AlexGyver
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SerialForm));
this.label1 = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.chkManualFan = new System.Windows.Forms.CheckBox();
this.sldManualFan = new System.Windows.Forms.TrackBar();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.sldManualColor = new System.Windows.Forms.TrackBar();
this.chkManualColor = new System.Windows.Forms.CheckBox();
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.label12 = new System.Windows.Forms.Label();
this.sldLedBrightness = new System.Windows.Forms.TrackBar();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.sldPlotInterval = new System.Windows.Forms.TrackBar();
this.label15 = new System.Windows.Forms.Label();
this.nMaxFan = new System.Windows.Forms.NumericUpDown();
this.nMinFan = new System.Windows.Forms.NumericUpDown();
this.nMinTemp = new System.Windows.Forms.NumericUpDown();
this.nMaxTemp = new System.Windows.Forms.NumericUpDown();
this.lblManualFanValue = new System.Windows.Forms.Label();
this.lblManualColorValue = new System.Windows.Forms.Label();
this.lblLedBrightnessValue = new System.Windows.Forms.Label();
this.lblPlotIntervalValue = new System.Windows.Forms.Label();
this.cboComPort = new System.Windows.Forms.ComboBox();
this.cboMaxTempSource = new System.Windows.Forms.ComboBox();
this.label16 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.sldManualFan)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.sldManualColor)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.sldLedBrightness)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.sldPlotInterval)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nMaxFan)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nMinFan)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nMinTemp)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nMaxTemp)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(77, 13);
this.label1.TabIndex = 1;
this.label1.Text = "PORT address";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.okButton.Location = new System.Drawing.Point(575, 391);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
this.okButton.TabIndex = 2;
this.okButton.Text = "Close";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// chkManualFan
//
this.chkManualFan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.chkManualFan.AutoSize = true;
this.chkManualFan.Location = new System.Drawing.Point(12, 79);
this.chkManualFan.Name = "chkManualFan";
this.chkManualFan.Size = new System.Drawing.Size(85, 17);
this.chkManualFan.TabIndex = 3;
this.chkManualFan.Text = "Manual FAN";
this.chkManualFan.UseVisualStyleBackColor = true;
this.chkManualFan.CheckedChanged += new System.EventHandler(this.chkManualFan_CheckedChanged);
//
// sldManualFan
//
this.sldManualFan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.sldManualFan.Location = new System.Drawing.Point(12, 115);
this.sldManualFan.Maximum = 100;
this.sldManualFan.Name = "sldManualFan";
this.sldManualFan.Size = new System.Drawing.Size(294, 45);
this.sldManualFan.TabIndex = 4;
this.sldManualFan.TickFrequency = 5;
this.sldManualFan.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.sldManualFan.ValueChanged += new System.EventHandler(this.sldManualFan_ValueChanged);
//
// pictureBox1
//
this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(391, 15);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(256, 256);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBox1.TabIndex = 5;
this.pictureBox1.TabStop = false;
this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
//
// sldManualColor
//
this.sldManualColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.sldManualColor.Location = new System.Drawing.Point(12, 202);
this.sldManualColor.Maximum = 1000;
this.sldManualColor.Name = "sldManualColor";
this.sldManualColor.Size = new System.Drawing.Size(294, 45);
this.sldManualColor.TabIndex = 7;
this.sldManualColor.TickFrequency = 25;
this.sldManualColor.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.sldManualColor.ValueChanged += new System.EventHandler(this.sldManualColor_ValueChanged);
//
// chkManualColor
//
this.chkManualColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.chkManualColor.AutoSize = true;
this.chkManualColor.Location = new System.Drawing.Point(12, 166);
this.chkManualColor.Name = "chkManualColor";
this.chkManualColor.Size = new System.Drawing.Size(101, 17);
this.chkManualColor.TabIndex = 6;
this.chkManualColor.Text = "Manual COLOR";
this.chkManualColor.UseVisualStyleBackColor = true;
this.chkManualColor.CheckedChanged += new System.EventHandler(this.chkManualColor_CheckedChanged);
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(342, 219);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 13);
this.label2.TabIndex = 9;
this.label2.Text = "FAN min";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(339, 54);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(50, 13);
this.label3.TabIndex = 11;
this.label3.Text = "FAN max";
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(388, 276);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(56, 13);
this.label4.TabIndex = 13;
this.label4.Text = "TEMP min";
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(534, 276);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(59, 13);
this.label5.TabIndex = 15;
this.label5.Text = "TEMP max";
//
// label6
//
this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(21, 99);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(13, 13);
this.label6.TabIndex = 16;
this.label6.Text = "0";
//
// label7
//
this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(281, 99);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(25, 13);
this.label7.TabIndex = 17;
this.label7.Text = "100";
//
// label8
//
this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(275, 186);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(31, 13);
this.label8.TabIndex = 19;
this.label8.Text = "1000";
//
// label9
//
this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(21, 186);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(13, 13);
this.label9.TabIndex = 18;
this.label9.Text = "0";
//
// label10
//
this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(9, 250);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(79, 13);
this.label10.TabIndex = 20;
this.label10.Text = "LED brightness";
//
// label11
//
this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(281, 272);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(25, 13);
this.label11.TabIndex = 23;
this.label11.Text = "100";
//
// label12
//
this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(21, 272);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(13, 13);
this.label12.TabIndex = 22;
this.label12.Text = "0";
//
// sldLedBrightness
//
this.sldLedBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.sldLedBrightness.Location = new System.Drawing.Point(12, 288);
this.sldLedBrightness.Maximum = 100;
this.sldLedBrightness.Name = "sldLedBrightness";
this.sldLedBrightness.Size = new System.Drawing.Size(294, 45);
this.sldLedBrightness.TabIndex = 21;
this.sldLedBrightness.TickFrequency = 5;
this.sldLedBrightness.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.sldLedBrightness.ValueChanged += new System.EventHandler(this.sldLedBrightness_ValueChanged);
//
// label13
//
this.label13.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(287, 357);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(19, 13);
this.label13.TabIndex = 27;
this.label13.Text = "10";
//
// label14
//
this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(21, 357);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(13, 13);
this.label14.TabIndex = 26;
this.label14.Text = "0";
//
// sldPlotInterval
//
this.sldPlotInterval.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.sldPlotInterval.Location = new System.Drawing.Point(12, 373);
this.sldPlotInterval.Name = "sldPlotInterval";
this.sldPlotInterval.Size = new System.Drawing.Size(294, 45);
this.sldPlotInterval.TabIndex = 25;
this.sldPlotInterval.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
this.sldPlotInterval.ValueChanged += new System.EventHandler(this.sldPlotInterval_ValueChanged);
//
// label15
//
this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(9, 335);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(81, 13);
this.label15.TabIndex = 24;
this.label15.Text = "CHART interval";
//
// nMaxFan
//
this.nMaxFan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nMaxFan.Location = new System.Drawing.Point(341, 31);
this.nMaxFan.Name = "nMaxFan";
this.nMaxFan.Size = new System.Drawing.Size(48, 20);
this.nMaxFan.TabIndex = 28;
this.nMaxFan.ValueChanged += new System.EventHandler(this.nMaxFan_ValueChanged);
//
// nMinFan
//
this.nMinFan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nMinFan.Location = new System.Drawing.Point(341, 235);
this.nMinFan.Name = "nMinFan";
this.nMinFan.Size = new System.Drawing.Size(48, 20);
this.nMinFan.TabIndex = 29;
this.nMinFan.ValueChanged += new System.EventHandler(this.nMinFan_ValueChanged);
//
// nMinTemp
//
this.nMinTemp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nMinTemp.Location = new System.Drawing.Point(450, 274);
this.nMinTemp.Name = "nMinTemp";
this.nMinTemp.Size = new System.Drawing.Size(48, 20);
this.nMinTemp.TabIndex = 30;
this.nMinTemp.ValueChanged += new System.EventHandler(this.nMinTemp_ValueChanged);
//
// nMaxTemp
//
this.nMaxTemp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nMaxTemp.Location = new System.Drawing.Point(599, 274);
this.nMaxTemp.Name = "nMaxTemp";
this.nMaxTemp.Size = new System.Drawing.Size(48, 20);
this.nMaxTemp.TabIndex = 31;
this.nMaxTemp.ValueChanged += new System.EventHandler(this.nMaxTemp_ValueChanged);
//
// lblManualFanValue
//
this.lblManualFanValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblManualFanValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblManualFanValue.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblManualFanValue.Location = new System.Drawing.Point(139, 144);
this.lblManualFanValue.Name = "lblManualFanValue";
this.lblManualFanValue.Size = new System.Drawing.Size(41, 16);
this.lblManualFanValue.TabIndex = 32;
this.lblManualFanValue.Text = "100";
this.lblManualFanValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblManualColorValue
//
this.lblManualColorValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblManualColorValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblManualColorValue.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblManualColorValue.Location = new System.Drawing.Point(139, 231);
this.lblManualColorValue.Name = "lblManualColorValue";
this.lblManualColorValue.Size = new System.Drawing.Size(41, 16);
this.lblManualColorValue.TabIndex = 33;
this.lblManualColorValue.Text = "100";
this.lblManualColorValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblLedBrightnessValue
//
this.lblLedBrightnessValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblLedBrightnessValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblLedBrightnessValue.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblLedBrightnessValue.Location = new System.Drawing.Point(139, 317);
this.lblLedBrightnessValue.Name = "lblLedBrightnessValue";
this.lblLedBrightnessValue.Size = new System.Drawing.Size(41, 16);
this.lblLedBrightnessValue.TabIndex = 34;
this.lblLedBrightnessValue.Text = "100";
this.lblLedBrightnessValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// lblPlotIntervalValue
//
this.lblPlotIntervalValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblPlotIntervalValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblPlotIntervalValue.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.lblPlotIntervalValue.Location = new System.Drawing.Point(139, 402);
this.lblPlotIntervalValue.Name = "lblPlotIntervalValue";
this.lblPlotIntervalValue.Size = new System.Drawing.Size(41, 16);
this.lblPlotIntervalValue.TabIndex = 35;
this.lblPlotIntervalValue.Text = "100";
this.lblPlotIntervalValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// cboComPort
//
this.cboComPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboComPort.FormattingEnabled = true;
this.cboComPort.Location = new System.Drawing.Point(106, 12);
this.cboComPort.Name = "cboComPort";
this.cboComPort.Size = new System.Drawing.Size(95, 21);
this.cboComPort.TabIndex = 36;
this.cboComPort.SelectedIndexChanged += new System.EventHandler(this.cboComPort_SelectedIndexChanged);
//
// cboMaxTempSource
//
this.cboMaxTempSource.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboMaxTempSource.FormattingEnabled = true;
this.cboMaxTempSource.Items.AddRange(new object[] {
"CPU only",
"GPU only",
"Max (CPU, GPU)",
"Temp 1",
"Temp 2"});
this.cboMaxTempSource.Location = new System.Drawing.Point(106, 39);
this.cboMaxTempSource.Name = "cboMaxTempSource";
this.cboMaxTempSource.Size = new System.Drawing.Size(95, 21);
this.cboMaxTempSource.TabIndex = 37;
this.cboMaxTempSource.SelectedIndexChanged += new System.EventHandler(this.cboMaxTempSource_SelectedIndexChanged);
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(12, 42);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(72, 13);
this.label16.TabIndex = 38;
this.label16.Text = "TEMP source";
//
// SerialForm
//
this.AcceptButton = this.okButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.okButton;
this.ClientSize = new System.Drawing.Size(662, 426);
this.Controls.Add(this.label16);
this.Controls.Add(this.cboMaxTempSource);
this.Controls.Add(this.cboComPort);
this.Controls.Add(this.lblPlotIntervalValue);
this.Controls.Add(this.lblLedBrightnessValue);
this.Controls.Add(this.lblManualColorValue);
this.Controls.Add(this.lblManualFanValue);
this.Controls.Add(this.nMaxTemp);
this.Controls.Add(this.nMinTemp);
this.Controls.Add(this.nMinFan);
this.Controls.Add(this.nMaxFan);
this.Controls.Add(this.label13);
this.Controls.Add(this.label14);
this.Controls.Add(this.sldPlotInterval);
this.Controls.Add(this.label15);
this.Controls.Add(this.label11);
this.Controls.Add(this.label12);
this.Controls.Add(this.sldLedBrightness);
this.Controls.Add(this.label10);
this.Controls.Add(this.label8);
this.Controls.Add(this.label9);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.sldManualColor);
this.Controls.Add(this.chkManualColor);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.sldManualFan);
this.Controls.Add(this.chkManualFan);
this.Controls.Add(this.okButton);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "SerialForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Serial Configuration";
this.Load += new System.EventHandler(this.SerialForm_Load);
((System.ComponentModel.ISupportInitialize)(this.sldManualFan)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.sldManualColor)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.sldLedBrightness)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.sldPlotInterval)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nMaxFan)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nMinFan)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nMinTemp)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nMaxTemp)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : KeyBindForm13Key.Designer.cs
License : GNU General Public License v2.0
Project Creator : AmanoTooko
License : GNU General Public License v2.0
Project Creator : AmanoTooko
private void InitializeComponent()
{
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.textBox4 = new System.Windows.Forms.TextBox();
this.textBox5 = new System.Windows.Forms.TextBox();
this.textBox6 = new System.Windows.Forms.TextBox();
this.textBox7 = new System.Windows.Forms.TextBox();
this.textBox8 = new System.Windows.Forms.TextBox();
this.textBox9 = new System.Windows.Forms.TextBox();
this.textBox10 = new System.Windows.Forms.TextBox();
this.textBox11 = new System.Windows.Forms.TextBox();
this.textBox12 = new System.Windows.Forms.TextBox();
this.textBox13 = new System.Windows.Forms.TextBox();
this.cbOctaveHigher = new System.Windows.Forms.ComboBox();
this.cbOctaveLower = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// textBox1
//
this.textBox1.BackColor = System.Drawing.Color.White;
this.textBox1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox1.ForeColor = System.Drawing.Color.DarkGray;
this.textBox1.Location = new System.Drawing.Point(330, 336);
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(111, 26);
this.textBox1.TabIndex = 0;
this.textBox1.Text = "请设置";
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox2
//
this.textBox2.BackColor = System.Drawing.Color.White;
this.textBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox2.ForeColor = System.Drawing.Color.DarkGray;
this.textBox2.Location = new System.Drawing.Point(43, 313);
this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true;
this.textBox2.Size = new System.Drawing.Size(111, 26);
this.textBox2.TabIndex = 1;
this.textBox2.Text = "请设置";
this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox3
//
this.textBox3.BackColor = System.Drawing.Color.White;
this.textBox3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox3.ForeColor = System.Drawing.Color.DarkGray;
this.textBox3.Location = new System.Drawing.Point(330, 294);
this.textBox3.Name = "textBox3";
this.textBox3.ReadOnly = true;
this.textBox3.Size = new System.Drawing.Size(111, 26);
this.textBox3.TabIndex = 2;
this.textBox3.Text = "请设置";
this.textBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox4
//
this.textBox4.BackColor = System.Drawing.Color.White;
this.textBox4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox4.ForeColor = System.Drawing.Color.DarkGray;
this.textBox4.Location = new System.Drawing.Point(43, 272);
this.textBox4.Name = "textBox4";
this.textBox4.ReadOnly = true;
this.textBox4.Size = new System.Drawing.Size(111, 26);
this.textBox4.TabIndex = 3;
this.textBox4.Text = "请设置";
this.textBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox5
//
this.textBox5.BackColor = System.Drawing.Color.White;
this.textBox5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox5.ForeColor = System.Drawing.Color.DarkGray;
this.textBox5.Location = new System.Drawing.Point(330, 250);
this.textBox5.Name = "textBox5";
this.textBox5.ReadOnly = true;
this.textBox5.Size = new System.Drawing.Size(111, 26);
this.textBox5.TabIndex = 4;
this.textBox5.Text = "请设置";
this.textBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox6
//
this.textBox6.BackColor = System.Drawing.Color.White;
this.textBox6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox6.ForeColor = System.Drawing.Color.DarkGray;
this.textBox6.Location = new System.Drawing.Point(330, 209);
this.textBox6.Name = "textBox6";
this.textBox6.ReadOnly = true;
this.textBox6.Size = new System.Drawing.Size(111, 26);
this.textBox6.TabIndex = 5;
this.textBox6.Text = "请设置";
this.textBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox7
//
this.textBox7.BackColor = System.Drawing.Color.White;
this.textBox7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox7.ForeColor = System.Drawing.Color.DarkGray;
this.textBox7.Location = new System.Drawing.Point(43, 189);
this.textBox7.Name = "textBox7";
this.textBox7.ReadOnly = true;
this.textBox7.Size = new System.Drawing.Size(111, 26);
this.textBox7.TabIndex = 6;
this.textBox7.Text = "请设置";
this.textBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox8
//
this.textBox8.BackColor = System.Drawing.Color.White;
this.textBox8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox8.ForeColor = System.Drawing.Color.DarkGray;
this.textBox8.Location = new System.Drawing.Point(330, 166);
this.textBox8.Name = "textBox8";
this.textBox8.ReadOnly = true;
this.textBox8.Size = new System.Drawing.Size(111, 26);
this.textBox8.TabIndex = 7;
this.textBox8.Text = "请设置";
this.textBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox9
//
this.textBox9.BackColor = System.Drawing.Color.White;
this.textBox9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox9.ForeColor = System.Drawing.Color.DarkGray;
this.textBox9.Location = new System.Drawing.Point(43, 145);
this.textBox9.Name = "textBox9";
this.textBox9.ReadOnly = true;
this.textBox9.Size = new System.Drawing.Size(111, 26);
this.textBox9.TabIndex = 8;
this.textBox9.Text = "请设置";
this.textBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox10
//
this.textBox10.BackColor = System.Drawing.Color.White;
this.textBox10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox10.ForeColor = System.Drawing.Color.DarkGray;
this.textBox10.Location = new System.Drawing.Point(330, 125);
this.textBox10.Name = "textBox10";
this.textBox10.ReadOnly = true;
this.textBox10.Size = new System.Drawing.Size(111, 26);
this.textBox10.TabIndex = 9;
this.textBox10.Text = "请设置";
this.textBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox11
//
this.textBox11.BackColor = System.Drawing.Color.White;
this.textBox11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox11.ForeColor = System.Drawing.Color.DarkGray;
this.textBox11.Location = new System.Drawing.Point(43, 104);
this.textBox11.Name = "textBox11";
this.textBox11.ReadOnly = true;
this.textBox11.Size = new System.Drawing.Size(111, 26);
this.textBox11.TabIndex = 10;
this.textBox11.Text = "请设置";
this.textBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox12
//
this.textBox12.BackColor = System.Drawing.Color.White;
this.textBox12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox12.ForeColor = System.Drawing.Color.DarkGray;
this.textBox12.Location = new System.Drawing.Point(330, 81);
this.textBox12.Name = "textBox12";
this.textBox12.ReadOnly = true;
this.textBox12.Size = new System.Drawing.Size(111, 26);
this.textBox12.TabIndex = 11;
this.textBox12.Text = "请设置";
this.textBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// textBox13
//
this.textBox13.BackColor = System.Drawing.Color.White;
this.textBox13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox13.ForeColor = System.Drawing.Color.DarkGray;
this.textBox13.Location = new System.Drawing.Point(330, 40);
this.textBox13.Name = "textBox13";
this.textBox13.ReadOnly = true;
this.textBox13.Size = new System.Drawing.Size(111, 26);
this.textBox13.TabIndex = 12;
this.textBox13.Text = "请设置";
this.textBox13.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// cbOctaveHigher
//
this.cbOctaveHigher.FormattingEnabled = true;
this.cbOctaveHigher.Items.AddRange(new object[] {
"Shift",
"Alt",
"Ctrl"});
this.cbOctaveHigher.Location = new System.Drawing.Point(330, 384);
this.cbOctaveHigher.Name = "cbOctaveHigher";
this.cbOctaveHigher.Size = new System.Drawing.Size(111, 28);
this.cbOctaveHigher.TabIndex = 13;
this.cbOctaveHigher.Text = "Ctrl";
this.cbOctaveHigher.SelectedIndexChanged += new System.EventHandler(this.cbOctaveHigh_SelectedIndexChanged);
//
// cbOctaveLower
//
this.cbOctaveLower.FormattingEnabled = true;
this.cbOctaveLower.Items.AddRange(new object[] {
"Alt",
"Ctrl",
"Shift"});
this.cbOctaveLower.Location = new System.Drawing.Point(330, 424);
this.cbOctaveLower.Name = "cbOctaveLower";
this.cbOctaveLower.Size = new System.Drawing.Size(111, 28);
this.cbOctaveLower.TabIndex = 14;
this.cbOctaveLower.Text = "Shift";
this.cbOctaveLower.SelectedIndexChanged += new System.EventHandler(this.cbOctaveLow_SelectedIndexChanged);
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Transparent;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.ForeColor = System.Drawing.Color.Transparent;
this.button1.Location = new System.Drawing.Point(262, 501);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(123, 29);
this.button1.TabIndex = 15;
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.BackColor = System.Drawing.Color.Transparent;
this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button2.ForeColor = System.Drawing.Color.Transparent;
this.button2.Location = new System.Drawing.Point(114, 503);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(123, 29);
this.button2.TabIndex = 16;
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// KeyBindForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.BackgroundImage = global::Daigreplacedou.Properties.Resources.keybindingBGimg;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(484, 561);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Controls.Add(this.cbOctaveLower);
this.Controls.Add(this.cbOctaveHigher);
this.Controls.Add(this.textBox13);
this.Controls.Add(this.textBox12);
this.Controls.Add(this.textBox11);
this.Controls.Add(this.textBox10);
this.Controls.Add(this.textBox9);
this.Controls.Add(this.textBox8);
this.Controls.Add(this.textBox7);
this.Controls.Add(this.textBox6);
this.Controls.Add(this.textBox5);
this.Controls.Add(this.textBox4);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "KeyBindForm";
this.Text = "按键绑定";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.KeyBindForm_FormClosing);
this.Load += new System.EventHandler(this.KeyBindForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ConfigForm.Designer.cs
License : GNU General Public License v2.0
Project Creator : AmanoTooko
License : GNU General Public License v2.0
Project Creator : AmanoTooko
private void InitializeComponent()
{
this.label6 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tbNtpServer = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.cbAutoChord = new System.Windows.Forms.CheckBox();
this.label5 = new System.Windows.Forms.Label();
this.chordEventNum = new System.Windows.Forms.NumericUpDown();
this.minEventNum = new System.Windows.Forms.NumericUpDown();
this.panel1 = new System.Windows.Forms.Panel();
this.cbUsingreplacedysis = new System.Windows.Forms.CheckBox();
this.label14 = new System.Windows.Forms.Label();
this.cbPcap = new System.Windows.Forms.CheckBox();
this.label13 = new System.Windows.Forms.Label();
this.panel4 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.hotKeyControl5 = new Daigreplacedou.HotKeyControl();
this.hotKeyControl4 = new Daigreplacedou.HotKeyControl();
this.hotKeyControl3 = new Daigreplacedou.HotKeyControl();
this.hotKeyControl1 = new Daigreplacedou.HotKeyControl();
this.label11 = new System.Windows.Forms.Label();
this.hotKeyControl2 = new Daigreplacedou.HotKeyControl();
this.panel2 = new System.Windows.Forms.Panel();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tpKey = new System.Windows.Forms.TabPage();
this.tpPlaySetting = new System.Windows.Forms.TabPage();
this.tbLyric = new System.Windows.Forms.TabPage();
this.panel5 = new System.Windows.Forms.Panel();
this.label10 = new System.Windows.Forms.Label();
this.cbSuffix = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.label12 = new System.Windows.Forms.Label();
this.cbLrcEnable = new System.Windows.Forms.CheckBox();
this.nudPort = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.chordEventNum)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.minEventNum)).BeginInit();
this.panel1.SuspendLayout();
this.panel3.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tpKey.SuspendLayout();
this.tpPlaySetting.SuspendLayout();
this.tbLyric.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nudPort)).BeginInit();
this.SuspendLayout();
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(14, 18);
this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(96, 28);
this.label6.TabIndex = 42;
this.label6.Text = "开始演奏";
//
// label9
//
this.label9.AutoSize = true;
this.label9.BackColor = System.Drawing.Color.Transparent;
this.label9.ForeColor = System.Drawing.Color.Gray;
this.label9.Location = new System.Drawing.Point(15, 117);
this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(96, 28);
this.label9.TabIndex = 45;
this.label9.Text = "向下移调";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(14, 84);
this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(96, 28);
this.label8.TabIndex = 44;
this.label8.Text = "向上移调";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(14, 51);
this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(96, 28);
this.label7.TabIndex = 43;
this.label7.Text = "结束演奏";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(4, 19);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(159, 28);
this.label1.TabIndex = 33;
this.label1.Text = "音符间最小间隔";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 57);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(180, 28);
this.label2.TabIndex = 34;
this.label2.Text = "和弦解析最小间隔";
//
// tbNtpServer
//
this.tbNtpServer.ForeColor = System.Drawing.Color.Gray;
this.tbNtpServer.Location = new System.Drawing.Point(146, 130);
this.tbNtpServer.Name = "tbNtpServer";
this.tbNtpServer.Size = new System.Drawing.Size(142, 35);
this.tbNtpServer.TabIndex = 40;
this.tbNtpServer.TextChanged += new System.EventHandler(this.TbNtpServer_TextChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(4, 210);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(117, 28);
this.label3.TabIndex = 35;
this.label3.Text = "和弦平均化";
//
// cbAutoChord
//
this.cbAutoChord.AutoSize = true;
this.cbAutoChord.Location = new System.Drawing.Point(146, 209);
this.cbAutoChord.Name = "cbAutoChord";
this.cbAutoChord.Size = new System.Drawing.Size(80, 32);
this.cbAutoChord.TabIndex = 39;
this.cbAutoChord.Text = "开启";
this.cbAutoChord.UseVisualStyleBackColor = true;
this.cbAutoChord.CheckedChanged += new System.EventHandler(this.CbAutoChord_CheckedChangeEvent);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(4, 135);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(117, 28);
this.label5.TabIndex = 36;
this.label5.Text = "NTP服务器";
//
// chordEventNum
//
this.chordEventNum.ForeColor = System.Drawing.Color.Gray;
this.chordEventNum.Location = new System.Drawing.Point(146, 54);
this.chordEventNum.Maximum = new decimal(new int[] {
200,
0,
0,
0});
this.chordEventNum.Minimum = new decimal(new int[] {
10,
0,
0,
0});
this.chordEventNum.Name = "chordEventNum";
this.chordEventNum.Size = new System.Drawing.Size(120, 35);
this.chordEventNum.TabIndex = 38;
this.chordEventNum.Value = new decimal(new int[] {
50,
0,
0,
0});
this.chordEventNum.ValueChanged += new System.EventHandler(this.ChordEventNum_NumChanged);
//
// minEventNum
//
this.minEventNum.ForeColor = System.Drawing.Color.Gray;
this.minEventNum.Location = new System.Drawing.Point(146, 12);
this.minEventNum.Maximum = new decimal(new int[] {
200,
0,
0,
0});
this.minEventNum.Minimum = new decimal(new int[] {
10,
0,
0,
0});
this.minEventNum.Name = "minEventNum";
this.minEventNum.Size = new System.Drawing.Size(120, 35);
this.minEventNum.TabIndex = 37;
this.minEventNum.Value = new decimal(new int[] {
50,
0,
0,
0});
this.minEventNum.ValueChanged += new System.EventHandler(this.MinEventNum_NumChanged);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel1.Controls.Add(this.cbUsingreplacedysis);
this.panel1.Controls.Add(this.label14);
this.panel1.Controls.Add(this.cbPcap);
this.panel1.Controls.Add(this.label13);
this.panel1.Controls.Add(this.panel4);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.tbNtpServer);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.cbAutoChord);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.minEventNum);
this.panel1.Controls.Add(this.chordEventNum);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(3, 3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(308, 258);
this.panel1.TabIndex = 50;
//
// cbUsingreplacedysis
//
this.cbUsingreplacedysis.AutoSize = true;
this.cbUsingreplacedysis.Location = new System.Drawing.Point(146, 92);
this.cbUsingreplacedysis.Name = "cbUsingreplacedysis";
this.cbUsingreplacedysis.Size = new System.Drawing.Size(80, 32);
this.cbUsingreplacedysis.TabIndex = 58;
this.cbUsingreplacedysis.Text = "开启";
this.cbUsingreplacedysis.UseVisualStyleBackColor = true;
this.cbUsingreplacedysis.CheckedChanged += new System.EventHandler(this.cbUsingreplacedysis_CheckedChanged);
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(4, 93);
this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(138, 28);
this.label14.TabIndex = 57;
this.label14.Text = "使用和弦解析";
//
// cbPcap
//
this.cbPcap.AutoSize = true;
this.cbPcap.Location = new System.Drawing.Point(146, 171);
this.cbPcap.Name = "cbPcap";
this.cbPcap.Size = new System.Drawing.Size(80, 32);
this.cbPcap.TabIndex = 56;
this.cbPcap.Text = "开启";
this.cbPcap.UseVisualStyleBackColor = true;
this.cbPcap.CheckedChanged += new System.EventHandler(this.cbPcap_CheckedChanged);
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(4, 172);
this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(139, 28);
this.label13.TabIndex = 55;
this.label13.Text = "使用winpcap";
this.label13.Click += new System.EventHandler(this.label13_Click);
//
// panel4
//
this.panel4.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_about;
this.panel4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel4.Location = new System.Drawing.Point(247, 195);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(63, 62);
this.panel4.TabIndex = 54;
this.panel4.Click += new System.EventHandler(this.panel4_Click);
this.panel4.Paint += new System.Windows.Forms.PaintEventHandler(this.panel4_Paint);
this.panel4.MouseClick += new System.Windows.Forms.MouseEventHandler(this.panel4_MouseClick);
//
// panel3
//
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.panel3.Controls.Add(this.label6);
this.panel3.Controls.Add(this.label7);
this.panel3.Controls.Add(this.hotKeyControl5);
this.panel3.Controls.Add(this.hotKeyControl4);
this.panel3.Controls.Add(this.label8);
this.panel3.Controls.Add(this.hotKeyControl3);
this.panel3.Controls.Add(this.hotKeyControl1);
this.panel3.Controls.Add(this.label11);
this.panel3.Controls.Add(this.hotKeyControl2);
this.panel3.Controls.Add(this.label9);
this.panel3.Controls.Add(this.panel2);
this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel3.Location = new System.Drawing.Point(3, 3);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(308, 258);
this.panel3.TabIndex = 51;
//
// hotKeyControl5
//
this.hotKeyControl5.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.hotKeyControl5.ForceModifiers = false;
this.hotKeyControl5.Location = new System.Drawing.Point(131, 151);
this.hotKeyControl5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.hotKeyControl5.Name = "hotKeyControl5";
this.hotKeyControl5.Size = new System.Drawing.Size(150, 31);
this.hotKeyControl5.TabIndex = 48;
this.hotKeyControl5.ToolTip = null;
this.hotKeyControl5.HotKeyIsSet += new BondTech.HotkeyManagement.Win.HotKeyIsSetEventHandler(this.HotKeyControl1_HotKeyIsSet);
this.hotKeyControl5.HotKeyIsReset += new System.EventHandler(this.HotKeyControl1_HotKeyIsReset);
//
// hotKeyControl4
//
this.hotKeyControl4.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.hotKeyControl4.ForceModifiers = false;
this.hotKeyControl4.Location = new System.Drawing.Point(131, 117);
this.hotKeyControl4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.hotKeyControl4.Name = "hotKeyControl4";
this.hotKeyControl4.Size = new System.Drawing.Size(150, 31);
this.hotKeyControl4.TabIndex = 48;
this.hotKeyControl4.ToolTip = null;
this.hotKeyControl4.HotKeyIsSet += new BondTech.HotkeyManagement.Win.HotKeyIsSetEventHandler(this.HotKeyControl1_HotKeyIsSet);
this.hotKeyControl4.HotKeyIsReset += new System.EventHandler(this.HotKeyControl1_HotKeyIsReset);
//
// hotKeyControl3
//
this.hotKeyControl3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.hotKeyControl3.ForceModifiers = false;
this.hotKeyControl3.Location = new System.Drawing.Point(131, 84);
this.hotKeyControl3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.hotKeyControl3.Name = "hotKeyControl3";
this.hotKeyControl3.Size = new System.Drawing.Size(150, 31);
this.hotKeyControl3.TabIndex = 47;
this.hotKeyControl3.ToolTip = null;
this.hotKeyControl3.HotKeyIsSet += new BondTech.HotkeyManagement.Win.HotKeyIsSetEventHandler(this.HotKeyControl1_HotKeyIsSet);
this.hotKeyControl3.HotKeyIsReset += new System.EventHandler(this.HotKeyControl1_HotKeyIsReset);
//
// hotKeyControl1
//
this.hotKeyControl1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.hotKeyControl1.ForceModifiers = false;
this.hotKeyControl1.Location = new System.Drawing.Point(131, 18);
this.hotKeyControl1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.hotKeyControl1.Name = "hotKeyControl1";
this.hotKeyControl1.Size = new System.Drawing.Size(150, 31);
this.hotKeyControl1.TabIndex = 41;
this.hotKeyControl1.ToolTip = null;
this.hotKeyControl1.HotKeyIsSet += new BondTech.HotkeyManagement.Win.HotKeyIsSetEventHandler(this.HotKeyControl1_HotKeyIsSet);
this.hotKeyControl1.HotKeyIsReset += new System.EventHandler(this.HotKeyControl1_HotKeyIsReset);
//
// label11
//
this.label11.AutoSize = true;
this.label11.BackColor = System.Drawing.Color.Transparent;
this.label11.ForeColor = System.Drawing.Color.Gray;
this.label11.Location = new System.Drawing.Point(15, 150);
this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(96, 28);
this.label11.TabIndex = 45;
this.label11.Text = "暂停演奏";
//
// hotKeyControl2
//
this.hotKeyControl2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.hotKeyControl2.ForceModifiers = false;
this.hotKeyControl2.Location = new System.Drawing.Point(131, 51);
this.hotKeyControl2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.hotKeyControl2.Name = "hotKeyControl2";
this.hotKeyControl2.Size = new System.Drawing.Size(150, 31);
this.hotKeyControl2.TabIndex = 46;
this.hotKeyControl2.ToolTip = null;
this.hotKeyControl2.HotKeyIsSet += new BondTech.HotkeyManagement.Win.HotKeyIsSetEventHandler(this.HotKeyControl1_HotKeyIsSet);
this.hotKeyControl2.HotKeyIsReset += new System.EventHandler(this.HotKeyControl1_HotKeyIsReset);
//
// panel2
//
this.panel2.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_about;
this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel2.Location = new System.Drawing.Point(247, 195);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(63, 62);
this.panel2.TabIndex = 53;
this.panel2.Click += new System.EventHandler(this.Panel2_Click);
this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tpKey);
this.tabControl1.Controls.Add(this.tpPlaySetting);
this.tabControl1.Controls.Add(this.tbLyric);
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(322, 305);
this.tabControl1.TabIndex = 53;
//
// tpKey
//
this.tpKey.Controls.Add(this.panel3);
this.tpKey.Location = new System.Drawing.Point(4, 37);
this.tpKey.Name = "tpKey";
this.tpKey.Padding = new System.Windows.Forms.Padding(3);
this.tpKey.Size = new System.Drawing.Size(314, 264);
this.tpKey.TabIndex = 0;
this.tpKey.Text = "快捷键绑定";
this.tpKey.UseVisualStyleBackColor = true;
//
// tpPlaySetting
//
this.tpPlaySetting.Controls.Add(this.panel1);
this.tpPlaySetting.Location = new System.Drawing.Point(4, 37);
this.tpPlaySetting.Name = "tpPlaySetting";
this.tpPlaySetting.Padding = new System.Windows.Forms.Padding(3);
this.tpPlaySetting.Size = new System.Drawing.Size(314, 264);
this.tpPlaySetting.TabIndex = 1;
this.tpPlaySetting.Text = "播放参数";
this.tpPlaySetting.UseVisualStyleBackColor = true;
//
// tbLyric
//
this.tbLyric.Controls.Add(this.panel5);
this.tbLyric.Controls.Add(this.label10);
this.tbLyric.Controls.Add(this.cbSuffix);
this.tbLyric.Controls.Add(this.label4);
this.tbLyric.Controls.Add(this.label12);
this.tbLyric.Controls.Add(this.cbLrcEnable);
this.tbLyric.Controls.Add(this.nudPort);
this.tbLyric.Location = new System.Drawing.Point(4, 37);
this.tbLyric.Name = "tbLyric";
this.tbLyric.Padding = new System.Windows.Forms.Padding(3);
this.tbLyric.Size = new System.Drawing.Size(314, 264);
this.tbLyric.TabIndex = 2;
this.tbLyric.Text = "歌词设置";
this.tbLyric.UseVisualStyleBackColor = true;
//
// panel5
//
this.panel5.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_about;
this.panel5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel5.Location = new System.Drawing.Point(238, 181);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(63, 62);
this.panel5.TabIndex = 55;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(9, 98);
this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(96, 28);
this.label10.TabIndex = 49;
this.label10.Text = "消息类别";
//
// cbSuffix
//
this.cbSuffix.ForeColor = System.Drawing.Color.Gray;
this.cbSuffix.FormattingEnabled = true;
this.cbSuffix.Items.AddRange(new object[] {
"/说话频道",
"/小队频道",
"/感情表现 "});
this.cbSuffix.Location = new System.Drawing.Point(144, 95);
this.cbSuffix.Name = "cbSuffix";
this.cbSuffix.Size = new System.Drawing.Size(121, 36);
this.cbSuffix.TabIndex = 48;
this.cbSuffix.SelectedIndexChanged += new System.EventHandler(this.cbSuffix_SelectedIndexChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(9, 58);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(138, 28);
this.label4.TabIndex = 41;
this.label4.Text = "鲶鱼精端口号";
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(9, 21);
this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(96, 28);
this.label12.TabIndex = 43;
this.label12.Text = "歌词功能";
//
// cbLrcEnable
//
this.cbLrcEnable.AutoSize = true;
this.cbLrcEnable.Location = new System.Drawing.Point(145, 21);
this.cbLrcEnable.Name = "cbLrcEnable";
this.cbLrcEnable.Size = new System.Drawing.Size(80, 32);
this.cbLrcEnable.TabIndex = 47;
this.cbLrcEnable.Text = "开启";
this.cbLrcEnable.UseVisualStyleBackColor = true;
this.cbLrcEnable.CheckedChanged += new System.EventHandler(this.cbLrcEnable_CheckedChanged);
//
// nudPort
//
this.nudPort.ForeColor = System.Drawing.Color.Gray;
this.nudPort.Location = new System.Drawing.Point(144, 56);
this.nudPort.Maximum = new decimal(new int[] {
65535,
0,
0,
0});
this.nudPort.Name = "nudPort";
this.nudPort.Size = new System.Drawing.Size(120, 35);
this.nudPort.TabIndex = 45;
this.nudPort.Value = new decimal(new int[] {
2345,
0,
0,
0});
this.nudPort.ValueChanged += new System.EventHandler(this.nudPort_ValueChanged);
//
// ConfigForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(13F, 28F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ClientSize = new System.Drawing.Size(322, 305);
this.Controls.Add(this.tabControl1);
this.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.ForeColor = System.Drawing.Color.Gray;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "ConfigForm";
this.Text = "莫古莫古嘭嘭";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConfigForm_FormClosing);
((System.ComponentModel.ISupportInitialize)(this.chordEventNum)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.minEventNum)).EndInit();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel3.ResumeLayout(false);
this.panel3.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tpKey.ResumeLayout(false);
this.tpPlaySetting.ResumeLayout(false);
this.tbLyric.ResumeLayout(false);
this.tbLyric.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudPort)).EndInit();
this.ResumeLayout(false);
}
19
View Source File : frmMain.Designer.cs
License : GNU General Public License v3.0
Project Creator : amakvana
License : GNU General Public License v3.0
Project Creator : amakvana
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.lblYuzuLocation = new System.Windows.Forms.Label();
this.txtYuzuLocation = new System.Windows.Forms.TextBox();
this.btnBrowse = new System.Windows.Forms.Button();
this.pbarProgress = new System.Windows.Forms.ProgressBar();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.yuzuWebsiteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.btnCheck = new System.Windows.Forms.Button();
this.btnProcess = new System.Windows.Forms.Button();
this.cboOptions = new System.Windows.Forms.ComboBox();
this.lblProgress = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// lblYuzuLocation
//
this.lblYuzuLocation.AutoSize = true;
this.lblYuzuLocation.Location = new System.Drawing.Point(12, 32);
this.lblYuzuLocation.Name = "lblYuzuLocation";
this.lblYuzuLocation.Size = new System.Drawing.Size(78, 13);
this.lblYuzuLocation.TabIndex = 0;
this.lblYuzuLocation.Text = "Yuzu Location:";
this.lblYuzuLocation.Click += new System.EventHandler(this.LblYuzuLocation_Click);
//
// txtYuzuLocation
//
this.txtYuzuLocation.Location = new System.Drawing.Point(96, 29);
this.txtYuzuLocation.Name = "txtYuzuLocation";
this.txtYuzuLocation.ReadOnly = true;
this.txtYuzuLocation.Size = new System.Drawing.Size(264, 20);
this.txtYuzuLocation.TabIndex = 1;
this.txtYuzuLocation.Click += new System.EventHandler(this.TxtYuzuLocation_Click);
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(366, 27);
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(24, 23);
this.btnBrowse.TabIndex = 2;
this.btnBrowse.Text = "...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.BtnBrowse_Click);
//
// pbarProgress
//
this.pbarProgress.Location = new System.Drawing.Point(12, 77);
this.pbarProgress.Name = "pbarProgress";
this.pbarProgress.Size = new System.Drawing.Size(378, 23);
this.pbarProgress.TabIndex = 3;
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.helpToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(402, 24);
this.menuStrip1.TabIndex = 4;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.yuzuWebsiteToolStripMenuItem,
this.toolStripSeparator1,
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "Help";
//
// yuzuWebsiteToolStripMenuItem
//
this.yuzuWebsiteToolStripMenuItem.Name = "yuzuWebsiteToolStripMenuItem";
this.yuzuWebsiteToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.yuzuWebsiteToolStripMenuItem.Text = "Yuzu Website";
this.yuzuWebsiteToolStripMenuItem.Click += new System.EventHandler(this.YuzuWebsiteToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(142, 6);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.aboutToolStripMenuItem.Text = "About";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItem_Click);
//
// btnCheck
//
this.btnCheck.Location = new System.Drawing.Point(234, 107);
this.btnCheck.Name = "btnCheck";
this.btnCheck.Size = new System.Drawing.Size(75, 23);
this.btnCheck.TabIndex = 6;
this.btnCheck.Text = "Check";
this.btnCheck.UseVisualStyleBackColor = true;
this.btnCheck.Click += new System.EventHandler(this.BtnCheck_Click);
//
// btnProcess
//
this.btnProcess.Location = new System.Drawing.Point(315, 107);
this.btnProcess.Name = "btnProcess";
this.btnProcess.Size = new System.Drawing.Size(75, 23);
this.btnProcess.TabIndex = 7;
this.btnProcess.Text = "Update";
this.btnProcess.UseVisualStyleBackColor = true;
this.btnProcess.Click += new System.EventHandler(this.BtnProcess_Click);
//
// cboOptions
//
this.cboOptions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboOptions.FormattingEnabled = true;
this.cboOptions.Items.AddRange(new object[] {
"Dependencies",
"New Install",
"Upgrade",
"Yuzu"});
this.cboOptions.Location = new System.Drawing.Point(12, 108);
this.cboOptions.Name = "cboOptions";
this.cboOptions.Size = new System.Drawing.Size(216, 21);
this.cboOptions.TabIndex = 8;
this.cboOptions.SelectedIndexChanged += new System.EventHandler(this.CboOptions_SelectedIndexChanged);
//
// lblProgress
//
this.lblProgress.AutoSize = true;
this.lblProgress.Location = new System.Drawing.Point(12, 61);
this.lblProgress.Name = "lblProgress";
this.lblProgress.Size = new System.Drawing.Size(35, 13);
this.lblProgress.TabIndex = 9;
this.lblProgress.Text = "label2";
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(402, 142);
this.Controls.Add(this.lblProgress);
this.Controls.Add(this.cboOptions);
this.Controls.Add(this.btnProcess);
this.Controls.Add(this.btnCheck);
this.Controls.Add(this.pbarProgress);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.txtYuzuLocation);
this.Controls.Add(this.lblYuzuLocation);
this.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "frmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "EzYuzu - Yuzu Portable Updater";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
this.Load += new System.EventHandler(this.frmMain_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : EnvironmentSettingsControl.Designer.cs
License : Apache License 2.0
Project Creator : AmpScm
License : Apache License 2.0
Project Creator : AmpScm
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EnvironmentSettingsControl));
this.authenticationEdit = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.proxyEdit = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.clientSideHooks = new System.Windows.Forms.CheckBox();
this.interactiveMergeOnConflict = new System.Windows.Forms.CheckBox();
this.autoAddFiles = new System.Windows.Forms.CheckBox();
this.flashWindowAfterOperation = new System.Windows.Forms.CheckBox();
this.autoLockFiles = new System.Windows.Forms.CheckBox();
this.label3 = new System.Windows.Forms.Label();
this.pcDefaultDoubleClick = new System.Windows.Forms.ComboBox();
this.preferPutty = new System.Windows.Forms.CheckBox();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// authenticationEdit
//
resources.ApplyResources(this.authenticationEdit, "authenticationEdit");
this.authenticationEdit.Name = "authenticationEdit";
this.authenticationEdit.UseVisualStyleBackColor = true;
this.authenticationEdit.Click += new System.EventHandler(this.authenticationEdit_Click);
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// proxyEdit
//
resources.ApplyResources(this.proxyEdit, "proxyEdit");
this.proxyEdit.Name = "proxyEdit";
this.proxyEdit.UseVisualStyleBackColor = true;
this.proxyEdit.Click += new System.EventHandler(this.proxyEdit_Click);
//
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.preferPutty);
this.groupBox1.Controls.Add(this.clientSideHooks);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.proxyEdit);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.authenticationEdit);
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// clientSideHooks
//
resources.ApplyResources(this.clientSideHooks, "clientSideHooks");
this.clientSideHooks.Name = "clientSideHooks";
this.clientSideHooks.UseVisualStyleBackColor = true;
//
// interactiveMergeOnConflict
//
resources.ApplyResources(this.interactiveMergeOnConflict, "interactiveMergeOnConflict");
this.interactiveMergeOnConflict.Name = "interactiveMergeOnConflict";
this.interactiveMergeOnConflict.UseVisualStyleBackColor = true;
//
// autoAddFiles
//
resources.ApplyResources(this.autoAddFiles, "autoAddFiles");
this.autoAddFiles.Name = "autoAddFiles";
this.autoAddFiles.UseVisualStyleBackColor = true;
//
// flashWindowAfterOperation
//
resources.ApplyResources(this.flashWindowAfterOperation, "flashWindowAfterOperation");
this.flashWindowAfterOperation.Name = "flashWindowAfterOperation";
this.flashWindowAfterOperation.UseVisualStyleBackColor = true;
//
// autoLockFiles
//
resources.ApplyResources(this.autoLockFiles, "autoLockFiles");
this.autoLockFiles.Name = "autoLockFiles";
this.autoLockFiles.UseVisualStyleBackColor = true;
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// pcDefaultDoubleClick
//
resources.ApplyResources(this.pcDefaultDoubleClick, "pcDefaultDoubleClick");
this.pcDefaultDoubleClick.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.pcDefaultDoubleClick.FormattingEnabled = true;
this.pcDefaultDoubleClick.Items.AddRange(new object[] {
resources.GetString("pcDefaultDoubleClick.Items"),
resources.GetString("pcDefaultDoubleClick.Items1")});
this.pcDefaultDoubleClick.Name = "pcDefaultDoubleClick";
//
// preferPutty
//
resources.ApplyResources(this.preferPutty, "preferPutty");
this.preferPutty.Name = "preferPutty";
this.preferPutty.UseVisualStyleBackColor = true;
//
// EnvironmentSettingsControl
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.autoAddFiles);
this.Controls.Add(this.autoLockFiles);
this.Controls.Add(this.interactiveMergeOnConflict);
this.Controls.Add(this.flashWindowAfterOperation);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.label3);
this.Controls.Add(this.pcDefaultDoubleClick);
this.Name = "EnvironmentSettingsControl";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RecentChangesPage.Designer.cs
License : Apache License 2.0
Project Creator : AmpScm
License : Apache License 2.0
Project Creator : AmpScm
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RecentChangesPage));
this.syncView = new Ankh.UI.PendingChanges.Synchronize.SynchronizeListView();
this.topLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
this.updateTime = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.panel2 = new System.Windows.Forms.Panel();
this.refreshCombo = new System.Windows.Forms.ComboBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.splitContainer1 = new Ankh.UI.VSSelectionControls.SmartSplitContainer(this.components);
this.borderPanel = new System.Windows.Forms.Panel();
this.topLayoutPanel.SuspendLayout();
this.panel2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.borderPanel.SuspendLayout();
this.SuspendLayout();
//
// syncView
//
this.syncView.Context = null;
resources.ApplyResources(this.syncView, "syncView");
this.syncView.Name = "syncView";
//
// topLayoutPanel
//
resources.ApplyResources(this.topLayoutPanel, "topLayoutPanel");
this.topLayoutPanel.Controls.Add(this.updateTime, 2, 0);
this.topLayoutPanel.Controls.Add(this.label1, 0, 0);
this.topLayoutPanel.Controls.Add(this.panel2, 4, 0);
this.topLayoutPanel.Name = "topLayoutPanel";
//
// updateTime
//
this.updateTime.BorderStyle = System.Windows.Forms.BorderStyle.None;
resources.ApplyResources(this.updateTime, "updateTime");
this.updateTime.Name = "updateTime";
this.updateTime.ReadOnly = true;
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// panel2
//
this.panel2.Controls.Add(this.refreshCombo);
this.panel2.Controls.Add(this.checkBox1);
resources.ApplyResources(this.panel2, "panel2");
this.panel2.Name = "panel2";
//
// refreshCombo
//
this.refreshCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
resources.ApplyResources(this.refreshCombo, "refreshCombo");
this.refreshCombo.FormattingEnabled = true;
this.refreshCombo.Items.AddRange(new object[] {
resources.GetString("refreshCombo.Items"),
resources.GetString("refreshCombo.Items1"),
resources.GetString("refreshCombo.Items2"),
resources.GetString("refreshCombo.Items3"),
resources.GetString("refreshCombo.Items4"),
resources.GetString("refreshCombo.Items5"),
resources.GetString("refreshCombo.Items6")});
this.refreshCombo.Name = "refreshCombo";
//
// checkBox1
//
resources.ApplyResources(this.checkBox1, "checkBox1");
this.checkBox1.Name = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
// splitContainer1
//
resources.ApplyResources(this.splitContainer1, "splitContainer1");
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.borderPanel);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.syncView);
//
// borderPanel
//
this.borderPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.borderPanel.Controls.Add(this.topLayoutPanel);
resources.ApplyResources(this.borderPanel, "borderPanel");
this.borderPanel.Name = "borderPanel";
//
// RecentChangesPage
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.splitContainer1);
this.Name = "RecentChangesPage";
this.topLayoutPanel.ResumeLayout(false);
this.topLayoutPanel.PerformLayout();
this.panel2.ResumeLayout(false);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.borderPanel.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : RepositoryOpenDialog.Designer.cs
License : Apache License 2.0
Project Creator : AmpScm
License : Apache License 2.0
Project Creator : AmpScm
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RepositoryOpenDialog));
this.openButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.urlLabel = new System.Windows.Forms.ToolStripLabel();
this.urlBox = new System.Windows.Forms.ToolStripComboBox();
this.addButton = new System.Windows.Forms.ToolStripButton();
this.refreshButton = new System.Windows.Forms.ToolStripButton();
this.dirUpButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.versionButton = new System.Windows.Forms.ToolStripButton();
this.panel1 = new System.Windows.Forms.Panel();
this.label2 = new System.Windows.Forms.Label();
this.fileNameBox = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.fileTypeBox = new System.Windows.Forms.ComboBox();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.dirView = new Ankh.UI.VSSelectionControls.SmartListView();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// openButton
//
resources.ApplyResources(this.openButton, "openButton");
this.openButton.Name = "openButton";
this.openButton.UseVisualStyleBackColor = true;
this.openButton.Click += new System.EventHandler(this.OnOkClicked);
//
// cancelButton
//
resources.ApplyResources(this.cancelButton, "cancelButton");
this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelButton.Name = "cancelButton";
this.cancelButton.UseVisualStyleBackColor = true;
//
// toolStrip1
//
resources.ApplyResources(this.toolStrip1, "toolStrip1");
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.urlLabel,
this.urlBox,
this.addButton,
this.refreshButton,
this.dirUpButton,
this.toolStripSeparator,
this.versionButton});
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
//
// urlLabel
//
resources.ApplyResources(this.urlLabel, "urlLabel");
this.urlLabel.Name = "urlLabel";
//
// urlBox
//
this.urlBox.AutoToolTip = true;
this.urlBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.urlBox.Name = "urlBox";
this.urlBox.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
resources.ApplyResources(this.urlBox, "urlBox");
this.urlBox.SelectedIndexChanged += new System.EventHandler(this.urlBox_SelectedIndexChanged);
//
// addButton
//
this.addButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
resources.ApplyResources(this.addButton, "addButton");
this.addButton.Name = "addButton";
this.addButton.Click += new System.EventHandler(this.addButton_Click);
//
// refreshButton
//
this.refreshButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
resources.ApplyResources(this.refreshButton, "refreshButton");
this.refreshButton.Name = "refreshButton";
this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
//
// dirUpButton
//
this.dirUpButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
resources.ApplyResources(this.dirUpButton, "dirUpButton");
this.dirUpButton.Name = "dirUpButton";
this.dirUpButton.Click += new System.EventHandler(this.dirUpButton_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
resources.ApplyResources(this.toolStripSeparator, "toolStripSeparator");
//
// versionButton
//
resources.ApplyResources(this.versionButton, "versionButton");
this.versionButton.Name = "versionButton";
//
// panel1
//
resources.ApplyResources(this.panel1, "panel1");
this.panel1.BackColor = System.Drawing.SystemColors.AppWorkspace;
this.panel1.Name = "panel1";
//
// label2
//
resources.ApplyResources(this.label2, "label2");
this.label2.Name = "label2";
//
// fileNameBox
//
resources.ApplyResources(this.fileNameBox, "fileNameBox");
this.fileNameBox.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
this.fileNameBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.AllUrl;
this.fileNameBox.Name = "fileNameBox";
this.toolTip.SetToolTip(this.fileNameBox, resources.GetString("fileNameBox.ToolTip"));
this.fileNameBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.fileNameBox_KeyDown);
this.fileNameBox.Enter += new System.EventHandler(this.fileNameBox_Enter);
//
// label3
//
resources.ApplyResources(this.label3, "label3");
this.label3.Name = "label3";
//
// fileTypeBox
//
resources.ApplyResources(this.fileTypeBox, "fileTypeBox");
this.fileTypeBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.fileTypeBox.FormattingEnabled = true;
this.fileTypeBox.Items.AddRange(new object[] {
resources.GetString("fileTypeBox.Items")});
this.fileTypeBox.Name = "fileTypeBox";
this.fileTypeBox.SelectedIndexChanged += new System.EventHandler(this.fileTypeBox_SelectedIndexChanged);
//
// toolTip
//
this.toolTip.IsBalloon = true;
this.toolTip.StripAmpersands = true;
this.toolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTip.ToolTipreplacedle = "Open from Subversion";
//
// dirView
//
resources.ApplyResources(this.dirView, "dirView");
this.dirView.MultiSelect = false;
this.dirView.Name = "dirView";
this.dirView.View = System.Windows.Forms.View.List;
this.dirView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.dirView_MouseDoubleClick);
this.dirView.SelectedIndexChanged += new System.EventHandler(this.dirView_SelectedIndexChanged);
this.dirView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dirView_KeyDown);
//
// RepositoryOpenDialog
//
this.AcceptButton = this.openButton;
resources.ApplyResources(this, "$this");
this.CancelButton = this.cancelButton;
this.Controls.Add(this.fileTypeBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.fileNameBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.dirView);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.openButton);
this.Name = "RepositoryOpenDialog";
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ScriptEditorControl.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.functionbar = new System.Windows.Forms.ComboBox();
this.scriptedit = new CodeImp.DoomBuilder.Controls.ScintillaControl();
this.scriptpanel = new System.Windows.Forms.Panel();
this.scriptpanel.SuspendLayout();
this.SuspendLayout();
//
// functionbar
//
this.functionbar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.functionbar.FormattingEnabled = true;
this.functionbar.Items.AddRange(new object[] {
"Function1",
"Function2",
"Function3"});
this.functionbar.Location = new System.Drawing.Point(0, 0);
this.functionbar.Name = "functionbar";
this.functionbar.Size = new System.Drawing.Size(474, 21);
this.functionbar.TabIndex = 1;
this.functionbar.TabStop = false;
//
// scriptedit
//
this.scriptedit.AnchorPosition = 0;
this.scriptedit.AutoCMaximumHeight = 0;
this.scriptedit.AutoCMaximumWidth = 0;
this.scriptedit.AutoCSeparator = 0;
this.scriptedit.AutoCTypeSeparator = 0;
this.scriptedit.BackColor = System.Drawing.SystemColors.Window;
this.scriptedit.CaretFore = 0;
this.scriptedit.CaretLineBack = 0;
this.scriptedit.CaretPeriod = 0;
this.scriptedit.CaretWidth = 0;
this.scriptedit.CodePage = 0;
this.scriptedit.ControlCharSymbol = 0;
this.scriptedit.CurrentPos = 0;
this.scriptedit.CursorType = 0;
this.scriptedit.Dock = System.Windows.Forms.DockStyle.Fill;
this.scriptedit.DocPointer = 0;
this.scriptedit.EdgeColour = 0;
this.scriptedit.EdgeColumn = 0;
this.scriptedit.EdgeMode = 0;
this.scriptedit.EndAtLastLine = 0;
this.scriptedit.EndOfLineMode = CodeImp.DoomBuilder.Controls.ScriptEndOfLine.CRLF;
this.scriptedit.EOLMode = 0;
this.scriptedit.ExtraAscent = 0;
this.scriptedit.ExtraDescent = 0;
this.scriptedit.HighlightGuide = 0;
this.scriptedit.Indent = 0;
this.scriptedit.IndentationGuides = 0;
this.scriptedit.IsAutoCGetAutoHide = false;
this.scriptedit.IsAutoCGetCancelAtStart = false;
this.scriptedit.IsAutoCGetChooseSingle = false;
this.scriptedit.IsAutoCGetDropRestOfWord = false;
this.scriptedit.IsAutoCGetIgnoreCase = false;
this.scriptedit.IsBackSpaceUnIndents = false;
this.scriptedit.IsBufferedDraw = false;
this.scriptedit.IsCaretLineVisible = false;
this.scriptedit.IsFocus = false;
this.scriptedit.IsHScrollBar = false;
this.scriptedit.IsMouseDownCaptures = false;
this.scriptedit.IsOvertype = false;
this.scriptedit.IsReadOnly = false;
this.scriptedit.IsTabIndents = false;
this.scriptedit.IsTwoPhaseDraw = false;
this.scriptedit.IsUndoCollection = false;
this.scriptedit.IsUsePalette = false;
this.scriptedit.IsUseTabs = false;
this.scriptedit.IsViewEOL = false;
this.scriptedit.IsVScrollBar = false;
this.scriptedit.LayoutCache = 0;
this.scriptedit.Lexer = 0;
this.scriptedit.Location = new System.Drawing.Point(0, 0);
this.scriptedit.MarginLeft = 0;
this.scriptedit.MarginRight = 0;
this.scriptedit.ModEventMask = 0;
this.scriptedit.MouseDwellTime = 0;
this.scriptedit.Name = "scriptedit";
this.scriptedit.PrintColourMode = 0;
this.scriptedit.PrintMagnification = 0;
this.scriptedit.PrintWrapMode = 0;
this.scriptedit.ScrollWidth = 0;
this.scriptedit.SearchFlags = 0;
this.scriptedit.SelectionEnd = 0;
this.scriptedit.SelectionMode = 0;
this.scriptedit.SelectionStart = 0;
this.scriptedit.Size = new System.Drawing.Size(470, 377);
this.scriptedit.Status = 0;
this.scriptedit.StyleBits = 0;
this.scriptedit.TabIndex = 0;
this.scriptedit.TabStop = false;
this.scriptedit.TabWidth = 0;
this.scriptedit.TargetEnd = 0;
this.scriptedit.TargetStart = 0;
this.scriptedit.ViewWhitespace = CodeImp.DoomBuilder.Controls.ScriptWhiteSpace.Invisible;
this.scriptedit.ViewWS = 0;
this.scriptedit.WrapMode = 0;
this.scriptedit.WrapStartIndent = 0;
this.scriptedit.WrapVisualFlags = 0;
this.scriptedit.WrapVisualFlagsLocation = 0;
this.scriptedit.XOffset = 0;
this.scriptedit.ZoomLevel = 0;
this.scriptedit.KeyUp += new System.Windows.Forms.KeyEventHandler(this.scriptedit_KeyUp);
this.scriptedit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.scriptedit_KeyDown);
//
// scriptpanel
//
this.scriptpanel.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.scriptpanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.scriptpanel.Controls.Add(this.scriptedit);
this.scriptpanel.Location = new System.Drawing.Point(0, 27);
this.scriptpanel.Name = "scriptpanel";
this.scriptpanel.Size = new System.Drawing.Size(474, 381);
this.scriptpanel.TabIndex = 2;
//
// ScriptEditorControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.scriptpanel);
this.Controls.Add(this.functionbar);
this.Name = "ScriptEditorControl";
this.Size = new System.Drawing.Size(474, 408);
this.scriptpanel.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : ActionBrowserForm.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void category_SelectedIndexChanged(object sender, EventArgs e)
{
GeneralizedCategory ac;
// Category selected?
if(category.SelectedIndex > -1)
{
// Get the category
ac = category.SelectedItem as GeneralizedCategory;
// Go for all options
for(int i = 0; i < MAX_OPTIONS; i++)
{
// Option used in selected category?
if(i < ac.Options.Count)
{
// Setup controls
optionlbls[i].Text = ac.Options[i].Name + ":";
options[i].Items.Clear();
options[i].Items.AddRange(ac.Options[i].Bits.ToArray());
// Show option
options[i].Visible = true;
optionlbls[i].Visible = true;
}
else
{
// Hide option
options[i].Visible = false;
optionlbls[i].Visible = false;
}
}
}
else
{
// Hide all options
for(int i = 0; i < MAX_OPTIONS; i++)
{
options[i].Visible = false;
optionlbls[i].Visible = false;
}
}
}
19
View Source File : StairSectorBuilderForm.designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.numberofsectors = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label4 = new System.Windows.Forms.Label();
this.tabcontrol = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.distinctbaseheights = new System.Windows.Forms.CheckBox();
this.spacing = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label11 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.singledirection = new System.Windows.Forms.CheckBox();
this.singlesectors = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.sideback = new System.Windows.Forms.RadioButton();
this.sidefront = new System.Windows.Forms.RadioButton();
this.sectordepth = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label1 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.autocurveflipping = new System.Windows.Forms.ComboBox();
this.label12 = new System.Windows.Forms.Label();
this.autocurveoutervertexmultiplier = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.autocurveinnervertexmultiplier = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.splineflipping = new System.Windows.Forms.ComboBox();
this.label13 = new System.Windows.Forms.Label();
this.splineoutervertexmultiplier = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.splineinnervertexmultiplier = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label16 = new System.Windows.Forms.Label();
this.label17 = new System.Windows.Forms.Label();
this.numberofcontrolpoints = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label10 = new System.Windows.Forms.Label();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.floorflattexture = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.floorflat = new System.Windows.Forms.CheckBox();
this.ceilingflat = new System.Windows.Forms.CheckBox();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.ceilingflattexture = new CodeImp.DoomBuilder.Controls.FlatSelectorControl();
this.groupBox6 = new System.Windows.Forms.GroupBox();
this.label14 = new System.Windows.Forms.Label();
this.floorbase = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.floorheightmodification = new System.Windows.Forms.CheckBox();
this.floorlast = new System.Windows.Forms.Label();
this.floorfirst = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.floorheightmod = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label = new System.Windows.Forms.Label();
this.groupBox7 = new System.Windows.Forms.GroupBox();
this.lowerunpegged = new System.Windows.Forms.CheckBox();
this.lowertexturetexture = new CodeImp.DoomBuilder.Controls.TextureSelectorControl();
this.lowertexture = new System.Windows.Forms.CheckBox();
this.groupBox8 = new System.Windows.Forms.GroupBox();
this.upperunpegged = new System.Windows.Forms.CheckBox();
this.uppertexturetexture = new CodeImp.DoomBuilder.Controls.TextureSelectorControl();
this.uppertexture = new System.Windows.Forms.CheckBox();
this.ceilinglast = new System.Windows.Forms.Label();
this.ceilingfirst = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.ceilingheightmod = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label2 = new System.Windows.Forms.Label();
this.groupBox9 = new System.Windows.Forms.GroupBox();
this.label15 = new System.Windows.Forms.Label();
this.ceilingbase = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.ceilingheightmodification = new System.Windows.Forms.CheckBox();
this.groupBox11 = new System.Windows.Forms.GroupBox();
this.prefabload = new System.Windows.Forms.Button();
this.prefabdelete = new System.Windows.Forms.Button();
this.prefabsave = new System.Windows.Forms.Button();
this.prefabname = new System.Windows.Forms.TextBox();
this.prefabs = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.groupBox10 = new System.Windows.Forms.GroupBox();
this.middletexturetexture = new CodeImp.DoomBuilder.Controls.TextureSelectorControl();
this.middletexture = new System.Windows.Forms.CheckBox();
this.groupBox1.SuspendLayout();
this.tabcontrol.SuspendLayout();
this.tabPage1.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox5.SuspendLayout();
this.groupBox6.SuspendLayout();
this.groupBox7.SuspendLayout();
this.groupBox8.SuspendLayout();
this.groupBox9.SuspendLayout();
this.groupBox11.SuspendLayout();
this.groupBox10.SuspendLayout();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(333, 532);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(112, 27);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(448, 532);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(112, 27);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.numberofsectors);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Location = new System.Drawing.Point(12, 9);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(220, 50);
this.groupBox1.TabIndex = 9;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "General";
//
// numberofsectors
//
this.numberofsectors.AllowDecimal = false;
this.numberofsectors.AllowNegative = false;
this.numberofsectors.AllowRelative = false;
this.numberofsectors.ButtonStep = 1;
this.numberofsectors.Location = new System.Drawing.Point(112, 17);
this.numberofsectors.Name = "numberofsectors";
this.numberofsectors.Size = new System.Drawing.Size(56, 24);
this.numberofsectors.StepValues = null;
this.numberofsectors.TabIndex = 1;
this.numberofsectors.WhenTextChanged += new System.EventHandler(this.numberofsectors_WhenTextChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(9, 22);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(97, 14);
this.label4.TabIndex = 0;
this.label4.Text = "Number of sectors";
//
// tabcontrol
//
this.tabcontrol.Controls.Add(this.tabPage1);
this.tabcontrol.Controls.Add(this.tabPage2);
this.tabcontrol.Controls.Add(this.tabPage3);
this.tabcontrol.Location = new System.Drawing.Point(12, 65);
this.tabcontrol.Name = "tabcontrol";
this.tabcontrol.SelectedIndex = 0;
this.tabcontrol.Size = new System.Drawing.Size(220, 271);
this.tabcontrol.TabIndex = 10;
this.tabcontrol.SelectedIndexChanged += new System.EventHandler(this.tabcontrol_SelectedIndexChanged);
//
// tabPage1
//
this.tabPage1.Controls.Add(this.distinctbaseheights);
this.tabPage1.Controls.Add(this.spacing);
this.tabPage1.Controls.Add(this.label11);
this.tabPage1.Controls.Add(this.groupBox3);
this.tabPage1.Controls.Add(this.groupBox2);
this.tabPage1.Controls.Add(this.sectordepth);
this.tabPage1.Controls.Add(this.label1);
this.tabPage1.Location = new System.Drawing.Point(4, 23);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(212, 244);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Straight";
this.tabPage1.UseVisualStyleBackColor = true;
//
// distinctbaseheights
//
this.distinctbaseheights.AutoSize = true;
this.distinctbaseheights.Location = new System.Drawing.Point(10, 70);
this.distinctbaseheights.Name = "distinctbaseheights";
this.distinctbaseheights.Size = new System.Drawing.Size(126, 18);
this.distinctbaseheights.TabIndex = 6;
this.distinctbaseheights.Text = "Distinct base heights";
this.distinctbaseheights.UseVisualStyleBackColor = true;
this.distinctbaseheights.CheckedChanged += new System.EventHandler(this.distinctbaseheights_CheckedChanged);
//
// spacing
//
this.spacing.AllowDecimal = false;
this.spacing.AllowNegative = false;
this.spacing.AllowRelative = false;
this.spacing.ButtonStep = 8;
this.spacing.Location = new System.Drawing.Point(81, 33);
this.spacing.Name = "spacing";
this.spacing.Size = new System.Drawing.Size(56, 24);
this.spacing.StepValues = null;
this.spacing.TabIndex = 5;
this.spacing.WhenTextChanged += new System.EventHandler(this.spacing_WhenTextChanged);
//
// label11
//
this.label11.AutoSize = true;
this.label11.Location = new System.Drawing.Point(7, 37);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(46, 14);
this.label11.TabIndex = 4;
this.label11.Text = "Spacing";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.singledirection);
this.groupBox3.Controls.Add(this.singlesectors);
this.groupBox3.Location = new System.Drawing.Point(82, 94);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(124, 79);
this.groupBox3.TabIndex = 3;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Appearance";
//
// singledirection
//
this.singledirection.AutoSize = true;
this.singledirection.Enabled = false;
this.singledirection.Location = new System.Drawing.Point(7, 46);
this.singledirection.Name = "singledirection";
this.singledirection.Size = new System.Drawing.Size(99, 18);
this.singledirection.TabIndex = 1;
this.singledirection.Text = "Single direction";
this.singledirection.UseVisualStyleBackColor = true;
this.singledirection.CheckedChanged += new System.EventHandler(this.singledirection_CheckedChanged);
//
// singlesectors
//
this.singlesectors.AutoSize = true;
this.singlesectors.Enabled = false;
this.singlesectors.Location = new System.Drawing.Point(7, 22);
this.singlesectors.Name = "singlesectors";
this.singlesectors.Size = new System.Drawing.Size(95, 18);
this.singlesectors.TabIndex = 0;
this.singlesectors.Text = "Single sectors";
this.singlesectors.UseVisualStyleBackColor = true;
this.singlesectors.CheckedChanged += new System.EventHandler(this.singlesectors_CheckedChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.sideback);
this.groupBox2.Controls.Add(this.sidefront);
this.groupBox2.Location = new System.Drawing.Point(11, 94);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(65, 79);
this.groupBox2.TabIndex = 2;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Side";
//
// sideback
//
this.sideback.AutoSize = true;
this.sideback.Location = new System.Drawing.Point(7, 46);
this.sideback.Name = "sideback";
this.sideback.Size = new System.Drawing.Size(49, 18);
this.sideback.TabIndex = 1;
this.sideback.TabStop = true;
this.sideback.Text = "Back";
this.sideback.UseVisualStyleBackColor = true;
this.sideback.CheckedChanged += new System.EventHandler(this.sideback_CheckedChanged);
//
// sidefront
//
this.sidefront.AutoSize = true;
this.sidefront.Checked = true;
this.sidefront.Location = new System.Drawing.Point(7, 22);
this.sidefront.Name = "sidefront";
this.sidefront.Size = new System.Drawing.Size(50, 18);
this.sidefront.TabIndex = 0;
this.sidefront.TabStop = true;
this.sidefront.Text = "Front";
this.sidefront.UseVisualStyleBackColor = true;
this.sidefront.CheckedChanged += new System.EventHandler(this.sidefront_CheckedChanged);
//
// sectordepth
//
this.sectordepth.AllowDecimal = false;
this.sectordepth.AllowNegative = false;
this.sectordepth.AllowRelative = false;
this.sectordepth.ButtonStep = 8;
this.sectordepth.Location = new System.Drawing.Point(81, 3);
this.sectordepth.Name = "sectordepth";
this.sectordepth.Size = new System.Drawing.Size(56, 24);
this.sectordepth.StepValues = null;
this.sectordepth.TabIndex = 1;
this.sectordepth.WhenTextChanged += new System.EventHandler(this.sectordepth_WhenTextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(7, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(69, 14);
this.label1.TabIndex = 0;
this.label1.Text = "Sector depth";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.autocurveflipping);
this.tabPage2.Controls.Add(this.label12);
this.tabPage2.Controls.Add(this.autocurveoutervertexmultiplier);
this.tabPage2.Controls.Add(this.autocurveinnervertexmultiplier);
this.tabPage2.Controls.Add(this.label6);
this.tabPage2.Controls.Add(this.label5);
this.tabPage2.Location = new System.Drawing.Point(4, 23);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(212, 244);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Auto curve";
this.tabPage2.UseVisualStyleBackColor = true;
//
// autocurveflipping
//
this.autocurveflipping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.autocurveflipping.FormattingEnabled = true;
this.autocurveflipping.Items.AddRange(new object[] {
"None",
"Source direction",
"Destination direction"});
this.autocurveflipping.Location = new System.Drawing.Point(55, 9);
this.autocurveflipping.Name = "autocurveflipping";
this.autocurveflipping.Size = new System.Drawing.Size(151, 22);
this.autocurveflipping.TabIndex = 11;
this.autocurveflipping.SelectedIndexChanged += new System.EventHandler(this.autocurveflipping_SelectedIndexChanged);
//
// label12
//
this.label12.AutoSize = true;
this.label12.Location = new System.Drawing.Point(6, 12);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(43, 14);
this.label12.TabIndex = 10;
this.label12.Text = "Flipping";
//
// autocurveoutervertexmultiplier
//
this.autocurveoutervertexmultiplier.AllowDecimal = false;
this.autocurveoutervertexmultiplier.AllowNegative = false;
this.autocurveoutervertexmultiplier.AllowRelative = false;
this.autocurveoutervertexmultiplier.ButtonStep = 1;
this.autocurveoutervertexmultiplier.Location = new System.Drawing.Point(128, 72);
this.autocurveoutervertexmultiplier.Name = "autocurveoutervertexmultiplier";
this.autocurveoutervertexmultiplier.Size = new System.Drawing.Size(56, 24);
this.autocurveoutervertexmultiplier.StepValues = null;
this.autocurveoutervertexmultiplier.TabIndex = 9;
this.autocurveoutervertexmultiplier.WhenTextChanged += new System.EventHandler(this.autocurveoutervertexmultiplier_WhenTextChanged);
//
// autocurveinnervertexmultiplier
//
this.autocurveinnervertexmultiplier.AllowDecimal = false;
this.autocurveinnervertexmultiplier.AllowNegative = false;
this.autocurveinnervertexmultiplier.AllowRelative = false;
this.autocurveinnervertexmultiplier.ButtonStep = 1;
this.autocurveinnervertexmultiplier.Location = new System.Drawing.Point(128, 45);
this.autocurveinnervertexmultiplier.Name = "autocurveinnervertexmultiplier";
this.autocurveinnervertexmultiplier.Size = new System.Drawing.Size(56, 24);
this.autocurveinnervertexmultiplier.StepValues = null;
this.autocurveinnervertexmultiplier.TabIndex = 8;
this.autocurveinnervertexmultiplier.WhenTextChanged += new System.EventHandler(this.autocurveinnervertexmultiplier_WhenTextChanged);
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(6, 77);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(112, 14);
this.label6.TabIndex = 7;
this.label6.Text = "Outer vertex multiplier";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 50);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(109, 14);
this.label5.TabIndex = 6;
this.label5.Text = "Inner vertex multiplier";
//
// tabPage3
//
this.tabPage3.Controls.Add(this.splineflipping);
this.tabPage3.Controls.Add(this.label13);
this.tabPage3.Controls.Add(this.splineoutervertexmultiplier);
this.tabPage3.Controls.Add(this.splineinnervertexmultiplier);
this.tabPage3.Controls.Add(this.label16);
this.tabPage3.Controls.Add(this.label17);
this.tabPage3.Controls.Add(this.numberofcontrolpoints);
this.tabPage3.Controls.Add(this.label10);
this.tabPage3.Location = new System.Drawing.Point(4, 23);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
this.tabPage3.Size = new System.Drawing.Size(212, 244);
this.tabPage3.TabIndex = 2;
this.tabPage3.Text = "Catmull Rom";
this.tabPage3.UseVisualStyleBackColor = true;
//
// splineflipping
//
this.splineflipping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.splineflipping.FormattingEnabled = true;
this.splineflipping.Items.AddRange(new object[] {
"None",
"Source direction",
"Destination direction"});
this.splineflipping.Location = new System.Drawing.Point(55, 9);
this.splineflipping.Name = "splineflipping";
this.splineflipping.Size = new System.Drawing.Size(151, 22);
this.splineflipping.TabIndex = 13;
this.splineflipping.SelectedIndexChanged += new System.EventHandler(this.splineflipping_SelectedIndexChanged);
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(6, 12);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(43, 14);
this.label13.TabIndex = 12;
this.label13.Text = "Flipping";
//
// splineoutervertexmultiplier
//
this.splineoutervertexmultiplier.AllowDecimal = false;
this.splineoutervertexmultiplier.AllowNegative = false;
this.splineoutervertexmultiplier.AllowRelative = false;
this.splineoutervertexmultiplier.ButtonStep = 1;
this.splineoutervertexmultiplier.Location = new System.Drawing.Point(128, 72);
this.splineoutervertexmultiplier.Name = "splineoutervertexmultiplier";
this.splineoutervertexmultiplier.Size = new System.Drawing.Size(56, 24);
this.splineoutervertexmultiplier.StepValues = null;
this.splineoutervertexmultiplier.TabIndex = 9;
this.splineoutervertexmultiplier.WhenTextChanged += new System.EventHandler(this.splineoutervertexmultiplier_WhenTextChanged);
//
// splineinnervertexmultiplier
//
this.splineinnervertexmultiplier.AllowDecimal = false;
this.splineinnervertexmultiplier.AllowNegative = false;
this.splineinnervertexmultiplier.AllowRelative = false;
this.splineinnervertexmultiplier.ButtonStep = 1;
this.splineinnervertexmultiplier.Location = new System.Drawing.Point(128, 45);
this.splineinnervertexmultiplier.Name = "splineinnervertexmultiplier";
this.splineinnervertexmultiplier.Size = new System.Drawing.Size(56, 24);
this.splineinnervertexmultiplier.StepValues = null;
this.splineinnervertexmultiplier.TabIndex = 8;
this.splineinnervertexmultiplier.WhenTextChanged += new System.EventHandler(this.splineinnervertexmultiplier_WhenTextChanged);
//
// label16
//
this.label16.AutoSize = true;
this.label16.Location = new System.Drawing.Point(6, 77);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(112, 14);
this.label16.TabIndex = 7;
this.label16.Text = "Outer vertex multiplier";
//
// label17
//
this.label17.AutoSize = true;
this.label17.Location = new System.Drawing.Point(6, 50);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(109, 14);
this.label17.TabIndex = 6;
this.label17.Text = "Inner vertex multiplier";
//
// numberofcontrolpoints
//
this.numberofcontrolpoints.AllowDecimal = false;
this.numberofcontrolpoints.AllowNegative = false;
this.numberofcontrolpoints.AllowRelative = false;
this.numberofcontrolpoints.ButtonStep = 1;
this.numberofcontrolpoints.Location = new System.Drawing.Point(128, 99);
this.numberofcontrolpoints.Name = "numberofcontrolpoints";
this.numberofcontrolpoints.Size = new System.Drawing.Size(56, 24);
this.numberofcontrolpoints.StepValues = null;
this.numberofcontrolpoints.TabIndex = 3;
this.numberofcontrolpoints.WhenTextChanged += new System.EventHandler(this.numberofcontrolpoints_WhenTextChanged);
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(6, 104);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(73, 14);
this.label10.TabIndex = 2;
this.label10.Text = "Control points";
//
// groupBox4
//
this.groupBox4.Controls.Add(this.floorflattexture);
this.groupBox4.Controls.Add(this.floorflat);
this.groupBox4.Location = new System.Drawing.Point(12, 343);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(105, 183);
this.groupBox4.TabIndex = 11;
this.groupBox4.TabStop = false;
//
// floorflattexture
//
this.floorflattexture.Enabled = false;
this.floorflattexture.Location = new System.Drawing.Point(8, 23);
this.floorflattexture.Name = "floorflattexture";
this.floorflattexture.Size = new System.Drawing.Size(90, 127);
this.floorflattexture.TabIndex = 1;
this.floorflattexture.TextureName = "";
//
// floorflat
//
this.floorflat.AutoSize = true;
this.floorflat.Location = new System.Drawing.Point(9, -1);
this.floorflat.Name = "floorflat";
this.floorflat.Size = new System.Drawing.Size(68, 18);
this.floorflat.TabIndex = 0;
this.floorflat.Text = "Floor flat";
this.floorflat.UseVisualStyleBackColor = true;
this.floorflat.CheckedChanged += new System.EventHandler(this.floorflat_CheckedChanged);
//
// ceilingflat
//
this.ceilingflat.AutoSize = true;
this.ceilingflat.Location = new System.Drawing.Point(9, -1);
this.ceilingflat.Name = "ceilingflat";
this.ceilingflat.Size = new System.Drawing.Size(75, 18);
this.ceilingflat.TabIndex = 0;
this.ceilingflat.Text = "Ceiling flat";
this.ceilingflat.UseVisualStyleBackColor = true;
this.ceilingflat.CheckedChanged += new System.EventHandler(this.ceilingflat_CheckedChanged);
//
// groupBox5
//
this.groupBox5.Controls.Add(this.ceilingflattexture);
this.groupBox5.Controls.Add(this.ceilingflat);
this.groupBox5.Location = new System.Drawing.Point(123, 343);
this.groupBox5.Name = "groupBox5";
this.groupBox5.Size = new System.Drawing.Size(105, 183);
this.groupBox5.TabIndex = 12;
this.groupBox5.TabStop = false;
//
// ceilingflattexture
//
this.ceilingflattexture.Enabled = false;
this.ceilingflattexture.Location = new System.Drawing.Point(8, 23);
this.ceilingflattexture.Name = "ceilingflattexture";
this.ceilingflattexture.Size = new System.Drawing.Size(90, 127);
this.ceilingflattexture.TabIndex = 2;
this.ceilingflattexture.TextureName = "";
//
// groupBox6
//
this.groupBox6.Controls.Add(this.label14);
this.groupBox6.Controls.Add(this.floorbase);
this.groupBox6.Controls.Add(this.floorheightmodification);
this.groupBox6.Controls.Add(this.floorlast);
this.groupBox6.Controls.Add(this.floorfirst);
this.groupBox6.Controls.Add(this.label7);
this.groupBox6.Controls.Add(this.label3);
this.groupBox6.Controls.Add(this.floorheightmod);
this.groupBox6.Controls.Add(this.label);
this.groupBox6.Location = new System.Drawing.Point(238, 203);
this.groupBox6.Name = "groupBox6";
this.groupBox6.Size = new System.Drawing.Size(110, 134);
this.groupBox6.TabIndex = 13;
this.groupBox6.TabStop = false;
this.groupBox6.Text = "c";
//
// label14
//
this.label14.AutoSize = true;
this.label14.Location = new System.Drawing.Point(4, 53);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(32, 14);
this.label14.TabIndex = 17;
this.label14.Text = "Base";
//
// floorbase
//
this.floorbase.AllowDecimal = false;
this.floorbase.AllowNegative = true;
this.floorbase.AllowRelative = false;
this.floorbase.ButtonStep = 8;
this.floorbase.Location = new System.Drawing.Point(45, 48);
this.floorbase.Name = "floorbase";
this.floorbase.Size = new System.Drawing.Size(56, 24);
this.floorbase.StepValues = null;
this.floorbase.TabIndex = 16;
this.floorbase.WhenTextChanged += new System.EventHandler(this.floorbase_WhenTextChanged);
//
// floorheightmodification
//
this.floorheightmodification.AutoSize = true;
this.floorheightmodification.Checked = true;
this.floorheightmodification.CheckState = System.Windows.Forms.CheckState.Checked;
this.floorheightmodification.Location = new System.Drawing.Point(9, -1);
this.floorheightmodification.Name = "floorheightmodification";
this.floorheightmodification.Size = new System.Drawing.Size(82, 18);
this.floorheightmodification.TabIndex = 14;
this.floorheightmodification.Text = "Floor height";
this.floorheightmodification.UseVisualStyleBackColor = true;
this.floorheightmodification.CheckedChanged += new System.EventHandler(this.floorheightmodification_CheckedChanged);
//
// floorlast
//
this.floorlast.AutoSize = true;
this.floorlast.Location = new System.Drawing.Point(41, 108);
this.floorlast.Name = "floorlast";
this.floorlast.Size = new System.Drawing.Size(46, 14);
this.floorlast.TabIndex = 11;
this.floorlast.Text = "floorlast";
//
// floorfirst
//
this.floorfirst.AutoSize = true;
this.floorfirst.Location = new System.Drawing.Point(41, 81);
this.floorfirst.Name = "floorfirst";
this.floorfirst.Size = new System.Drawing.Size(48, 14);
this.floorfirst.TabIndex = 10;
this.floorfirst.Text = "floorfirst";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(4, 108);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(31, 14);
this.label7.TabIndex = 7;
this.label7.Text = "Last:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(4, 81);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(31, 14);
this.label3.TabIndex = 6;
this.label3.Text = "First:";
//
// floorheightmod
//
this.floorheightmod.AllowDecimal = false;
this.floorheightmod.AllowNegative = true;
this.floorheightmod.AllowRelative = false;
this.floorheightmod.ButtonStep = 8;
this.floorheightmod.Location = new System.Drawing.Point(45, 22);
this.floorheightmod.Name = "floorheightmod";
this.floorheightmod.Size = new System.Drawing.Size(56, 24);
this.floorheightmod.StepValues = null;
this.floorheightmod.TabIndex = 3;
this.floorheightmod.WhenTextChanged += new System.EventHandler(this.floorheightmod_WhenTextChanged);
//
// label
//
this.label.AutoSize = true;
this.label.Location = new System.Drawing.Point(4, 27);
this.label.Name = "label";
this.label.Size = new System.Drawing.Size(39, 14);
this.label.TabIndex = 2;
this.label.Text = "Modify";
//
// groupBox7
//
this.groupBox7.Controls.Add(this.lowerunpegged);
this.groupBox7.Controls.Add(this.lowertexturetexture);
this.groupBox7.Controls.Add(this.lowertexture);
this.groupBox7.Location = new System.Drawing.Point(456, 342);
this.groupBox7.Name = "groupBox7";
this.groupBox7.Size = new System.Drawing.Size(105, 183);
this.groupBox7.TabIndex = 14;
this.groupBox7.TabStop = false;
//
// lowerunpegged
//
this.lowerunpegged.AutoSize = true;
this.lowerunpegged.Checked = true;
this.lowerunpegged.CheckState = System.Windows.Forms.CheckState.Checked;
this.lowerunpegged.Location = new System.Drawing.Point(9, 156);
this.lowerunpegged.Name = "lowerunpegged";
this.lowerunpegged.Size = new System.Drawing.Size(75, 18);
this.lowerunpegged.TabIndex = 3;
this.lowerunpegged.Text = "Unpegged";
this.lowerunpegged.UseVisualStyleBackColor = true;
//
// lowertexturetexture
//
this.lowertexturetexture.Location = new System.Drawing.Point(8, 23);
this.lowertexturetexture.Name = "lowertexturetexture";
this.lowertexturetexture.Required = false;
this.lowertexturetexture.Size = new System.Drawing.Size(90, 127);
this.lowertexturetexture.TabIndex = 2;
this.lowertexturetexture.TextureName = "";
//
// lowertexture
//
this.lowertexture.AutoSize = true;
this.lowertexture.Checked = true;
this.lowertexture.CheckState = System.Windows.Forms.CheckState.Checked;
this.lowertexture.Location = new System.Drawing.Point(9, -1);
this.lowertexture.Name = "lowertexture";
this.lowertexture.Size = new System.Drawing.Size(95, 18);
this.lowertexture.TabIndex = 0;
this.lowertexture.Text = "Lower texture";
this.lowertexture.UseVisualStyleBackColor = true;
this.lowertexture.CheckedChanged += new System.EventHandler(this.lowertexture_CheckedChanged);
//
// groupBox8
//
this.groupBox8.Controls.Add(this.upperunpegged);
this.groupBox8.Controls.Add(this.uppertexturetexture);
this.groupBox8.Controls.Add(this.uppertexture);
this.groupBox8.Location = new System.Drawing.Point(234, 343);
this.groupBox8.Name = "groupBox8";
this.groupBox8.Size = new System.Drawing.Size(105, 183);
this.groupBox8.TabIndex = 13;
this.groupBox8.TabStop = false;
//
// upperunpegged
//
this.upperunpegged.AutoSize = true;
this.upperunpegged.Checked = true;
this.upperunpegged.CheckState = System.Windows.Forms.CheckState.Checked;
this.upperunpegged.Location = new System.Drawing.Point(9, 156);
this.upperunpegged.Name = "upperunpegged";
this.upperunpegged.Size = new System.Drawing.Size(75, 18);
this.upperunpegged.TabIndex = 4;
this.upperunpegged.Text = "Unpegged";
this.upperunpegged.UseVisualStyleBackColor = true;
//
// uppertexturetexture
//
this.uppertexturetexture.Location = new System.Drawing.Point(8, 23);
this.uppertexturetexture.Name = "uppertexturetexture";
this.uppertexturetexture.Required = false;
this.uppertexturetexture.Size = new System.Drawing.Size(90, 127);
this.uppertexturetexture.TabIndex = 1;
this.uppertexturetexture.TextureName = "";
//
// uppertexture
//
this.uppertexture.AutoSize = true;
this.uppertexture.Checked = true;
this.uppertexture.CheckState = System.Windows.Forms.CheckState.Checked;
this.uppertexture.Location = new System.Drawing.Point(9, -1);
this.uppertexture.Name = "uppertexture";
this.uppertexture.Size = new System.Drawing.Size(92, 18);
this.uppertexture.TabIndex = 0;
this.uppertexture.Text = "Upper texture";
this.uppertexture.UseVisualStyleBackColor = true;
this.uppertexture.CheckedChanged += new System.EventHandler(this.uppertexture_CheckedChanged);
//
// ceilinglast
//
this.ceilinglast.AutoSize = true;
this.ceilinglast.Location = new System.Drawing.Point(41, 108);
this.ceilinglast.Name = "ceilinglast";
this.ceilinglast.Size = new System.Drawing.Size(54, 14);
this.ceilinglast.TabIndex = 24;
this.ceilinglast.Text = "ceilinglast";
//
// ceilingfirst
//
this.ceilingfirst.AutoSize = true;
this.ceilingfirst.Location = new System.Drawing.Point(41, 81);
this.ceilingfirst.Name = "ceilingfirst";
this.ceilingfirst.Size = new System.Drawing.Size(56, 14);
this.ceilingfirst.TabIndex = 23;
this.ceilingfirst.Text = "ceilingfirst";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(4, 108);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(31, 14);
this.label8.TabIndex = 22;
this.label8.Text = "Last:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(4, 81);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(31, 14);
this.label9.TabIndex = 21;
this.label9.Text = "First:";
//
// ceilingheightmod
//
this.ceilingheightmod.AllowDecimal = false;
this.ceilingheightmod.AllowNegative = true;
this.ceilingheightmod.AllowRelative = false;
this.ceilingheightmod.ButtonStep = 8;
this.ceilingheightmod.Location = new System.Drawing.Point(45, 22);
this.ceilingheightmod.Name = "ceilingheightmod";
this.ceilingheightmod.Size = new System.Drawing.Size(56, 24);
this.ceilingheightmod.StepValues = null;
this.ceilingheightmod.TabIndex = 20;
this.ceilingheightmod.WhenTextChanged += new System.EventHandler(this.ceilingheightmod_WhenTextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 27);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(39, 14);
this.label2.TabIndex = 19;
this.label2.Text = "Modify";
//
// groupBox9
//
this.groupBox9.Controls.Add(this.label15);
this.groupBox9.Controls.Add(this.ceilingbase);
this.groupBox9.Controls.Add(this.ceilingheightmodification);
this.groupBox9.Controls.Add(this.ceilingheightmod);
this.groupBox9.Controls.Add(this.label2);
this.groupBox9.Controls.Add(this.ceilinglast);
this.groupBox9.Controls.Add(this.label9);
this.groupBox9.Controls.Add(this.ceilingfirst);
this.groupBox9.Controls.Add(this.label8);
this.groupBox9.Location = new System.Drawing.Point(354, 203);
this.groupBox9.Name = "groupBox9";
this.groupBox9.Size = new System.Drawing.Size(110, 134);
this.groupBox9.TabIndex = 18;
this.groupBox9.TabStop = false;
this.groupBox9.Text = "c";
//
// label15
//
this.label15.AutoSize = true;
this.label15.Location = new System.Drawing.Point(4, 53);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(32, 14);
this.label15.TabIndex = 27;
this.label15.Text = "Base";
//
// ceilingbase
//
this.ceilingbase.AllowDecimal = false;
this.ceilingbase.AllowNegative = true;
this.ceilingbase.AllowRelative = false;
this.ceilingbase.ButtonStep = 8;
this.ceilingbase.Location = new System.Drawing.Point(45, 48);
this.ceilingbase.Name = "ceilingbase";
this.ceilingbase.Size = new System.Drawing.Size(56, 24);
this.ceilingbase.StepValues = null;
this.ceilingbase.TabIndex = 26;
this.ceilingbase.WhenTextChanged += new System.EventHandler(this.ceilingbase_WhenTextChanged);
//
// ceilingheightmodification
//
this.ceilingheightmodification.AutoSize = true;
this.ceilingheightmodification.Checked = true;
this.ceilingheightmodification.CheckState = System.Windows.Forms.CheckState.Checked;
this.ceilingheightmodification.Location = new System.Drawing.Point(9, -1);
this.ceilingheightmodification.Name = "ceilingheightmodification";
this.ceilingheightmodification.Size = new System.Drawing.Size(89, 18);
this.ceilingheightmodification.TabIndex = 14;
this.ceilingheightmodification.Text = "Ceiling height";
this.ceilingheightmodification.UseVisualStyleBackColor = true;
this.ceilingheightmodification.CheckedChanged += new System.EventHandler(this.ceilingheightmodification_CheckedChanged);
//
// groupBox11
//
this.groupBox11.Controls.Add(this.prefabload);
this.groupBox11.Controls.Add(this.prefabdelete);
this.groupBox11.Controls.Add(this.prefabsave);
this.groupBox11.Controls.Add(this.prefabname);
this.groupBox11.Controls.Add(this.prefabs);
this.groupBox11.Location = new System.Drawing.Point(238, 9);
this.groupBox11.Name = "groupBox11";
this.groupBox11.Size = new System.Drawing.Size(323, 187);
this.groupBox11.TabIndex = 24;
this.groupBox11.TabStop = false;
this.groupBox11.Text = "Prefabs";
//
// prefabload
//
this.prefabload.Location = new System.Drawing.Point(80, 156);
this.prefabload.Name = "prefabload";
this.prefabload.Size = new System.Drawing.Size(65, 23);
this.prefabload.TabIndex = 28;
this.prefabload.Text = "Load";
this.prefabload.UseVisualStyleBackColor = true;
this.prefabload.Click += new System.EventHandler(this.prefabload_Click);
//
// prefabdelete
//
this.prefabdelete.Location = new System.Drawing.Point(151, 156);
this.prefabdelete.Name = "prefabdelete";
this.prefabdelete.Size = new System.Drawing.Size(65, 23);
this.prefabdelete.TabIndex = 27;
this.prefabdelete.Text = "Delete";
this.prefabdelete.UseVisualStyleBackColor = true;
this.prefabdelete.Click += new System.EventHandler(this.prefabdelete_Click);
//
// prefabsave
//
this.prefabsave.Location = new System.Drawing.Point(9, 156);
this.prefabsave.Name = "prefabsave";
this.prefabsave.Size = new System.Drawing.Size(65, 23);
this.prefabsave.TabIndex = 26;
this.prefabsave.Text = "Save";
this.prefabsave.UseVisualStyleBackColor = true;
this.prefabsave.Click += new System.EventHandler(this.prefabsave_Click);
//
// prefabname
//
this.prefabname.Location = new System.Drawing.Point(10, 19);
this.prefabname.Name = "prefabname";
this.prefabname.Size = new System.Drawing.Size(306, 20);
this.prefabname.TabIndex = 25;
//
// prefabs
//
this.prefabs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2});
this.prefabs.FullRowSelect = true;
this.prefabs.Location = new System.Drawing.Point(9, 41);
this.prefabs.MultiSelect = false;
this.prefabs.Name = "prefabs";
this.prefabs.Size = new System.Drawing.Size(307, 109);
this.prefabs.TabIndex = 24;
this.prefabs.UseCompatibleStateImageBehavior = false;
this.prefabs.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "Name";
this.columnHeader1.Width = 200;
//
// columnHeader2
//
this.columnHeader2.Text = "Type";
this.columnHeader2.Width = 80;
//
// groupBox10
//
this.groupBox10.Controls.Add(this.middletexturetexture);
this.groupBox10.Controls.Add(this.middletexture);
this.groupBox10.Location = new System.Drawing.Point(345, 343);
this.groupBox10.Name = "groupBox10";
this.groupBox10.Size = new System.Drawing.Size(105, 183);
this.groupBox10.TabIndex = 25;
this.groupBox10.TabStop = false;
//
// middletexturetexture
//
this.middletexturetexture.Enabled = false;
this.middletexturetexture.Location = new System.Drawing.Point(8, 23);
this.middletexturetexture.Name = "middletexturetexture";
this.middletexturetexture.Required = false;
this.middletexturetexture.Size = new System.Drawing.Size(90, 127);
this.middletexturetexture.TabIndex = 2;
this.middletexturetexture.TextureName = "";
//
// middletexture
//
this.middletexture.AutoSize = true;
this.middletexture.Location = new System.Drawing.Point(9, -1);
this.middletexture.Name = "middletexture";
this.middletexture.Size = new System.Drawing.Size(93, 18);
this.middletexture.TabIndex = 0;
this.middletexture.Text = "Middle texture";
this.middletexture.UseVisualStyleBackColor = true;
this.middletexture.CheckedChanged += new System.EventHandler(this.middletexture_CheckedChanged);
//
// StairSectorBuilderForm
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(573, 570);
this.Controls.Add(this.groupBox10);
this.Controls.Add(this.groupBox11);
this.Controls.Add(this.groupBox9);
this.Controls.Add(this.groupBox7);
this.Controls.Add(this.groupBox8);
this.Controls.Add(this.groupBox6);
this.Controls.Add(this.groupBox5);
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.tabcontrol);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "StairSectorBuilderForm";
this.Opacity = 0;
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Stair Sector Builder";
this.Load += new System.EventHandler(this.StairSectorBuilderForm_Load);
this.Shown += new System.EventHandler(this.StairSectorBuilderForm_Shown);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.StairSectorBuilderForm_FormClosing);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.tabcontrol.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox5.ResumeLayout(false);
this.groupBox5.PerformLayout();
this.groupBox6.ResumeLayout(false);
this.groupBox6.PerformLayout();
this.groupBox7.ResumeLayout(false);
this.groupBox7.PerformLayout();
this.groupBox8.ResumeLayout(false);
this.groupBox8.PerformLayout();
this.groupBox9.ResumeLayout(false);
this.groupBox9.PerformLayout();
this.groupBox11.ResumeLayout(false);
this.groupBox11.PerformLayout();
this.groupBox10.ResumeLayout(false);
this.groupBox10.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : MenusForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.colorpresetseparator = new System.Windows.Forms.ToolStripSeparator();
this.colorpresetlabel = new System.Windows.Forms.ToolStripLabel();
this.colorpreset = new System.Windows.Forms.ToolStripComboBox();
this.showhiddenlines = new System.Windows.Forms.ToolStripButton();
this.showsecretsectors = new System.Windows.Forms.ToolStripButton();
this.showlocks = new System.Windows.Forms.ToolStripButton();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.showhiddenlines,
this.showsecretsectors,
this.showlocks,
this.colorpresetseparator,
this.colorpresetlabel,
this.colorpreset});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(731, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// colorpresetseparator
//
this.colorpresetseparator.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.colorpresetseparator.Name = "colorpresetseparator";
this.colorpresetseparator.Size = new System.Drawing.Size(6, 25);
//
// colorpresetlabel
//
this.colorpresetlabel.Name = "colorpresetlabel";
this.colorpresetlabel.Size = new System.Drawing.Size(74, 22);
this.colorpresetlabel.Text = "Color preset:";
//
// colorpreset
//
this.colorpreset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.colorpreset.Items.AddRange(new object[] {
"Doom",
"Hexen",
"Strife"});
this.colorpreset.Name = "colorpreset";
this.colorpreset.Size = new System.Drawing.Size(75, 25);
this.colorpreset.SelectedIndexChanged += new System.EventHandler(this.colorpreset_SelectedIndexChanged);
//
// showhiddenlines
//
this.showhiddenlines.CheckOnClick = true;
this.showhiddenlines.Image = global::CodeImp.DoomBuilder.AutomapMode.Properties.Resources.ShowHiddenLines;
this.showhiddenlines.ImageTransparentColor = System.Drawing.Color.Magenta;
this.showhiddenlines.Margin = new System.Windows.Forms.Padding(0, 1, 2, 2);
this.showhiddenlines.Name = "showhiddenlines";
this.showhiddenlines.Size = new System.Drawing.Size(123, 22);
this.showhiddenlines.Text = "Show hidden lines";
this.showhiddenlines.CheckedChanged += new System.EventHandler(this.showhiddenlines_CheckedChanged);
//
// showsecretsectors
//
this.showsecretsectors.CheckOnClick = true;
this.showsecretsectors.Image = global::CodeImp.DoomBuilder.AutomapMode.Properties.Resources.ShowSecrets;
this.showsecretsectors.Margin = new System.Windows.Forms.Padding(0, 1, 2, 2);
this.showsecretsectors.Name = "showsecretsectors";
this.showsecretsectors.Size = new System.Drawing.Size(95, 22);
this.showsecretsectors.Text = "Show secrets";
this.showsecretsectors.CheckedChanged += new System.EventHandler(this.showsecretsectors_CheckedChanged);
//
// showlocks
//
this.showlocks.CheckOnClick = true;
this.showlocks.Image = global::CodeImp.DoomBuilder.AutomapMode.Properties.Resources.ShowLocks;
this.showlocks.ImageTransparentColor = System.Drawing.Color.Magenta;
this.showlocks.Name = "showlocks";
this.showlocks.Size = new System.Drawing.Size(86, 22);
this.showlocks.Text = "Show locks";
this.showlocks.CheckedChanged += new System.EventHandler(this.showlocks_CheckedChanged);
//
// MenusForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.toolStrip1);
this.Name = "MenusForm";
this.Size = new System.Drawing.Size(731, 65);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : PreferencesForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
private void InitializeComponent()
{
this.tabs = new System.Windows.Forms.TabControl();
this.taboptions = new System.Windows.Forms.TabPage();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.autodragonpaste = new System.Windows.Forms.CheckBox();
this.visualmodeclearselection = new System.Windows.Forms.CheckBox();
this.autoclearselection = new System.Windows.Forms.CheckBox();
this.editnewthing = new System.Windows.Forms.CheckBox();
this.editnewsector = new System.Windows.Forms.CheckBox();
this.additiveselect = new System.Windows.Forms.CheckBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.splitlinedefsrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.sreplacedchrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.highlightthingsrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.highlightrange = new CodeImp.DoomBuilder.Controls.ButtonsNumericTextbox();
this.label8 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.heightbysidedef = new System.Windows.Forms.ComboBox();
this.label10 = new System.Windows.Forms.Label();
this.splitbehavior = new System.Windows.Forms.ComboBox();
this.tabs.SuspendLayout();
this.taboptions.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// tabs
//
this.tabs.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.tabs.Controls.Add(this.taboptions);
this.tabs.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tabs.Location = new System.Drawing.Point(12, 12);
this.tabs.Name = "tabs";
this.tabs.SelectedIndex = 0;
this.tabs.Size = new System.Drawing.Size(654, 424);
this.tabs.TabIndex = 0;
//
// taboptions
//
this.taboptions.Controls.Add(this.groupBox3);
this.taboptions.Controls.Add(this.groupBox2);
this.taboptions.Controls.Add(this.groupBox1);
this.taboptions.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.taboptions.Location = new System.Drawing.Point(4, 23);
this.taboptions.Name = "taboptions";
this.taboptions.Padding = new System.Windows.Forms.Padding(3);
this.taboptions.Size = new System.Drawing.Size(646, 397);
this.taboptions.TabIndex = 0;
this.taboptions.Text = "Editing";
this.taboptions.UseVisualStyleBackColor = true;
//
// groupBox3
//
this.groupBox3.Controls.Add(this.autodragonpaste);
this.groupBox3.Controls.Add(this.visualmodeclearselection);
this.groupBox3.Controls.Add(this.autoclearselection);
this.groupBox3.Controls.Add(this.editnewthing);
this.groupBox3.Controls.Add(this.editnewsector);
this.groupBox3.Controls.Add(this.additiveselect);
this.groupBox3.Location = new System.Drawing.Point(308, 129);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(332, 200);
this.groupBox3.TabIndex = 18;
this.groupBox3.TabStop = false;
this.groupBox3.Text = " Options ";
//
// autodragonpaste
//
this.autodragonpaste.AutoSize = true;
this.autodragonpaste.Location = new System.Drawing.Point(23, 163);
this.autodragonpaste.Name = "autodragonpaste";
this.autodragonpaste.Size = new System.Drawing.Size(205, 18);
this.autodragonpaste.TabIndex = 6;
this.autodragonpaste.Text = "Drag selection automatically on paste";
this.autodragonpaste.UseVisualStyleBackColor = true;
//
// visualmodeclearselection
//
this.visualmodeclearselection.AutoSize = true;
this.visualmodeclearselection.Location = new System.Drawing.Point(23, 137);
this.visualmodeclearselection.Name = "visualmodeclearselection";
this.visualmodeclearselection.Size = new System.Drawing.Size(220, 18);
this.visualmodeclearselection.TabIndex = 5;
this.visualmodeclearselection.Text = "Automatic clear selection in Visual Mode";
this.visualmodeclearselection.UseVisualStyleBackColor = true;
//
// autoclearselection
//
this.autoclearselection.AutoSize = true;
this.autoclearselection.Location = new System.Drawing.Point(23, 111);
this.autoclearselection.Name = "autoclearselection";
this.autoclearselection.Size = new System.Drawing.Size(231, 18);
this.autoclearselection.TabIndex = 4;
this.autoclearselection.Text = "Automatic clear selection in Clreplacedic Modes";
this.autoclearselection.UseVisualStyleBackColor = true;
//
// editnewthing
//
this.editnewthing.AutoSize = true;
this.editnewthing.Location = new System.Drawing.Point(23, 33);
this.editnewthing.Name = "editnewthing";
this.editnewthing.Size = new System.Drawing.Size(256, 18);
this.editnewthing.TabIndex = 1;
this.editnewthing.Text = "Edit thing properties when inserting a new thing";
this.editnewthing.UseVisualStyleBackColor = true;
//
// editnewsector
//
this.editnewsector.AutoSize = true;
this.editnewsector.Location = new System.Drawing.Point(23, 59);
this.editnewsector.Name = "editnewsector";
this.editnewsector.Size = new System.Drawing.Size(271, 18);
this.editnewsector.TabIndex = 2;
this.editnewsector.Text = "Edit sector properties when drawing a new sector";
this.editnewsector.UseVisualStyleBackColor = true;
//
// additiveselect
//
this.additiveselect.AutoSize = true;
this.additiveselect.Location = new System.Drawing.Point(23, 85);
this.additiveselect.Name = "additiveselect";
this.additiveselect.Size = new System.Drawing.Size(211, 18);
this.additiveselect.TabIndex = 3;
this.additiveselect.Text = "Additive selecting without holding shift";
this.additiveselect.UseVisualStyleBackColor = true;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.splitlinedefsrange);
this.groupBox2.Controls.Add(this.sreplacedchrange);
this.groupBox2.Controls.Add(this.highlightthingsrange);
this.groupBox2.Controls.Add(this.highlightrange);
this.groupBox2.Controls.Add(this.label8);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.label9);
this.groupBox2.Controls.Add(this.label5);
this.groupBox2.Controls.Add(this.label6);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.label7);
this.groupBox2.Location = new System.Drawing.Point(6, 129);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(292, 200);
this.groupBox2.TabIndex = 17;
this.groupBox2.TabStop = false;
this.groupBox2.Text = " Ranges ";
//
// splitlinedefsrange
//
this.splitlinedefsrange.AllowDecimal = false;
this.splitlinedefsrange.AllowNegative = false;
this.splitlinedefsrange.AllowRelative = false;
this.splitlinedefsrange.ButtonStep = 5;
this.splitlinedefsrange.Location = new System.Drawing.Point(167, 152);
this.splitlinedefsrange.Name = "splitlinedefsrange";
this.splitlinedefsrange.Size = new System.Drawing.Size(59, 24);
this.splitlinedefsrange.StepValues = null;
this.splitlinedefsrange.TabIndex = 19;
//
// sreplacedchrange
//
this.sreplacedchrange.AllowDecimal = false;
this.sreplacedchrange.AllowNegative = false;
this.sreplacedchrange.AllowRelative = false;
this.sreplacedchrange.ButtonStep = 5;
this.sreplacedchrange.Location = new System.Drawing.Point(167, 112);
this.sreplacedchrange.Name = "sreplacedchrange";
this.sreplacedchrange.Size = new System.Drawing.Size(59, 24);
this.sreplacedchrange.StepValues = null;
this.sreplacedchrange.TabIndex = 18;
//
// highlightthingsrange
//
this.highlightthingsrange.AllowDecimal = false;
this.highlightthingsrange.AllowNegative = false;
this.highlightthingsrange.AllowRelative = false;
this.highlightthingsrange.ButtonStep = 5;
this.highlightthingsrange.Location = new System.Drawing.Point(167, 72);
this.highlightthingsrange.Name = "highlightthingsrange";
this.highlightthingsrange.Size = new System.Drawing.Size(59, 24);
this.highlightthingsrange.StepValues = null;
this.highlightthingsrange.TabIndex = 17;
//
// highlightrange
//
this.highlightrange.AllowDecimal = false;
this.highlightrange.AllowNegative = false;
this.highlightrange.AllowRelative = false;
this.highlightrange.ButtonStep = 5;
this.highlightrange.Location = new System.Drawing.Point(167, 32);
this.highlightrange.Name = "highlightrange";
this.highlightrange.Size = new System.Drawing.Size(59, 24);
this.highlightrange.StepValues = null;
this.highlightrange.TabIndex = 16;
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(232, 157);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(35, 14);
this.label8.TabIndex = 15;
this.label8.Text = "pixels";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(33, 117);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(117, 14);
this.label2.TabIndex = 4;
this.label2.Text = "Sreplacedch geometry within:";
this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(232, 117);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 14);
this.label3.TabIndex = 6;
this.label3.Text = "pixels";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(47, 157);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(103, 14);
this.label9.TabIndex = 13;
this.label9.Text = "Split linedefs within:";
this.label9.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(20, 37);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(130, 14);
this.label5.TabIndex = 7;
this.label5.Text = "Highlight geometry within:";
this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(232, 77);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(35, 14);
this.label6.TabIndex = 12;
this.label6.Text = "pixels";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(232, 37);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(35, 14);
this.label4.TabIndex = 9;
this.label4.Text = "pixels";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(36, 77);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(114, 14);
this.label7.TabIndex = 10;
this.label7.Text = "Highlight things within:";
this.label7.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.splitbehavior);
this.groupBox1.Controls.Add(this.label10);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Controls.Add(this.heightbysidedef);
this.groupBox1.Location = new System.Drawing.Point(6, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(634, 117);
this.groupBox1.TabIndex = 16;
this.groupBox1.TabStop = false;
this.groupBox1.Text = " Behavior ";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(29, 35);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(315, 14);
this.label1.TabIndex = 0;
this.label1.Text = "When sector height changes are used on a wall in Visual Mode:";
this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// heightbysidedef
//
this.heightbysidedef.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.heightbysidedef.FormattingEnabled = true;
this.heightbysidedef.Items.AddRange(new object[] {
"Do nothing",
"Change the ceiling height",
"Change the floor height",
"Change both floor and ceiling height"});
this.heightbysidedef.Location = new System.Drawing.Point(364, 32);
this.heightbysidedef.Name = "heightbysidedef";
this.heightbysidedef.Size = new System.Drawing.Size(217, 22);
this.heightbysidedef.TabIndex = 0;
//
// label10
//
this.label10.AutoSize = true;
this.label10.Location = new System.Drawing.Point(178, 71);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(166, 14);
this.label10.TabIndex = 1;
this.label10.Text = "When splitting a linedef manually:";
this.label10.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// splitbehavior
//
this.splitbehavior.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.splitbehavior.FormattingEnabled = true;
this.splitbehavior.Items.AddRange(new object[] {
"Interpolate texture coordinates",
"Duplicate texture coordinates",
"Reset X coordinate, duplicate Y coordinate"});
this.splitbehavior.Location = new System.Drawing.Point(364, 68);
this.splitbehavior.Name = "splitbehavior";
this.splitbehavior.Size = new System.Drawing.Size(217, 22);
this.splitbehavior.TabIndex = 2;
//
// PreferencesForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(678, 448);
this.Controls.Add(this.tabs);
this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PreferencesForm";
this.ShowIcon = false;
this.Text = "PreferencesForm";
this.tabs.ResumeLayout(false);
this.taboptions.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : SciColorMapsForm.Designer.cs
License : MIT License
Project Creator : ar1st0crat
License : MIT License
Project Creator : ar1st0crat
private void InitializeComponent()
{
this._colorMapPanel = new System.Windows.Forms.Panel();
this._colorMapsList = new System.Windows.Forms.ComboBox();
this._labelColorMapsList = new System.Windows.Forms.Label();
this._buttonShow = new System.Windows.Forms.Button();
this._surfacesList = new System.Windows.Forms.ComboBox();
this._surfacePanel = new System.Windows.Forms.Panel();
this._labelSurfacesList = new System.Windows.Forms.Label();
this._surface3dPanel = new System.Windows.Forms.Panel();
this._colorCountUpDown = new System.Windows.Forms.NumericUpDown();
this._labelColorCount = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this._colorCountUpDown)).BeginInit();
this.SuspendLayout();
//
// _colorMapPanel
//
this._colorMapPanel.BackColor = System.Drawing.Color.WhiteSmoke;
this._colorMapPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._colorMapPanel.Location = new System.Drawing.Point(13, 156);
this._colorMapPanel.Name = "_colorMapPanel";
this._colorMapPanel.Size = new System.Drawing.Size(434, 27);
this._colorMapPanel.TabIndex = 0;
this._colorMapPanel.MouseClick += new System.Windows.Forms.MouseEventHandler(this._colorMapPanel_MouseClick);
//
// _colorMapsList
//
this._colorMapsList.FormattingEnabled = true;
this._colorMapsList.Items.Add("user");
this._colorMapsList.Items.AddRange(ColorMap.Palettes.ToArray());
this._colorMapsList.Location = new System.Drawing.Point(13, 42);
this._colorMapsList.Name = "_colorMapsList";
this._colorMapsList.Size = new System.Drawing.Size(150, 24);
this._colorMapsList.Sorted = false;
this._colorMapsList.TabIndex = 1;
this._colorMapsList.Text = ColorMap.Palettes.FirstOrDefault();
//
// _labelColorMapsList
//
this._labelColorMapsList.AutoSize = true;
this._labelColorMapsList.Location = new System.Drawing.Point(13, 19);
this._labelColorMapsList.Name = "_labelColorMapsList";
this._labelColorMapsList.Size = new System.Drawing.Size(76, 17);
this._labelColorMapsList.TabIndex = 2;
this._labelColorMapsList.Text = "Color map:";
//
// _buttonShow
//
this._buttonShow.Location = new System.Drawing.Point(13, 87);
this._buttonShow.Name = "_buttonShow";
this._buttonShow.Size = new System.Drawing.Size(434, 47);
this._buttonShow.TabIndex = 3;
this._buttonShow.Text = "Show";
this._buttonShow.UseVisualStyleBackColor = true;
this._buttonShow.Click += new System.EventHandler(this._buttonShow_Click);
//
// _surfacesList
//
this._surfacesList.FormattingEnabled = true;
this._surfacesList.Items.AddRange(new object[] {
"Hyperbolic paraboloid",
"Elliptic paraboloid",
"Fancy surface"});
this._surfacesList.Location = new System.Drawing.Point(249, 42);
this._surfacesList.Name = "_surfacesList";
this._surfacesList.Size = new System.Drawing.Size(198, 24);
this._surfacesList.TabIndex = 4;
this._surfacesList.Text = "Hyperbolic paraboloid";
//
// _surfacePanel
//
this._surfacePanel.BackColor = System.Drawing.Color.White;
this._surfacePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this._surfacePanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._surfacePanel.Location = new System.Drawing.Point(13, 201);
this._surfacePanel.Name = "_surfacePanel";
this._surfacePanel.Size = new System.Drawing.Size(434, 267);
this._surfacePanel.TabIndex = 1;
this._surfacePanel.MouseClick += new System.Windows.Forms.MouseEventHandler(this._surfacePanel_MouseClick);
//
// _labelSurfacesList
//
this._labelSurfacesList.AutoSize = true;
this._labelSurfacesList.Location = new System.Drawing.Point(246, 19);
this._labelSurfacesList.Name = "_labelSurfacesList";
this._labelSurfacesList.Size = new System.Drawing.Size(61, 17);
this._labelSurfacesList.TabIndex = 5;
this._labelSurfacesList.Text = "Surface:";
//
// _surface3dPanel
//
this._surface3dPanel.BackColor = System.Drawing.Color.White;
this._surface3dPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this._surface3dPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._surface3dPanel.Location = new System.Drawing.Point(464, 42);
this._surface3dPanel.Name = "_surface3dPanel";
this._surface3dPanel.Size = new System.Drawing.Size(415, 426);
this._surface3dPanel.TabIndex = 2;
//
// _colorCountUpDown
//
this._colorCountUpDown.Location = new System.Drawing.Point(170, 43);
this._colorCountUpDown.Maximum = new decimal(new int[] {
256,
0,
0,
0});
this._colorCountUpDown.Minimum = new decimal(new int[] {
2,
0,
0,
0});
this._colorCountUpDown.Name = "_colorCountUpDown";
this._colorCountUpDown.Size = new System.Drawing.Size(73, 22);
this._colorCountUpDown.TabIndex = 6;
this._colorCountUpDown.Value = new decimal(new int[] {
256,
0,
0,
0});
//
// _labelColorCount
//
this._labelColorCount.AutoSize = true;
this._labelColorCount.Location = new System.Drawing.Point(167, 19);
this._labelColorCount.Name = "_labelColorCount";
this._labelColorCount.Size = new System.Drawing.Size(52, 17);
this._labelColorCount.TabIndex = 7;
this._labelColorCount.Text = "Colors:";
//
// SciColorMapsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(891, 480);
this.Controls.Add(this._labelColorCount);
this.Controls.Add(this._colorCountUpDown);
this.Controls.Add(this._surface3dPanel);
this.Controls.Add(this._labelSurfacesList);
this.Controls.Add(this._surfacePanel);
this.Controls.Add(this._surfacesList);
this.Controls.Add(this._buttonShow);
this.Controls.Add(this._labelColorMapsList);
this.Controls.Add(this._colorMapsList);
this.Controls.Add(this._colorMapPanel);
this.Name = "SciColorMapsForm";
this.Text = "SciColorMaps demo";
((System.ComponentModel.ISupportInitialize)(this._colorCountUpDown)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : SciColorMapsForm.Designer.cs
License : MIT License
Project Creator : ar1st0crat
License : MIT License
Project Creator : ar1st0crat
private void InitializeComponent()
{
this._colorMapPanel = new System.Windows.Forms.Panel();
this._colorMapsList = new System.Windows.Forms.ComboBox();
this._labelColorMapsList = new System.Windows.Forms.Label();
this._buttonShow = new System.Windows.Forms.Button();
this._surfacesList = new System.Windows.Forms.ComboBox();
this._surfacePanel = new System.Windows.Forms.Panel();
this._labelSurfacesList = new System.Windows.Forms.Label();
this._surface3dPanel = new System.Windows.Forms.Panel();
this._colorCountUpDown = new System.Windows.Forms.NumericUpDown();
this._labelColorCount = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this._colorCountUpDown)).BeginInit();
this.SuspendLayout();
//
// _colorMapPanel
//
this._colorMapPanel.BackColor = System.Drawing.Color.WhiteSmoke;
this._colorMapPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._colorMapPanel.Location = new System.Drawing.Point(13, 156);
this._colorMapPanel.Name = "_colorMapPanel";
this._colorMapPanel.Size = new System.Drawing.Size(434, 27);
this._colorMapPanel.TabIndex = 0;
this._colorMapPanel.MouseClick += new System.Windows.Forms.MouseEventHandler(this._colorMapPanel_MouseClick);
//
// _colorMapsList
//
this._colorMapsList.FormattingEnabled = true;
this._colorMapsList.Items.Add("user");
this._colorMapsList.Items.AddRange(ColorMap.Palettes.ToArray());
this._colorMapsList.Location = new System.Drawing.Point(13, 42);
this._colorMapsList.Name = "_colorMapsList";
this._colorMapsList.Size = new System.Drawing.Size(150, 24);
this._colorMapsList.Sorted = false;
this._colorMapsList.TabIndex = 1;
this._colorMapsList.Text = ColorMap.Palettes.FirstOrDefault();
//
// _labelColorMapsList
//
this._labelColorMapsList.AutoSize = true;
this._labelColorMapsList.Location = new System.Drawing.Point(13, 19);
this._labelColorMapsList.Name = "_labelColorMapsList";
this._labelColorMapsList.Size = new System.Drawing.Size(76, 17);
this._labelColorMapsList.TabIndex = 2;
this._labelColorMapsList.Text = "Color map:";
//
// _buttonShow
//
this._buttonShow.Location = new System.Drawing.Point(13, 87);
this._buttonShow.Name = "_buttonShow";
this._buttonShow.Size = new System.Drawing.Size(434, 47);
this._buttonShow.TabIndex = 3;
this._buttonShow.Text = "Show";
this._buttonShow.UseVisualStyleBackColor = true;
this._buttonShow.Click += new System.EventHandler(this._buttonShow_Click);
//
// _surfacesList
//
this._surfacesList.FormattingEnabled = true;
this._surfacesList.Items.AddRange(new object[] {
"Hyperbolic paraboloid",
"Elliptic paraboloid",
"Fancy surface"});
this._surfacesList.Location = new System.Drawing.Point(249, 42);
this._surfacesList.Name = "_surfacesList";
this._surfacesList.Size = new System.Drawing.Size(198, 24);
this._surfacesList.TabIndex = 4;
this._surfacesList.Text = "Hyperbolic paraboloid";
//
// _surfacePanel
//
this._surfacePanel.BackColor = System.Drawing.Color.White;
this._surfacePanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this._surfacePanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._surfacePanel.Location = new System.Drawing.Point(13, 201);
this._surfacePanel.Name = "_surfacePanel";
this._surfacePanel.Size = new System.Drawing.Size(434, 267);
this._surfacePanel.TabIndex = 1;
this._surfacePanel.MouseClick += new System.Windows.Forms.MouseEventHandler(this._surfacePanel_MouseClick);
//
// _labelSurfacesList
//
this._labelSurfacesList.AutoSize = true;
this._labelSurfacesList.Location = new System.Drawing.Point(246, 19);
this._labelSurfacesList.Name = "_labelSurfacesList";
this._labelSurfacesList.Size = new System.Drawing.Size(61, 17);
this._labelSurfacesList.TabIndex = 5;
this._labelSurfacesList.Text = "Surface:";
//
// _surface3dPanel
//
this._surface3dPanel.BackColor = System.Drawing.Color.White;
this._surface3dPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this._surface3dPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this._surface3dPanel.Location = new System.Drawing.Point(464, 42);
this._surface3dPanel.Name = "_surface3dPanel";
this._surface3dPanel.Size = new System.Drawing.Size(415, 426);
this._surface3dPanel.TabIndex = 2;
//
// _colorCountUpDown
//
this._colorCountUpDown.Location = new System.Drawing.Point(170, 43);
this._colorCountUpDown.Maximum = new decimal(new int[] {
256,
0,
0,
0});
this._colorCountUpDown.Minimum = new decimal(new int[] {
2,
0,
0,
0});
this._colorCountUpDown.Name = "_colorCountUpDown";
this._colorCountUpDown.Size = new System.Drawing.Size(73, 22);
this._colorCountUpDown.TabIndex = 6;
this._colorCountUpDown.Value = new decimal(new int[] {
256,
0,
0,
0});
//
// _labelColorCount
//
this._labelColorCount.AutoSize = true;
this._labelColorCount.Location = new System.Drawing.Point(167, 19);
this._labelColorCount.Name = "_labelColorCount";
this._labelColorCount.Size = new System.Drawing.Size(52, 17);
this._labelColorCount.TabIndex = 7;
this._labelColorCount.Text = "Colors:";
//
// SciColorMapsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(891, 480);
this.Controls.Add(this._labelColorCount);
this.Controls.Add(this._colorCountUpDown);
this.Controls.Add(this._surface3dPanel);
this.Controls.Add(this._labelSurfacesList);
this.Controls.Add(this._surfacePanel);
this.Controls.Add(this._surfacesList);
this.Controls.Add(this._buttonShow);
this.Controls.Add(this._labelColorMapsList);
this.Controls.Add(this._colorMapsList);
this.Controls.Add(this._colorMapPanel);
this.Name = "SciColorMapsForm";
this.Text = "SciColorMaps demo";
((System.ComponentModel.ISupportInitialize)(this._colorCountUpDown)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : Form.Designer.cs
License : Apache License 2.0
Project Creator : ArkaneDev
License : Apache License 2.0
Project Creator : ArkaneDev
private void InitializeComponent()
{
this.replacedleLabel = new System.Windows.Forms.Label();
this.installButton = new System.Windows.Forms.Button();
this.selectionBoxLabel = new System.Windows.Forms.Label();
this.selectionBox = new System.Windows.Forms.ComboBox();
this.mainPanel = new System.Windows.Forms.Panel();
this.mainPanel.SuspendLayout();
this.SuspendLayout();
//
// replacedleLabel
//
this.replacedleLabel.Font = new System.Drawing.Font("Segoe UI Semibold", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.replacedleLabel.Location = new System.Drawing.Point(12, 9);
this.replacedleLabel.Name = "replacedleLabel";
this.replacedleLabel.Size = new System.Drawing.Size(289, 25);
this.replacedleLabel.TabIndex = 5;
this.replacedleLabel.Text = "WinPreplaced11 Automated Installer";
this.replacedleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// installButton
//
this.installButton.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.installButton.Location = new System.Drawing.Point(226, 69);
this.installButton.Name = "installButton";
this.installButton.Size = new System.Drawing.Size(75, 23);
this.installButton.TabIndex = 4;
this.installButton.Text = "Install";
this.installButton.UseVisualStyleBackColor = true;
this.installButton.Click += new System.EventHandler(this.InstallButtonClick);
//
// selectionBoxLabel
//
this.selectionBoxLabel.AutoSize = true;
this.selectionBoxLabel.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.selectionBoxLabel.Location = new System.Drawing.Point(12, 46);
this.selectionBoxLabel.Name = "selectionBoxLabel";
this.selectionBoxLabel.Size = new System.Drawing.Size(65, 20);
this.selectionBoxLabel.TabIndex = 6;
this.selectionBoxLabel.Text = "Channel:";
//
// selectionBox
//
this.selectionBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.selectionBox.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.selectionBox.FormattingEnabled = true;
this.selectionBox.Items.AddRange(new object[] {
"Dev",
"Beta"});
this.selectionBox.Location = new System.Drawing.Point(12, 69);
this.selectionBox.Name = "selectionBox";
this.selectionBox.Size = new System.Drawing.Size(121, 23);
this.selectionBox.TabIndex = 7;
//
// mainPanel
//
this.mainPanel.AutoSize = true;
this.mainPanel.Controls.Add(this.installButton);
this.mainPanel.Controls.Add(this.selectionBoxLabel);
this.mainPanel.Controls.Add(this.selectionBox);
this.mainPanel.Controls.Add(this.replacedleLabel);
this.mainPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.mainPanel.Location = new System.Drawing.Point(0, 0);
this.mainPanel.Name = "mainPanel";
this.mainPanel.Size = new System.Drawing.Size(313, 104);
this.mainPanel.TabIndex = 9;
//
// Form
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(313, 104);
this.Controls.Add(this.mainPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Form";
this.Text = "WinPreplaced11 Auto";
this.mainPanel.ResumeLayout(false);
this.mainPanel.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : RemoteDesktopForm.Designer.cs
License : MIT License
Project Creator : arsium
License : MIT License
Project Creator : arsium
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RemoteDesktopForm));
this.remoteDesktopContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.taskBarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.hideToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.desktopIconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.hideToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.showToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.changeWallPaperToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.labelSize = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.loadingCircle1 = new MRG.Controls.UI.LoadingCircle();
this.desktopPictureBox = new System.Windows.Forms.PictureBox();
this.formatComboBox = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.quailitySiticoneTrackBar = new ns1.SiticoneTrackBar();
this.saveWindowsButton = new Eagle_Monitor.Controls.WindowsButton();
this.closeButton = new Eagle_Monitor.Controls.WindowsButton();
this.maximizeButton = new Eagle_Monitor.Controls.WindowsButton();
this.minimizeButton = new Eagle_Monitor.Controls.WindowsButton();
this.remoteDesktopContextMenuStrip.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.desktopPictureBox)).BeginInit();
this.SuspendLayout();
//
// remoteDesktopContextMenuStrip
//
this.remoteDesktopContextMenuStrip.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.remoteDesktopContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.taskBarToolStripMenuItem,
this.desktopIconsToolStripMenuItem,
this.changeWallPaperToolStripMenuItem});
this.remoteDesktopContextMenuStrip.Name = "contextMenuStrip1";
this.remoteDesktopContextMenuStrip.Size = new System.Drawing.Size(170, 70);
//
// taskBarToolStripMenuItem
//
this.taskBarToolStripMenuItem.BackColor = System.Drawing.Color.White;
this.taskBarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.hideToolStripMenuItem,
this.showToolStripMenuItem});
this.taskBarToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.taskBarToolStripMenuItem.Name = "taskBarToolStripMenuItem";
this.taskBarToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.taskBarToolStripMenuItem.Text = "TaskBar";
//
// hideToolStripMenuItem
//
this.hideToolStripMenuItem.BackColor = System.Drawing.Color.White;
this.hideToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.hideToolStripMenuItem.Name = "hideToolStripMenuItem";
this.hideToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.hideToolStripMenuItem.Text = "Hide";
this.hideToolStripMenuItem.Click += new System.EventHandler(this.hideToolStripMenuItem_Click);
//
// showToolStripMenuItem
//
this.showToolStripMenuItem.BackColor = System.Drawing.Color.White;
this.showToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.showToolStripMenuItem.Name = "showToolStripMenuItem";
this.showToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.showToolStripMenuItem.Text = "Show";
this.showToolStripMenuItem.Click += new System.EventHandler(this.showToolStripMenuItem_Click);
//
// desktopIconsToolStripMenuItem
//
this.desktopIconsToolStripMenuItem.BackColor = System.Drawing.Color.White;
this.desktopIconsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.hideToolStripMenuItem1,
this.showToolStripMenuItem1});
this.desktopIconsToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.desktopIconsToolStripMenuItem.Name = "desktopIconsToolStripMenuItem";
this.desktopIconsToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.desktopIconsToolStripMenuItem.Text = "Desktop Icons";
//
// hideToolStripMenuItem1
//
this.hideToolStripMenuItem1.BackColor = System.Drawing.Color.White;
this.hideToolStripMenuItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.hideToolStripMenuItem1.Name = "hideToolStripMenuItem1";
this.hideToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
this.hideToolStripMenuItem1.Text = "Hide";
this.hideToolStripMenuItem1.Click += new System.EventHandler(this.hideToolStripMenuItem1_Click);
//
// showToolStripMenuItem1
//
this.showToolStripMenuItem1.BackColor = System.Drawing.Color.White;
this.showToolStripMenuItem1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.showToolStripMenuItem1.Name = "showToolStripMenuItem1";
this.showToolStripMenuItem1.Size = new System.Drawing.Size(103, 22);
this.showToolStripMenuItem1.Text = "Show";
this.showToolStripMenuItem1.Click += new System.EventHandler(this.showToolStripMenuItem1_Click);
//
// changeWallPaperToolStripMenuItem
//
this.changeWallPaperToolStripMenuItem.BackColor = System.Drawing.Color.White;
this.changeWallPaperToolStripMenuItem.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60)))));
this.changeWallPaperToolStripMenuItem.Name = "changeWallPaperToolStripMenuItem";
this.changeWallPaperToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
this.changeWallPaperToolStripMenuItem.Text = "Change WallPaper";
this.changeWallPaperToolStripMenuItem.Click += new System.EventHandler(this.changeWallPaperToolStripMenuItem_Click);
//
// pictureBox1
//
this.pictureBox1.Image = global::Eagle_Monitor.Properties.Resources.icons8_not_sending_video_frames_32;
this.pictureBox1.Location = new System.Drawing.Point(167, 61);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(24, 24);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 32;
this.pictureBox1.TabStop = false;
//
// checkBox1
//
this.checkBox1.AutoSize = true;
this.checkBox1.Location = new System.Drawing.Point(206, 65);
this.checkBox1.Name = "checkBox1";
this.checkBox1.Size = new System.Drawing.Size(67, 17);
this.checkBox1.TabIndex = 30;
this.checkBox1.Text = "Capture";
this.checkBox1.UseVisualStyleBackColor = true;
this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
//
// labelSize
//
this.labelSize.AutoSize = true;
this.labelSize.BackColor = System.Drawing.Color.Transparent;
this.labelSize.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.labelSize.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.labelSize.Location = new System.Drawing.Point(110, 11);
this.labelSize.Name = "labelSize";
this.labelSize.Size = new System.Drawing.Size(13, 13);
this.labelSize.TabIndex = 25;
this.labelSize.Text = "0";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.label3.Location = new System.Drawing.Point(28, 11);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(87, 13);
this.label3.TabIndex = 24;
this.label3.Text = "Bytes Received :";
//
// loadingCircle1
//
this.loadingCircle1.Active = false;
this.loadingCircle1.BackColor = System.Drawing.Color.Transparent;
this.loadingCircle1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.loadingCircle1.InnerCircleRadius = 6;
this.loadingCircle1.Location = new System.Drawing.Point(3, 5);
this.loadingCircle1.Name = "loadingCircle1";
this.loadingCircle1.NumberSpoke = 9;
this.loadingCircle1.OuterCircleRadius = 7;
this.loadingCircle1.RotationSpeed = 100;
this.loadingCircle1.Size = new System.Drawing.Size(28, 25);
this.loadingCircle1.SpokeThickness = 4;
this.loadingCircle1.StylePreset = MRG.Controls.UI.LoadingCircle.StylePresets.Firefox;
this.loadingCircle1.TabIndex = 23;
this.loadingCircle1.Text = "loadingCircle1";
this.loadingCircle1.Visible = false;
//
// desktopPictureBox
//
this.desktopPictureBox.ContextMenuStrip = this.remoteDesktopContextMenuStrip;
this.desktopPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
this.desktopPictureBox.Location = new System.Drawing.Point(3, 90);
this.desktopPictureBox.Name = "desktopPictureBox";
this.desktopPictureBox.Size = new System.Drawing.Size(629, 293);
this.desktopPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.desktopPictureBox.TabIndex = 4;
this.desktopPictureBox.TabStop = false;
//
// formatComboBox
//
this.formatComboBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.formatComboBox.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.formatComboBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.formatComboBox.FormattingEnabled = true;
this.formatComboBox.Items.AddRange(new object[] {
"JPEG",
"PNG",
"GIF"});
this.formatComboBox.Location = new System.Drawing.Point(61, 61);
this.formatComboBox.Name = "formatComboBox";
this.formatComboBox.Size = new System.Drawing.Size(88, 21);
this.formatComboBox.TabIndex = 3;
this.formatComboBox.Text = "JPEG";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 65);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(49, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Format :";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 38);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(109, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Quality [Only JPEG] :";
//
// quailitySiticoneTrackBar
//
this.quailitySiticoneTrackBar.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(200)))), ((int)(((byte)(207)))));
this.quailitySiticoneTrackBar.HoveredState.Parent = this.quailitySiticoneTrackBar;
this.quailitySiticoneTrackBar.Location = new System.Drawing.Point(121, 33);
this.quailitySiticoneTrackBar.Name = "quailitySiticoneTrackBar";
this.quailitySiticoneTrackBar.Size = new System.Drawing.Size(376, 23);
this.quailitySiticoneTrackBar.TabIndex = 0;
this.quailitySiticoneTrackBar.ThumbColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.quailitySiticoneTrackBar.Value = 65;
//
// saveWindowsButton
//
this.saveWindowsButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.saveWindowsButton.FlatAppearance.BorderSize = 0;
this.saveWindowsButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.saveWindowsButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.saveWindowsButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.saveWindowsButton.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.saveWindowsButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.saveWindowsButton.Location = new System.Drawing.Point(279, 60);
this.saveWindowsButton.Name = "saveWindowsButton";
this.saveWindowsButton.Size = new System.Drawing.Size(130, 23);
this.saveWindowsButton.TabIndex = 29;
this.saveWindowsButton.Text = "Save Screenshot";
this.saveWindowsButton.UseVisualStyleBackColor = false;
this.saveWindowsButton.Click += new System.EventHandler(this.saveWindowsButton_Click);
//
// closeButton
//
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.closeButton.FlatAppearance.BorderSize = 0;
this.closeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.closeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.closeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.closeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.closeButton.Location = new System.Drawing.Point(599, 0);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(33, 30);
this.closeButton.TabIndex = 28;
this.closeButton.Text = "x";
this.closeButton.UseVisualStyleBackColor = false;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// maximizeButton
//
this.maximizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.maximizeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.maximizeButton.FlatAppearance.BorderSize = 0;
this.maximizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.maximizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.maximizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.maximizeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.maximizeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.maximizeButton.Location = new System.Drawing.Point(565, 0);
this.maximizeButton.Name = "maximizeButton";
this.maximizeButton.Size = new System.Drawing.Size(33, 30);
this.maximizeButton.TabIndex = 27;
this.maximizeButton.Text = "🗖";
this.maximizeButton.UseVisualStyleBackColor = false;
this.maximizeButton.Click += new System.EventHandler(this.maximizeButton_Click);
//
// minimizeButton
//
this.minimizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.minimizeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.minimizeButton.FlatAppearance.BorderSize = 0;
this.minimizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.minimizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.minimizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.minimizeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.minimizeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.minimizeButton.Location = new System.Drawing.Point(531, 0);
this.minimizeButton.Name = "minimizeButton";
this.minimizeButton.Size = new System.Drawing.Size(33, 30);
this.minimizeButton.TabIndex = 26;
this.minimizeButton.Text = "-";
this.minimizeButton.UseVisualStyleBackColor = false;
this.minimizeButton.Click += new System.EventHandler(this.minimizeButton_Click);
//
// RemoteDesktopForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(635, 386);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.checkBox1);
this.Controls.Add(this.saveWindowsButton);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.maximizeButton);
this.Controls.Add(this.minimizeButton);
this.Controls.Add(this.labelSize);
this.Controls.Add(this.label3);
this.Controls.Add(this.loadingCircle1);
this.Controls.Add(this.desktopPictureBox);
this.Controls.Add(this.formatComboBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.quailitySiticoneTrackBar);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "RemoteDesktopForm";
this.Padding = new System.Windows.Forms.Padding(3, 90, 3, 3);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "RemoteDesktopForm";
this.Activated += new System.EventHandler(this.RemoteDesktopForm_Activated_1);
this.Deactivate += new System.EventHandler(this.RemoteDesktopForm_Deactivate_1);
this.Load += new System.EventHandler(this.RemoteDesktopForm_Load);
this.remoteDesktopContextMenuStrip.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.desktopPictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : MiscellaneousForm.Designer.cs
License : MIT License
Project Creator : arsium
License : MIT License
Project Creator : arsium
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MiscellaneousForm));
this.closeButton = new Eagle_Monitor.Controls.WindowsButton();
this.maximizeButton = new Eagle_Monitor.Controls.WindowsButton();
this.panel1 = new System.Windows.Forms.Panel();
this.label4 = new System.Windows.Forms.Label();
this.mouseToggleSwitch = new ns1.SiticoneToggleSwitch();
this.label3 = new System.Windows.Forms.Label();
this.keyboardToggleSwitch = new ns1.SiticoneToggleSwitch();
this.label2 = new System.Windows.Forms.Label();
this.BSODToggleSwitch = new ns1.SiticoneToggleSwitch();
this.label1 = new System.Windows.Forms.Label();
this.screenLockerToggleSwitch = new ns1.SiticoneToggleSwitch();
this.minimizeButton = new Eagle_Monitor.Controls.WindowsButton();
this.label5 = new System.Windows.Forms.Label();
this.privilegeComboBox = new System.Windows.Forms.ComboBox();
this.windowsButton1 = new Eagle_Monitor.Controls.WindowsButton();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// closeButton
//
this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.closeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.closeButton.FlatAppearance.BorderSize = 0;
this.closeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.closeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.closeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.closeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.closeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.closeButton.Location = new System.Drawing.Point(190, 0);
this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(33, 30);
this.closeButton.TabIndex = 26;
this.closeButton.Text = "x";
this.closeButton.UseVisualStyleBackColor = false;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// maximizeButton
//
this.maximizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.maximizeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.maximizeButton.FlatAppearance.BorderSize = 0;
this.maximizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.maximizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.maximizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.maximizeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.maximizeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.maximizeButton.Location = new System.Drawing.Point(151, 0);
this.maximizeButton.Name = "maximizeButton";
this.maximizeButton.Size = new System.Drawing.Size(33, 30);
this.maximizeButton.TabIndex = 25;
this.maximizeButton.Text = "🗖";
this.maximizeButton.UseVisualStyleBackColor = false;
this.maximizeButton.Click += new System.EventHandler(this.maximizeButton_Click);
//
// panel1
//
this.panel1.BackColor = System.Drawing.Color.White;
this.panel1.Controls.Add(this.windowsButton1);
this.panel1.Controls.Add(this.label5);
this.panel1.Controls.Add(this.privilegeComboBox);
this.panel1.Controls.Add(this.label4);
this.panel1.Controls.Add(this.mouseToggleSwitch);
this.panel1.Controls.Add(this.label3);
this.panel1.Controls.Add(this.keyboardToggleSwitch);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.BSODToggleSwitch);
this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.screenLockerToggleSwitch);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(3, 30);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(220, 243);
this.panel1.TabIndex = 0;
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(17, 131);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(89, 13);
this.label4.TabIndex = 33;
this.label4.Text = "Disable Mouse :";
//
// mouseToggleSwitch
//
this.mouseToggleSwitch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mouseToggleSwitch.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.mouseToggleSwitch.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.mouseToggleSwitch.CheckedState.InnerBorderColor = System.Drawing.Color.White;
this.mouseToggleSwitch.CheckedState.InnerColor = System.Drawing.Color.White;
this.mouseToggleSwitch.CheckedState.Parent = this.mouseToggleSwitch;
this.mouseToggleSwitch.Location = new System.Drawing.Point(6, 147);
this.mouseToggleSwitch.Name = "mouseToggleSwitch";
this.mouseToggleSwitch.ShadowDecoration.Parent = this.mouseToggleSwitch;
this.mouseToggleSwitch.Size = new System.Drawing.Size(202, 20);
this.mouseToggleSwitch.TabIndex = 32;
this.mouseToggleSwitch.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.mouseToggleSwitch.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.mouseToggleSwitch.UncheckedState.InnerBorderColor = System.Drawing.Color.White;
this.mouseToggleSwitch.UncheckedState.InnerColor = System.Drawing.Color.White;
this.mouseToggleSwitch.UncheckedState.Parent = this.mouseToggleSwitch;
this.mouseToggleSwitch.CheckedChanged += new System.EventHandler(this.mouseToggleSwitch_CheckedChanged);
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(17, 92);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(102, 13);
this.label3.TabIndex = 31;
this.label3.Text = "Disable Keyboard :";
//
// keyboardToggleSwitch
//
this.keyboardToggleSwitch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.keyboardToggleSwitch.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.keyboardToggleSwitch.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.keyboardToggleSwitch.CheckedState.InnerBorderColor = System.Drawing.Color.White;
this.keyboardToggleSwitch.CheckedState.InnerColor = System.Drawing.Color.White;
this.keyboardToggleSwitch.CheckedState.Parent = this.keyboardToggleSwitch;
this.keyboardToggleSwitch.Location = new System.Drawing.Point(6, 108);
this.keyboardToggleSwitch.Name = "keyboardToggleSwitch";
this.keyboardToggleSwitch.ShadowDecoration.Parent = this.keyboardToggleSwitch;
this.keyboardToggleSwitch.Size = new System.Drawing.Size(202, 20);
this.keyboardToggleSwitch.TabIndex = 30;
this.keyboardToggleSwitch.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.keyboardToggleSwitch.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.keyboardToggleSwitch.UncheckedState.InnerBorderColor = System.Drawing.Color.White;
this.keyboardToggleSwitch.UncheckedState.InnerColor = System.Drawing.Color.White;
this.keyboardToggleSwitch.UncheckedState.Parent = this.keyboardToggleSwitch;
this.keyboardToggleSwitch.CheckedChanged += new System.EventHandler(this.keyboardToggleSwitch_CheckedChanged);
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(17, 51);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(42, 13);
this.label2.TabIndex = 29;
this.label2.Text = "BSOD :";
//
// BSODToggleSwitch
//
this.BSODToggleSwitch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.BSODToggleSwitch.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.BSODToggleSwitch.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.BSODToggleSwitch.CheckedState.InnerBorderColor = System.Drawing.Color.White;
this.BSODToggleSwitch.CheckedState.InnerColor = System.Drawing.Color.White;
this.BSODToggleSwitch.CheckedState.Parent = this.BSODToggleSwitch;
this.BSODToggleSwitch.Location = new System.Drawing.Point(6, 67);
this.BSODToggleSwitch.Name = "BSODToggleSwitch";
this.BSODToggleSwitch.ShadowDecoration.Parent = this.BSODToggleSwitch;
this.BSODToggleSwitch.Size = new System.Drawing.Size(202, 20);
this.BSODToggleSwitch.TabIndex = 28;
this.BSODToggleSwitch.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.BSODToggleSwitch.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.BSODToggleSwitch.UncheckedState.InnerBorderColor = System.Drawing.Color.White;
this.BSODToggleSwitch.UncheckedState.InnerColor = System.Drawing.Color.White;
this.BSODToggleSwitch.UncheckedState.Parent = this.BSODToggleSwitch;
this.BSODToggleSwitch.CheckedChanged += new System.EventHandler(this.BSODToggleSwitch_CheckedChanged);
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(17, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(80, 13);
this.label1.TabIndex = 1;
this.label1.Text = "ScreenLocker :";
//
// screenLockerToggleSwitch
//
this.screenLockerToggleSwitch.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.screenLockerToggleSwitch.CheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.screenLockerToggleSwitch.CheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(94)))), ((int)(((byte)(148)))), ((int)(((byte)(255)))));
this.screenLockerToggleSwitch.CheckedState.InnerBorderColor = System.Drawing.Color.White;
this.screenLockerToggleSwitch.CheckedState.InnerColor = System.Drawing.Color.White;
this.screenLockerToggleSwitch.CheckedState.Parent = this.screenLockerToggleSwitch;
this.screenLockerToggleSwitch.Location = new System.Drawing.Point(6, 28);
this.screenLockerToggleSwitch.Name = "screenLockerToggleSwitch";
this.screenLockerToggleSwitch.ShadowDecoration.Parent = this.screenLockerToggleSwitch;
this.screenLockerToggleSwitch.Size = new System.Drawing.Size(202, 20);
this.screenLockerToggleSwitch.TabIndex = 0;
this.screenLockerToggleSwitch.UncheckedState.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.screenLockerToggleSwitch.UncheckedState.FillColor = System.Drawing.Color.FromArgb(((int)(((byte)(125)))), ((int)(((byte)(137)))), ((int)(((byte)(149)))));
this.screenLockerToggleSwitch.UncheckedState.InnerBorderColor = System.Drawing.Color.White;
this.screenLockerToggleSwitch.UncheckedState.InnerColor = System.Drawing.Color.White;
this.screenLockerToggleSwitch.UncheckedState.Parent = this.screenLockerToggleSwitch;
this.screenLockerToggleSwitch.CheckedChanged += new System.EventHandler(this.screenLockerToggleSwitch_CheckedChanged);
//
// minimizeButton
//
this.minimizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.minimizeButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.minimizeButton.FlatAppearance.BorderSize = 0;
this.minimizeButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.minimizeButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.minimizeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.minimizeButton.Font = new System.Drawing.Font("Segoe UI", 12F);
this.minimizeButton.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.minimizeButton.Location = new System.Drawing.Point(112, 0);
this.minimizeButton.Name = "minimizeButton";
this.minimizeButton.Size = new System.Drawing.Size(33, 30);
this.minimizeButton.TabIndex = 24;
this.minimizeButton.Text = "-";
this.minimizeButton.UseVisualStyleBackColor = false;
this.minimizeButton.Click += new System.EventHandler(this.minimizeButton_Click);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(17, 172);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(61, 13);
this.label5.TabIndex = 27;
this.label5.Text = "Privileges :";
//
// privilegeComboBox
//
this.privilegeComboBox.BackColor = System.Drawing.Color.White;
this.privilegeComboBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.privilegeComboBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.privilegeComboBox.FormattingEnabled = true;
this.privilegeComboBox.Items.AddRange(new object[] {
"SeCreateTokenPrivilege",
"SereplacedignPrimaryTokenPrivilege",
"SeLockMemoryPrivilege",
"SeIncreaseQuotaPrivilege",
"SeUnsolicitedInputPrivilege",
"SeMachineAccountPrivilege",
"SeTcbPrivilege",
"SeSecurityPrivilege",
"SeTakeOwnershipPrivilege",
"SeLoadDriverPrivilege",
"SeSystemProfilePrivilege",
"SeSystemtimePrivilege",
"SeProfileSingleProcessPrivilege",
"SeIncreaseBasePriorityPrivilege",
"SeCreatePagefilePrivilege",
"SeCreatePermanentPrivilege",
"SeBackupPrivilege",
"SeRestorePrivilege",
"SeShutdownPrivilege",
"SeDebugPrivilege",
"SeAuditPrivilege",
"SeSystemEnvironmentPrivilege",
"SeChangeNotifyPrivilege",
"SeRemoteShutdownPrivilege",
"SeUndockPrivilege",
"SeSyncAgentPrivilege",
"SeEnableDelegationPrivilege",
"SeManageVolumePrivilege",
"SeImpersonatePrivilege",
"SeCreateGlobalPrivilege",
"SeTrustedCredManAccessPrivilege",
"SeRelabelPrivilege",
"SeIncreaseWorkingSetPrivilege",
"SeTimeZonePrivilege",
"SeCreateSymbolicLinkPrivilege"});
this.privilegeComboBox.Location = new System.Drawing.Point(6, 188);
this.privilegeComboBox.Name = "privilegeComboBox";
this.privilegeComboBox.Size = new System.Drawing.Size(136, 21);
this.privilegeComboBox.TabIndex = 28;
//
// windowsButton1
//
this.windowsButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.windowsButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(173)))), ((int)(((byte)(239)))));
this.windowsButton1.FlatAppearance.BorderSize = 0;
this.windowsButton1.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(153)))), ((int)(((byte)(209)))));
this.windowsButton1.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(193)))), ((int)(((byte)(255)))));
this.windowsButton1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.windowsButton1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.windowsButton1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.windowsButton1.Location = new System.Drawing.Point(147, 188);
this.windowsButton1.Name = "windowsButton1";
this.windowsButton1.Size = new System.Drawing.Size(61, 21);
this.windowsButton1.TabIndex = 27;
this.windowsButton1.Text = "Get ";
this.windowsButton1.UseVisualStyleBackColor = false;
this.windowsButton1.Click += new System.EventHandler(this.windowsButton1_Click);
//
// MiscellaneousForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(226, 276);
this.Controls.Add(this.closeButton);
this.Controls.Add(this.maximizeButton);
this.Controls.Add(this.panel1);
this.Controls.Add(this.minimizeButton);
this.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "MiscellaneousForm";
this.Padding = new System.Windows.Forms.Padding(3, 30, 3, 3);
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MiscellaneousForm";
this.Load += new System.EventHandler(this.MiscellaneousForm_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
See More Examples