Here are the examples of the csharp api System.Windows.Forms.ToolTip.SetToolTip(System.Windows.Forms.Control, string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
608 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 : IceMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IceMonitorForm));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.定时任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.条件任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.btn_update = new System.Windows.Forms.Button();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.visitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.button1 = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_status = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.l_appname = new System.Windows.Forms.TextBox();
this.l_pro_path = new System.Windows.Forms.TextBox();
this.l_server_name = new System.Windows.Forms.TextBox();
this.l_node_port = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.定时任务ToolStripMenuItem,
this.条件任务ToolStripMenuItem});
this.contextMenu.Name = "contextMenuStrip1";
this.contextMenu.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// 定时任务ToolStripMenuItem
//
this.定时任务ToolStripMenuItem.Name = "定时任务ToolStripMenuItem";
this.定时任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.定时任务ToolStripMenuItem.Text = "定时任务";
this.定时任务ToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTask_Click);
//
// 条件任务ToolStripMenuItem
//
this.条件任务ToolStripMenuItem.Name = "条件任务ToolStripMenuItem";
this.条件任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.条件任务ToolStripMenuItem.Text = "条件任务";
this.条件任务ToolStripMenuItem.Click += new System.EventHandler(this.条件任务ToolStripMenuItem_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 193);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(295, 25);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(62, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(129, 25);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(62, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(212, 25);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(62, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// btn_update
//
this.btn_update.Location = new System.Drawing.Point(19, 25);
this.btn_update.Name = "btn_update";
this.btn_update.Size = new System.Drawing.Size(87, 28);
this.btn_update.TabIndex = 8;
this.btn_update.Text = "更新配置";
this.skinToolTip1.SetToolTip(this.btn_update, "更新config/***srv.xml配置");
this.btn_update.UseVisualStyleBackColor = true;
this.btn_update.Click += new System.EventHandler(this.btn_build_Click);
//
// projects
//
this.projects.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2});
this.projects.ContextMenuStrip = this.contextMenuStrip1;
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.LargeImageList = this.imageList1;
this.projects.Location = new System.Drawing.Point(452, 14);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(357, 143);
this.projects.SmallImageList = this.imageList1;
this.projects.StateImageList = this.imageList1;
this.projects.TabIndex = 20;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
//
// columnHeader2
//
this.columnHeader2.Text = "项目访问地址";
this.columnHeader2.Width = 350;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.visitToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(101, 26);
//
// visitToolStripMenuItem
//
this.visitToolStripMenuItem.Name = "visitToolStripMenuItem";
this.visitToolStripMenuItem.Size = new System.Drawing.Size(100, 22);
this.visitToolStripMenuItem.Text = "Visit";
this.visitToolStripMenuItem.Click += new System.EventHandler(this.visitToolStripMenuItem_Click);
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "yellow_light_16px.png");
//
// button1
//
this.button1.BackColor = System.Drawing.Color.White;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.button1.ForeColor = System.Drawing.Color.OrangeRed;
this.button1.Location = new System.Drawing.Point(381, 25);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(111, 28);
this.button1.TabIndex = 9;
this.button1.Text = "一键部署版本";
this.skinToolTip1.SetToolTip(this.button1, "用于程序发布新版本,一键完成发布操作");
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 176);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 331);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 301);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(39, 25);
this.label1.TabIndex = 12;
this.label1.Text = "Ice";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 223);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(65, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 13;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 194);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 168);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 158);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_update);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.l_appname);
this.groupBox1.Controls.Add(this.l_pro_path);
this.groupBox1.Controls.Add(this.l_server_name);
this.groupBox1.Controls.Add(this.l_node_port);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 165);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(406, 129);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "修改";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// l_appname
//
this.l_appname.BackColor = System.Drawing.SystemColors.Control;
this.l_appname.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_appname.Font = new System.Drawing.Font("宋体", 9F);
this.l_appname.Location = new System.Drawing.Point(99, 29);
this.l_appname.Name = "l_appname";
this.l_appname.ReadOnly = true;
this.l_appname.Size = new System.Drawing.Size(290, 14);
this.l_appname.TabIndex = 19;
//
// l_pro_path
//
this.l_pro_path.BackColor = System.Drawing.SystemColors.Control;
this.l_pro_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_pro_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_pro_path.Location = new System.Drawing.Point(99, 62);
this.l_pro_path.Name = "l_pro_path";
this.l_pro_path.ReadOnly = true;
this.l_pro_path.Size = new System.Drawing.Size(290, 14);
this.l_pro_path.TabIndex = 18;
//
// l_server_name
//
this.l_server_name.BackColor = System.Drawing.SystemColors.Control;
this.l_server_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_server_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_server_name.Location = new System.Drawing.Point(99, 96);
this.l_server_name.Name = "l_server_name";
this.l_server_name.ReadOnly = true;
this.l_server_name.Size = new System.Drawing.Size(290, 14);
this.l_server_name.TabIndex = 17;
//
// l_node_port
//
this.l_node_port.BackColor = System.Drawing.SystemColors.Control;
this.l_node_port.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_node_port.Font = new System.Drawing.Font("宋体", 9F);
this.l_node_port.Location = new System.Drawing.Point(99, 129);
this.l_node_port.Name = "l_node_port";
this.l_node_port.ReadOnly = true;
this.l_node_port.Size = new System.Drawing.Size(290, 14);
this.l_node_port.TabIndex = 16;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(29, 30);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 10;
this.label6.Text = "项目名称:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(29, 96);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 9;
this.label5.Text = "服务名称:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(29, 129);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 7;
this.label3.Text = "节点端口:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(29, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "项目路径:";
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// IceMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "IceMonitorForm";
this.Text = "MonitorWorkForm";
this.Load += new System.EventHandler(this.IceMonitorForm_Load);
this.contextMenu.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : NginxMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NginxMonitorForm));
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu3 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.CustomTimeTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConditionTaskToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.newItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.visitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.visit2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.startBtnMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.nginxpathsStart = new System.Windows.Forms.ToolStripMenuItem();
this.nginxpathcnginxconf = new System.Windows.Forms.ToolStripMenuItem();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_name = new System.Windows.Forms.TextBox();
this.l_nginx_path = new System.Windows.Forms.TextBox();
this.l_nginx_conf = new System.Windows.Forms.TextBox();
this.l_visit_url = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.button1 = new System.Windows.Forms.Button();
this.label_status = new System.Windows.Forms.Label();
this.contextMenu3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.startBtnMenu.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu3
//
this.contextMenu3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.CustomTimeTaskToolStripMenuItem,
this.ConditionTaskToolStripMenuItem1});
this.contextMenu3.Name = "contextMenuStrip1";
this.contextMenu3.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// CustomTimeTaskToolStripMenuItem
//
this.CustomTimeTaskToolStripMenuItem.Name = "CustomTimeTaskToolStripMenuItem";
this.CustomTimeTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.CustomTimeTaskToolStripMenuItem.Text = "定时任务";
this.CustomTimeTaskToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTaskToolStripMenuItem_Click);
//
// ConditionTaskToolStripMenuItem1
//
this.ConditionTaskToolStripMenuItem1.Name = "ConditionTaskToolStripMenuItem1";
this.ConditionTaskToolStripMenuItem1.Size = new System.Drawing.Size(136, 22);
this.ConditionTaskToolStripMenuItem1.Text = "条件任务";
this.ConditionTaskToolStripMenuItem1.Click += new System.EventHandler(this.条件任务ToolStripMenuItem1_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(360, 97);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(29, 12);
this.linkLabel2.TabIndex = 25;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "编辑";
this.skinToolTip1.SetToolTip(this.linkLabel2, "编辑服务器上的server.xml文件");
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// projects
//
this.projects.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader4});
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.LargeImageList = this.imageList1;
this.projects.Location = new System.Drawing.Point(397, 12);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(414, 173);
this.projects.SmallImageList = this.imageList1;
this.projects.StateImageList = this.imageList1;
this.projects.TabIndex = 22;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
this.projects.MouseUp += new System.Windows.Forms.MouseEventHandler(this.projects_MouseUp);
//
// columnHeader2
//
this.columnHeader2.Text = "访问地址";
this.columnHeader2.Width = 220;
//
// columnHeader4
//
this.columnHeader4.Text = "映射地址";
this.columnHeader4.Width = 300;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
this.imageList1.Images.SetKeyName(2, "yellow_light_16px.png");
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(359, 131);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 167);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(289, 26);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(80, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.BackColor = System.Drawing.SystemColors.Control;
this.btn_start.Location = new System.Drawing.Point(8, 26);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(76, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(207, 26);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newItemToolStripMenuItem,
this.editToolStripMenuItem,
this.deleteToolStripMenuItem,
this.toolStripSeparator2,
this.visitToolStripMenuItem,
this.visit2ToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(133, 120);
//
// newItemToolStripMenuItem
//
this.newItemToolStripMenuItem.Name = "newItemToolStripMenuItem";
this.newItemToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.newItemToolStripMenuItem.Text = "New Item";
this.newItemToolStripMenuItem.Click += new System.EventHandler(this.newItemToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.editToolStripMenuItem.Text = "Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.deleteToolStripMenuItem.Text = "Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(129, 6);
//
// visitToolStripMenuItem
//
this.visitToolStripMenuItem.Name = "visitToolStripMenuItem";
this.visitToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.visitToolStripMenuItem.Text = "Visit 1";
this.visitToolStripMenuItem.Click += new System.EventHandler(this.visitToolStripMenuItem_Click);
//
// visit2ToolStripMenuItem
//
this.visit2ToolStripMenuItem.Name = "visit2ToolStripMenuItem";
this.visit2ToolStripMenuItem.Size = new System.Drawing.Size(132, 22);
this.visit2ToolStripMenuItem.Text = "Visit 2";
this.visit2ToolStripMenuItem.Click += new System.EventHandler(this.visit2ToolStripMenuItem_Click);
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// startBtnMenu
//
this.startBtnMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.nginxpathsStart,
this.nginxpathcnginxconf});
this.startBtnMenu.Name = "startBtnMenu";
this.startBtnMenu.Size = new System.Drawing.Size(235, 48);
//
// nginxpathsStart
//
this.nginxpathsStart.Checked = true;
this.nginxpathsStart.CheckState = System.Windows.Forms.CheckState.Checked;
this.nginxpathsStart.Name = "nginxpathsStart";
this.nginxpathsStart.Size = new System.Drawing.Size(234, 22);
this.nginxpathsStart.Tag = "1";
this.nginxpathsStart.Text = "{nginx_path} -s start";
this.nginxpathsStart.Click += new System.EventHandler(this.nginxStartWayClick);
//
// nginxpathcnginxconf
//
this.nginxpathcnginxconf.Name = "nginxpathcnginxconf";
this.nginxpathcnginxconf.Size = new System.Drawing.Size(234, 22);
this.nginxpathcnginxconf.Tag = "2";
this.nginxpathcnginxconf.Text = "{nginx_path} -c {nginx_conf}";
this.nginxpathcnginxconf.Click += new System.EventHandler(this.nginxStartWayClick);
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel2);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_name);
this.groupBox1.Controls.Add(this.l_nginx_path);
this.groupBox1.Controls.Add(this.l_nginx_conf);
this.groupBox1.Controls.Add(this.l_visit_url);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(8, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 191);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_name
//
this.l_name.BackColor = System.Drawing.SystemColors.Control;
this.l_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_name.Location = new System.Drawing.Point(90, 29);
this.l_name.Name = "l_name";
this.l_name.ReadOnly = true;
this.l_name.Size = new System.Drawing.Size(263, 14);
this.l_name.TabIndex = 19;
//
// l_nginx_path
//
this.l_nginx_path.BackColor = System.Drawing.SystemColors.Control;
this.l_nginx_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_nginx_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_nginx_path.Location = new System.Drawing.Point(90, 64);
this.l_nginx_path.Name = "l_nginx_path";
this.l_nginx_path.ReadOnly = true;
this.l_nginx_path.Size = new System.Drawing.Size(263, 14);
this.l_nginx_path.TabIndex = 18;
//
// l_nginx_conf
//
this.l_nginx_conf.BackColor = System.Drawing.SystemColors.Control;
this.l_nginx_conf.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_nginx_conf.Font = new System.Drawing.Font("宋体", 9F);
this.l_nginx_conf.Location = new System.Drawing.Point(90, 96);
this.l_nginx_conf.Name = "l_nginx_conf";
this.l_nginx_conf.ReadOnly = true;
this.l_nginx_conf.Size = new System.Drawing.Size(263, 14);
this.l_nginx_conf.TabIndex = 17;
//
// l_visit_url
//
this.l_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_visit_url.Location = new System.Drawing.Point(90, 129);
this.l_visit_url.Name = "l_visit_url";
this.l_visit_url.ReadOnly = true;
this.l_visit_url.Size = new System.Drawing.Size(263, 14);
this.l_visit_url.TabIndex = 16;
//
// label6
//
this.label6.Location = new System.Drawing.Point(11, 29);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(80, 14);
this.label6.TabIndex = 10;
this.label6.Text = "Nginx Name:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(11, 95);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 14);
this.label5.TabIndex = 9;
this.label5.Text = "nginx.conf:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label3
//
this.label3.Location = new System.Drawing.Point(11, 128);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(80, 14);
this.label3.TabIndex = 7;
this.label3.Text = "Visit Url:";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(11, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 14);
this.label2.TabIndex = 0;
this.label2.Text = "nginx path:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(9, 203);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 305);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 276);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(66, 25);
this.label1.TabIndex = 13;
this.label1.Text = "Nginx";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 197);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(67, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 14;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 168);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 142);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 132);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// button1
//
this.button1.BackColor = System.Drawing.Color.Azure;
this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.button1.ForeColor = System.Drawing.Color.DarkOrange;
this.button1.Location = new System.Drawing.Point(84, 27);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(100, 26);
this.button1.TabIndex = 8;
this.button1.Text = "选择启动方式";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(6, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(98, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// NginxMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.groupBox2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "NginxMonitorForm";
this.Text = "NginxMonitorForm";
this.Load += new System.EventHandler(this.NginxMonitorForm_Load);
this.contextMenu3.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.contextMenuStrip1.ResumeLayout(false);
this.contextMenuStrip2.ResumeLayout(false);
this.startBtnMenu.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : SpringBootMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.定时任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.条件任务ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_build = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_status = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_pro_visit_url = new System.Windows.Forms.TextBox();
this.l_appname = new System.Windows.Forms.TextBox();
this.l_source_path = new System.Windows.Forms.TextBox();
this.l_ctl_path = new System.Windows.Forms.TextBox();
this.l_build_path = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.groupBox1.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu
//
this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.定时任务ToolStripMenuItem,
this.条件任务ToolStripMenuItem});
this.contextMenu.Name = "contextMenuStrip1";
this.contextMenu.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// 定时任务ToolStripMenuItem
//
this.定时任务ToolStripMenuItem.Name = "定时任务ToolStripMenuItem";
this.定时任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.定时任务ToolStripMenuItem.Text = "定时任务";
this.定时任务ToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTask_Click);
//
// 条件任务ToolStripMenuItem
//
this.条件任务ToolStripMenuItem.Name = "条件任务ToolStripMenuItem";
this.条件任务ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.条件任务ToolStripMenuItem.Text = "条件任务";
this.条件任务ToolStripMenuItem.Click += new System.EventHandler(this.条件任务ToolStripMenuItem_Click);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 106);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 193);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(273, 25);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(80, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启程序,会先停止程序然后再启动程序");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_build
//
this.btn_build.Location = new System.Drawing.Point(19, 25);
this.btn_build.Name = "btn_build";
this.btn_build.Size = new System.Drawing.Size(86, 28);
this.btn_build.TabIndex = 8;
this.btn_build.Text = "更新并编译";
this.skinToolTip1.SetToolTip(this.btn_build, "构建程序,从SVN更新最新版本并编译");
this.btn_build.UseVisualStyleBackColor = true;
this.btn_build.Click += new System.EventHandler(this.btn_build_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(121, 25);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(60, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动程序,如果程序未停止或导致重复启动");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(197, 25);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止程序");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 25);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(709, 29);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 21;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 176);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 331);
this.groupBox2.TabIndex = 6;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 12F);
this.label1.ForeColor = System.Drawing.Color.Silver;
this.label1.Location = new System.Drawing.Point(4, 305);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 21);
this.label1.TabIndex = 13;
this.label1.Text = "SpringBoot";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 101);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 223);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(67, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 15;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 194);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 21);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 168);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 158);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_build);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 19);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 83);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_pro_visit_url);
this.groupBox1.Controls.Add(this.l_appname);
this.groupBox1.Controls.Add(this.l_source_path);
this.groupBox1.Controls.Add(this.l_ctl_path);
this.groupBox1.Controls.Add(this.l_build_path);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 165);
this.groupBox1.TabIndex = 5;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_pro_visit_url
//
this.l_pro_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_pro_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_pro_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_pro_visit_url.Location = new System.Drawing.Point(444, 29);
this.l_pro_visit_url.Name = "l_pro_visit_url";
this.l_pro_visit_url.Size = new System.Drawing.Size(259, 14);
this.l_pro_visit_url.TabIndex = 20;
//
// l_appname
//
this.l_appname.BackColor = System.Drawing.SystemColors.Control;
this.l_appname.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_appname.Font = new System.Drawing.Font("宋体", 9F);
this.l_appname.Location = new System.Drawing.Point(110, 28);
this.l_appname.Name = "l_appname";
this.l_appname.ReadOnly = true;
this.l_appname.Size = new System.Drawing.Size(183, 14);
this.l_appname.TabIndex = 19;
//
// l_source_path
//
this.l_source_path.BackColor = System.Drawing.SystemColors.Control;
this.l_source_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_source_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_source_path.Location = new System.Drawing.Point(110, 59);
this.l_source_path.Name = "l_source_path";
this.l_source_path.ReadOnly = true;
this.l_source_path.Size = new System.Drawing.Size(500, 14);
this.l_source_path.TabIndex = 18;
//
// l_ctl_path
//
this.l_ctl_path.BackColor = System.Drawing.SystemColors.Control;
this.l_ctl_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_ctl_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_ctl_path.Location = new System.Drawing.Point(110, 92);
this.l_ctl_path.Name = "l_ctl_path";
this.l_ctl_path.ReadOnly = true;
this.l_ctl_path.Size = new System.Drawing.Size(500, 14);
this.l_ctl_path.TabIndex = 17;
//
// l_build_path
//
this.l_build_path.BackColor = System.Drawing.SystemColors.Control;
this.l_build_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_build_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_build_path.Location = new System.Drawing.Point(110, 128);
this.l_build_path.Name = "l_build_path";
this.l_build_path.ReadOnly = true;
this.l_build_path.Size = new System.Drawing.Size(500, 14);
this.l_build_path.TabIndex = 16;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(334, 29);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(89, 12);
this.label9.TabIndex = 13;
this.label9.Text = "项目访问地址:";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(40, 29);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(65, 12);
this.label6.TabIndex = 10;
this.label6.Text = "项目名称:";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(40, 95);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(65, 12);
this.label5.TabIndex = 9;
this.label5.Text = "控制脚本:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(40, 128);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 7;
this.label3.Text = "构建脚本:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(40, 62);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "代码路径:";
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// SpringBootMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoScroll = true;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "SpringBootMonitorForm";
this.Text = "MonitorWorkForm";
this.Load += new System.EventHandler(this.SpringBootMonitorForm_Load);
this.contextMenu.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : TomcatMonitorForm.Designer.cs
License : Apache License 2.0
Project Creator : 214175590
License : Apache License 2.0
Project Creator : 214175590
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.contextMenu2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.自定义命令ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.TimedTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConditionTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.skinToolTip1 = new CCWin.SkinToolTip(this.components);
this.linkLabel2 = new System.Windows.Forms.LinkLabel();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.projects = new CCWin.SkinControl.SkinListView();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.button5 = new System.Windows.Forms.Button();
this.btn_run = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.btn_restart = new System.Windows.Forms.Button();
this.btn_start = new System.Windows.Forms.Button();
this.btn_stop = new System.Windows.Forms.Button();
this.pic_run_state = new System.Windows.Forms.PictureBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.l_visit_url = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.l_name = new System.Windows.Forms.TextBox();
this.l_tomcat_path = new System.Windows.Forms.TextBox();
this.l_xml_path = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.groupBox4 = new System.Windows.Forms.GroupBox();
this.custom_btn = new System.Windows.Forms.LinkLabel();
this.customShellListView = new CCWin.SkinControl.SkinListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.shellView = new CCWin.SkinControl.SkinTextBox();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label_msg = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.tb_port = new System.Windows.Forms.TextBox();
this.label_status = new System.Windows.Forms.Label();
this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenu2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).BeginInit();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox4.SuspendLayout();
this.groupBox3.SuspendLayout();
this.contextMenuStrip2.SuspendLayout();
this.SuspendLayout();
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// contextMenu2
//
this.contextMenu2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.自定义命令ToolStripMenuItem,
this.toolStripSeparator1,
this.TimedTaskToolStripMenuItem,
this.ConditionTaskToolStripMenuItem});
this.contextMenu2.Name = "contextMenuStrip1";
this.contextMenu2.Size = new System.Drawing.Size(137, 76);
//
// 自定义命令ToolStripMenuItem
//
this.自定义命令ToolStripMenuItem.Name = "自定义命令ToolStripMenuItem";
this.自定义命令ToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.自定义命令ToolStripMenuItem.Text = "自定义脚本";
this.自定义命令ToolStripMenuItem.Click += new System.EventHandler(this.自定义命令ToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(133, 6);
//
// TimedTaskToolStripMenuItem
//
this.TimedTaskToolStripMenuItem.Name = "TimedTaskToolStripMenuItem";
this.TimedTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.TimedTaskToolStripMenuItem.Text = "定时任务";
this.TimedTaskToolStripMenuItem.Click += new System.EventHandler(this.CustomTimeTaskToolStripMenuItem_Click);
//
// ConditionTaskToolStripMenuItem
//
this.ConditionTaskToolStripMenuItem.Name = "ConditionTaskToolStripMenuItem";
this.ConditionTaskToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
this.ConditionTaskToolStripMenuItem.Text = "条件任务";
this.ConditionTaskToolStripMenuItem.Click += new System.EventHandler(this.ConditionTaskToolStripMenuItem_Click_1);
//
// skinToolTip1
//
this.skinToolTip1.AutoPopDelay = 5000;
this.skinToolTip1.InitialDelay = 500;
this.skinToolTip1.OwnerDraw = true;
this.skinToolTip1.ReshowDelay = 800;
this.skinToolTip1.ToolTipreplacedle = "AppMonitor";
//
// linkLabel2
//
this.linkLabel2.AutoSize = true;
this.linkLabel2.Location = new System.Drawing.Point(358, 95);
this.linkLabel2.Name = "linkLabel2";
this.linkLabel2.Size = new System.Drawing.Size(29, 12);
this.linkLabel2.TabIndex = 24;
this.linkLabel2.TabStop = true;
this.linkLabel2.Text = "编辑";
this.skinToolTip1.SetToolTip(this.linkLabel2, "编辑服务器上的server.xml文件");
this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(357, 129);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(29, 12);
this.linkLabel1.TabIndex = 23;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "访问";
this.skinToolTip1.SetToolTip(this.linkLabel1, "在默认浏览器中打开项目首页地址");
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// projects
//
this.projects.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.projects.BorderColor = System.Drawing.Color.LightGray;
this.projects.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader2,
this.columnHeader4});
this.projects.FullRowSelect = true;
this.projects.GridLines = true;
this.projects.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.projects.Location = new System.Drawing.Point(395, 13);
this.projects.MultiSelect = false;
this.projects.Name = "projects";
this.projects.OwnerDraw = true;
this.projects.RowBackColor2 = System.Drawing.Color.White;
this.projects.SelectedColor = System.Drawing.Color.SkyBlue;
this.projects.Size = new System.Drawing.Size(414, 186);
this.projects.TabIndex = 11;
this.skinToolTip1.SetToolTip(this.projects, "双击访问各个项目");
this.projects.UseCompatibleStateImageBehavior = false;
this.projects.View = System.Windows.Forms.View.Details;
this.projects.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.projects_MouseDoubleClick);
//
// columnHeader2
//
this.columnHeader2.Text = "项目访问地址";
this.columnHeader2.Width = 220;
//
// columnHeader4
//
this.columnHeader4.Text = "磁盘路径";
this.columnHeader4.Width = 300;
//
// button5
//
this.button5.Location = new System.Drawing.Point(14, 111);
this.button5.Name = "button5";
this.button5.Size = new System.Drawing.Size(81, 25);
this.button5.TabIndex = 9;
this.button5.Text = "立即检测";
this.skinToolTip1.SetToolTip(this.button5, "立即检测程序运行是否正常");
this.button5.UseVisualStyleBackColor = true;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// btn_run
//
this.btn_run.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btn_run.Enabled = false;
this.btn_run.Location = new System.Drawing.Point(631, 158);
this.btn_run.Name = "btn_run";
this.btn_run.Size = new System.Drawing.Size(65, 26);
this.btn_run.TabIndex = 9;
this.btn_run.Text = "运行";
this.skinToolTip1.SetToolTip(this.btn_run, "手动运行脚本");
this.btn_run.UseVisualStyleBackColor = true;
this.btn_run.Click += new System.EventHandler(this.btn_run_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(403, 27);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(60, 28);
this.button1.TabIndex = 21;
this.button1.Text = "修改";
this.skinToolTip1.SetToolTip(this.button1, "修改端口号");
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// btn_restart
//
this.btn_restart.Location = new System.Drawing.Point(176, 27);
this.btn_restart.Name = "btn_restart";
this.btn_restart.Size = new System.Drawing.Size(60, 28);
this.btn_restart.TabIndex = 7;
this.btn_restart.Text = "重启";
this.skinToolTip1.SetToolTip(this.btn_restart, "重启Tomcat,会先停止Tomcat然后再启动Tomcat");
this.btn_restart.UseVisualStyleBackColor = true;
this.btn_restart.Click += new System.EventHandler(this.btn_restart_Click);
//
// btn_start
//
this.btn_start.Location = new System.Drawing.Point(19, 27);
this.btn_start.Name = "btn_start";
this.btn_start.Size = new System.Drawing.Size(60, 28);
this.btn_start.TabIndex = 5;
this.btn_start.Text = "启动";
this.skinToolTip1.SetToolTip(this.btn_start, "启动Tomcat,如果Tomcat未停止或导致因重复启动而失败");
this.btn_start.UseVisualStyleBackColor = true;
this.btn_start.Click += new System.EventHandler(this.btn_start_Click);
//
// btn_stop
//
this.btn_stop.Location = new System.Drawing.Point(99, 27);
this.btn_stop.Name = "btn_stop";
this.btn_stop.Size = new System.Drawing.Size(60, 28);
this.btn_stop.TabIndex = 6;
this.btn_stop.Text = "停止";
this.skinToolTip1.SetToolTip(this.btn_stop, "停止Tomcat");
this.btn_stop.UseVisualStyleBackColor = true;
this.btn_stop.Click += new System.EventHandler(this.btn_stop_Click);
//
// pic_run_state
//
this.pic_run_state.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_48;
this.pic_run_state.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pic_run_state.Location = new System.Drawing.Point(31, 30);
this.pic_run_state.Name = "pic_run_state";
this.pic_run_state.Size = new System.Drawing.Size(48, 48);
this.pic_run_state.TabIndex = 4;
this.pic_run_state.TabStop = false;
this.skinToolTip1.SetToolTip(this.pic_run_state, "未检测");
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkLabel2);
this.groupBox1.Controls.Add(this.linkLabel1);
this.groupBox1.Controls.Add(this.l_visit_url);
this.groupBox1.Controls.Add(this.label9);
this.groupBox1.Controls.Add(this.projects);
this.groupBox1.Controls.Add(this.l_name);
this.groupBox1.Controls.Add(this.l_tomcat_path);
this.groupBox1.Controls.Add(this.l_xml_path);
this.groupBox1.Controls.Add(this.label6);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Location = new System.Drawing.Point(7, 6);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(815, 207);
this.groupBox1.TabIndex = 7;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "基本信息";
//
// l_visit_url
//
this.l_visit_url.BackColor = System.Drawing.SystemColors.Control;
this.l_visit_url.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_visit_url.Font = new System.Drawing.Font("宋体", 9F);
this.l_visit_url.Location = new System.Drawing.Point(90, 129);
this.l_visit_url.Name = "l_visit_url";
this.l_visit_url.Size = new System.Drawing.Size(261, 14);
this.l_visit_url.TabIndex = 22;
//
// label9
//
this.label9.Location = new System.Drawing.Point(11, 129);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(80, 12);
this.label9.TabIndex = 21;
this.label9.Text = "Home Url:";
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// l_name
//
this.l_name.BackColor = System.Drawing.SystemColors.Control;
this.l_name.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_name.Font = new System.Drawing.Font("宋体", 9F);
this.l_name.Location = new System.Drawing.Point(90, 27);
this.l_name.Name = "l_name";
this.l_name.ReadOnly = true;
this.l_name.Size = new System.Drawing.Size(287, 14);
this.l_name.TabIndex = 19;
//
// l_tomcat_path
//
this.l_tomcat_path.BackColor = System.Drawing.SystemColors.Control;
this.l_tomcat_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_tomcat_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_tomcat_path.Location = new System.Drawing.Point(90, 61);
this.l_tomcat_path.Name = "l_tomcat_path";
this.l_tomcat_path.ReadOnly = true;
this.l_tomcat_path.Size = new System.Drawing.Size(287, 14);
this.l_tomcat_path.TabIndex = 18;
//
// l_xml_path
//
this.l_xml_path.BackColor = System.Drawing.SystemColors.Control;
this.l_xml_path.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.l_xml_path.Font = new System.Drawing.Font("宋体", 9F);
this.l_xml_path.Location = new System.Drawing.Point(90, 94);
this.l_xml_path.Name = "l_xml_path";
this.l_xml_path.ReadOnly = true;
this.l_xml_path.Size = new System.Drawing.Size(261, 14);
this.l_xml_path.TabIndex = 17;
//
// label6
//
this.label6.Location = new System.Drawing.Point(11, 27);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(80, 12);
this.label6.TabIndex = 10;
this.label6.Text = "Tomcat名称:";
this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label5
//
this.label5.Location = new System.Drawing.Point(11, 93);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(80, 12);
this.label5.TabIndex = 9;
this.label5.Text = "server.xml:";
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label2
//
this.label2.Location = new System.Drawing.Point(11, 60);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(80, 12);
this.label2.TabIndex = 0;
this.label2.Text = "Tomcat路径:";
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// groupBox2
//
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox2.Controls.Add(this.label3);
this.groupBox2.Controls.Add(this.progressBar1);
this.groupBox2.Controls.Add(this.button5);
this.groupBox2.Controls.Add(this.groupBox4);
this.groupBox2.Controls.Add(this.groupBox3);
this.groupBox2.Controls.Add(this.pic_run_state);
this.groupBox2.Controls.Add(this.label_status);
this.groupBox2.Location = new System.Drawing.Point(8, 219);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(814, 289);
this.groupBox2.TabIndex = 8;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "状态监控";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 12F);
this.label3.ForeColor = System.Drawing.Color.Silver;
this.label3.Location = new System.Drawing.Point(4, 262);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(67, 21);
this.label3.TabIndex = 14;
this.label3.Text = "Tomcat";
//
// progressBar1
//
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
this.progressBar1.Location = new System.Drawing.Point(59, 6);
this.progressBar1.Maximum = 20;
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(758, 2);
this.progressBar1.TabIndex = 9;
this.progressBar1.Value = 20;
//
// groupBox4
//
this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox4.Controls.Add(this.custom_btn);
this.groupBox4.Controls.Add(this.customShellListView);
this.groupBox4.Controls.Add(this.shellView);
this.groupBox4.Controls.Add(this.btn_run);
this.groupBox4.Location = new System.Drawing.Point(107, 94);
this.groupBox4.Name = "groupBox4";
this.groupBox4.Size = new System.Drawing.Size(701, 188);
this.groupBox4.TabIndex = 10;
this.groupBox4.TabStop = false;
this.groupBox4.Text = "扩展功能";
//
// custom_btn
//
this.custom_btn.AutoSize = true;
this.custom_btn.LinkColor = System.Drawing.Color.Blue;
this.custom_btn.Location = new System.Drawing.Point(69, 1);
this.custom_btn.Name = "custom_btn";
this.custom_btn.Size = new System.Drawing.Size(41, 12);
this.custom_btn.TabIndex = 12;
this.custom_btn.TabStop = true;
this.custom_btn.Text = "自定义";
this.skinToolTip1.SetToolTip(this.custom_btn, "自定义Shell、Task");
this.custom_btn.MouseUp += new System.Windows.Forms.MouseEventHandler(this.button6_MouseUp);
//
// customShellListView
//
this.customShellListView.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader3});
this.customShellListView.FullRowSelect = true;
this.customShellListView.GridLines = true;
this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
this.customShellListView.Location = new System.Drawing.Point(8, 20);
this.customShellListView.MultiSelect = false;
this.customShellListView.Name = "customShellListView";
this.customShellListView.OwnerDraw = true;
this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
this.customShellListView.SelectedColor = System.Drawing.Color.SkyBlue;
this.customShellListView.Size = new System.Drawing.Size(284, 161);
this.customShellListView.TabIndex = 10;
this.customShellListView.UseCompatibleStateImageBehavior = false;
this.customShellListView.View = System.Windows.Forms.View.Details;
this.customShellListView.SelectedIndexChanged += new System.EventHandler(this.customShellListView_SelectedIndexChanged);
this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
//
// columnHeader1
//
this.columnHeader1.Text = "名称";
this.columnHeader1.Width = 150;
//
// columnHeader3
//
this.columnHeader3.Text = "类型";
this.columnHeader3.Width = 100;
//
// shellView
//
this.shellView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.shellView.BackColor = System.Drawing.Color.Transparent;
this.shellView.DownBack = null;
this.shellView.Icon = null;
this.shellView.IconIsButton = false;
this.shellView.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.IsPreplacedwordChat = '\0';
this.shellView.IsSystemPreplacedwordChar = false;
this.shellView.Lines = new string[0];
this.shellView.Location = new System.Drawing.Point(295, 20);
this.shellView.Margin = new System.Windows.Forms.Padding(0);
this.shellView.MaxLength = 32767;
this.shellView.MinimumSize = new System.Drawing.Size(28, 28);
this.shellView.MouseBack = null;
this.shellView.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
this.shellView.Multiline = true;
this.shellView.Name = "shellView";
this.shellView.NormlBack = null;
this.shellView.Padding = new System.Windows.Forms.Padding(5);
this.shellView.ReadOnly = false;
this.shellView.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.Size = new System.Drawing.Size(400, 136);
//
//
//
this.shellView.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.shellView.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.shellView.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
this.shellView.SkinTxt.Location = new System.Drawing.Point(5, 5);
this.shellView.SkinTxt.Multiline = true;
this.shellView.SkinTxt.Name = "BaseText";
this.shellView.SkinTxt.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.shellView.SkinTxt.Size = new System.Drawing.Size(390, 126);
this.shellView.SkinTxt.TabIndex = 0;
this.shellView.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.SkinTxt.WaterText = "";
this.shellView.TabIndex = 0;
this.shellView.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.shellView.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.shellView.WaterText = "";
this.shellView.WordWrap = true;
//
// groupBox3
//
this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox3.Controls.Add(this.label_msg);
this.groupBox3.Controls.Add(this.button1);
this.groupBox3.Controls.Add(this.label1);
this.groupBox3.Controls.Add(this.tb_port);
this.groupBox3.Controls.Add(this.btn_restart);
this.groupBox3.Controls.Add(this.btn_start);
this.groupBox3.Controls.Add(this.btn_stop);
this.groupBox3.Location = new System.Drawing.Point(107, 12);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(701, 76);
this.groupBox3.TabIndex = 9;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "基础功能";
//
// label_msg
//
this.label_msg.AutoSize = true;
this.label_msg.ForeColor = System.Drawing.Color.Teal;
this.label_msg.Location = new System.Drawing.Point(480, 38);
this.label_msg.Name = "label_msg";
this.label_msg.Size = new System.Drawing.Size(0, 12);
this.label_msg.TabIndex = 22;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(282, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 20;
this.label1.Text = "端口号:";
//
// tb_port
//
this.tb_port.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.tb_port.Location = new System.Drawing.Point(339, 34);
this.tb_port.Name = "tb_port";
this.tb_port.ReadOnly = true;
this.tb_port.Size = new System.Drawing.Size(55, 14);
this.tb_port.TabIndex = 8;
this.tb_port.Text = "8080";
//
// label_status
//
this.label_status.Location = new System.Drawing.Point(17, 88);
this.label_status.Name = "label_status";
this.label_status.Size = new System.Drawing.Size(79, 12);
this.label_status.TabIndex = 1;
this.label_status.Text = "检测中...";
this.label_status.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// contextMenuStrip2
//
this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2,
this.toolStripMenuItem3});
this.contextMenuStrip2.Name = "contextMenuStrip1";
this.contextMenuStrip2.Size = new System.Drawing.Size(114, 48);
//
// toolStripMenuItem2
//
this.toolStripMenuItem2.Name = "toolStripMenuItem2";
this.toolStripMenuItem2.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem2.Text = "Edit";
this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
//
// toolStripMenuItem3
//
this.toolStripMenuItem3.Name = "toolStripMenuItem3";
this.toolStripMenuItem3.Size = new System.Drawing.Size(113, 22);
this.toolStripMenuItem3.Text = "Delete";
this.toolStripMenuItem3.Click += new System.EventHandler(this.toolStripMenuItem3_Click);
//
// TomcatMonitorForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(831, 513);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.groupBox2);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "TomcatMonitorForm";
this.Text = "TomcatMonitorForm";
this.Load += new System.EventHandler(this.TomcatMonitorForm_Load);
this.contextMenu2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pic_run_state)).EndInit();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.groupBox4.ResumeLayout(false);
this.groupBox4.PerformLayout();
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.contextMenuStrip2.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : frmMain.Designer.cs
License : MIT License
Project Creator : 86Box
License : MIT License
Project Creator : 86Box
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.btnEdit = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.btnStart = new System.Windows.Forms.Button();
this.lstVMs = new System.Windows.Forms.ListView();
this.clmName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmDesc = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmPath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.cmsVM = new System.Windows.Forms.ContextMenuStrip(this.components);
this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.configureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pauseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.resetCTRLALTDELETEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.hardResetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.killToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.wipeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cloneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openConfigFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.createADesktopShortcutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.img86box = new System.Windows.Forms.ImageList(this.components);
this.btnAdd = new System.Windows.Forms.Button();
this.btnConfigure = new System.Windows.Forms.Button();
this.imgStatus = new System.Windows.Forms.ImageList(this.components);
this.btnPause = new System.Windows.Forms.Button();
this.btnCtrlAltDel = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.cmsTrayIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
this.open86BoxManagerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusBar = new System.Windows.Forms.StatusStrip();
this.lblVMCount = new System.Windows.Forms.ToolStripStatusLabel();
this.btnSettings = new System.Windows.Forms.Button();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.cmsVM.SuspendLayout();
this.cmsTrayIcon.SuspendLayout();
this.statusBar.SuspendLayout();
this.SuspendLayout();
//
// btnEdit
//
this.btnEdit.Enabled = false;
this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnEdit.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnEdit.Location = new System.Drawing.Point(58, 12);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(45, 30);
this.btnEdit.TabIndex = 1;
this.btnEdit.Text = "Edit";
this.toolTip.SetToolTip(this.btnEdit, "Edit the properties of this virtual machine");
this.btnEdit.UseVisualStyleBackColor = true;
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
//
// btnDelete
//
this.btnDelete.Enabled = false;
this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnDelete.Location = new System.Drawing.Point(109, 12);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(60, 30);
this.btnDelete.TabIndex = 2;
this.btnDelete.Text = "Remove";
this.toolTip.SetToolTip(this.btnDelete, "Remove this virtual machine");
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// btnStart
//
this.btnStart.Enabled = false;
this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnStart.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnStart.Location = new System.Drawing.Point(197, 12);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(45, 30);
this.btnStart.TabIndex = 3;
this.btnStart.Text = "Start";
this.toolTip.SetToolTip(this.btnStart, "Start this virtual machine");
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// lstVMs
//
this.lstVMs.AllowColumnReorder = true;
this.lstVMs.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.lstVMs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.clmName,
this.clmStatus,
this.clmDesc,
this.clmPath});
this.lstVMs.ContextMenuStrip = this.cmsVM;
this.lstVMs.Font = new System.Drawing.Font("Segoe UI", 10F);
this.lstVMs.FullRowSelect = true;
this.lstVMs.HideSelection = false;
this.lstVMs.Location = new System.Drawing.Point(12, 48);
this.lstVMs.Name = "lstVMs";
this.lstVMs.ShowGroups = false;
this.lstVMs.ShowItemToolTips = true;
this.lstVMs.Size = new System.Drawing.Size(660, 413);
this.lstVMs.SmallImageList = this.img86box;
this.lstVMs.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.lstVMs.TabIndex = 10;
this.lstVMs.UseCompatibleStateImageBehavior = false;
this.lstVMs.View = System.Windows.Forms.View.Details;
this.lstVMs.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lstVMs_ColumnClick);
this.lstVMs.SelectedIndexChanged += new System.EventHandler(this.lstVMs_SelectedIndexChanged);
this.lstVMs.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lstVMs_KeyDown);
this.lstVMs.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lstVMs_MouseDoubleClick);
//
// clmName
//
this.clmName.Text = "Name";
this.clmName.Width = 184;
//
// clmStatus
//
this.clmStatus.Text = "Status";
this.clmStatus.Width = 107;
//
// clmDesc
//
this.clmDesc.Text = "Description";
this.clmDesc.Width = 144;
//
// clmPath
//
this.clmPath.Text = "Path";
this.clmPath.Width = 217;
//
// cmsVM
//
this.cmsVM.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.startToolStripMenuItem,
this.configureToolStripMenuItem,
this.pauseToolStripMenuItem,
this.resetCTRLALTDELETEToolStripMenuItem,
this.hardResetToolStripMenuItem,
this.toolStripSeparator3,
this.killToolStripMenuItem,
this.wipeToolStripMenuItem,
this.toolStripSeparator1,
this.editToolStripMenuItem,
this.cloneToolStripMenuItem,
this.deleteToolStripMenuItem,
this.openFolderToolStripMenuItem,
this.openConfigFileToolStripMenuItem,
this.createADesktopShortcutToolStripMenuItem});
this.cmsVM.Name = "cmsVM";
this.cmsVM.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.cmsVM.Size = new System.Drawing.Size(210, 302);
this.cmsVM.Opening += new System.ComponentModel.CancelEventHandler(this.cmsVM_Opening);
//
// startToolStripMenuItem
//
this.startToolStripMenuItem.Name = "startToolStripMenuItem";
this.startToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.startToolStripMenuItem.Text = "Start";
this.startToolStripMenuItem.ToolTipText = "Start this virtual machine";
this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
//
// configureToolStripMenuItem
//
this.configureToolStripMenuItem.Name = "configureToolStripMenuItem";
this.configureToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.configureToolStripMenuItem.Text = "Configure";
this.configureToolStripMenuItem.ToolTipText = "Change configuration for this virtual machine";
this.configureToolStripMenuItem.Click += new System.EventHandler(this.configureToolStripMenuItem_Click);
//
// pauseToolStripMenuItem
//
this.pauseToolStripMenuItem.Name = "pauseToolStripMenuItem";
this.pauseToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.pauseToolStripMenuItem.Text = "Pause";
this.pauseToolStripMenuItem.ToolTipText = "Pause this virtual machine";
this.pauseToolStripMenuItem.Click += new System.EventHandler(this.pauseToolStripMenuItem_Click);
//
// resetCTRLALTDELETEToolStripMenuItem
//
this.resetCTRLALTDELETEToolStripMenuItem.Name = "resetCTRLALTDELETEToolStripMenuItem";
this.resetCTRLALTDELETEToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.resetCTRLALTDELETEToolStripMenuItem.Text = "Send CTRL+ALT+DEL";
this.resetCTRLALTDELETEToolStripMenuItem.ToolTipText = "Send the CTRL+ALT+DEL keystroke to this virtual machine";
this.resetCTRLALTDELETEToolStripMenuItem.Click += new System.EventHandler(this.resetCTRLALTDELETEToolStripMenuItem_Click);
//
// hardResetToolStripMenuItem
//
this.hardResetToolStripMenuItem.Name = "hardResetToolStripMenuItem";
this.hardResetToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.hardResetToolStripMenuItem.Text = "Hard reset";
this.hardResetToolStripMenuItem.ToolTipText = "Reset this virtual machine by simulating a power cycle";
this.hardResetToolStripMenuItem.Click += new System.EventHandler(this.hardResetToolStripMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(206, 6);
//
// killToolStripMenuItem
//
this.killToolStripMenuItem.Name = "killToolStripMenuItem";
this.killToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.killToolStripMenuItem.Text = "Kill";
this.killToolStripMenuItem.ToolTipText = "Kill this virtual machine";
this.killToolStripMenuItem.Click += new System.EventHandler(this.killToolStripMenuItem_Click);
//
// wipeToolStripMenuItem
//
this.wipeToolStripMenuItem.Name = "wipeToolStripMenuItem";
this.wipeToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.wipeToolStripMenuItem.Text = "Wipe";
this.wipeToolStripMenuItem.ToolTipText = "Delete configuration and nvr for this virtual machine";
this.wipeToolStripMenuItem.Click += new System.EventHandler(this.wipeToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(206, 6);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.editToolStripMenuItem.Text = "Edit";
this.editToolStripMenuItem.ToolTipText = "Edit the properties of this virtual machine";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
//
// cloneToolStripMenuItem
//
this.cloneToolStripMenuItem.Name = "cloneToolStripMenuItem";
this.cloneToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.cloneToolStripMenuItem.Text = "Clone";
this.cloneToolStripMenuItem.ToolTipText = "Clone this virtual machine";
this.cloneToolStripMenuItem.Click += new System.EventHandler(this.cloneToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.deleteToolStripMenuItem.Text = "Remove";
this.deleteToolStripMenuItem.ToolTipText = "Remove this virtual machine";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// openFolderToolStripMenuItem
//
this.openFolderToolStripMenuItem.Name = "openFolderToolStripMenuItem";
this.openFolderToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.openFolderToolStripMenuItem.Text = "Open folder in Explorer";
this.openFolderToolStripMenuItem.ToolTipText = "Open the folder for this virtual machine in Windows Explorer";
this.openFolderToolStripMenuItem.Click += new System.EventHandler(this.openFolderToolStripMenuItem_Click);
//
// openConfigFileToolStripMenuItem
//
this.openConfigFileToolStripMenuItem.Name = "openConfigFileToolStripMenuItem";
this.openConfigFileToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.openConfigFileToolStripMenuItem.Text = "Open config file";
this.openConfigFileToolStripMenuItem.ToolTipText = "Open the config file for this virtual machine";
this.openConfigFileToolStripMenuItem.Click += new System.EventHandler(this.openConfigFileToolStripMenuItem_Click);
//
// createADesktopShortcutToolStripMenuItem
//
this.createADesktopShortcutToolStripMenuItem.Name = "createADesktopShortcutToolStripMenuItem";
this.createADesktopShortcutToolStripMenuItem.Size = new System.Drawing.Size(209, 22);
this.createADesktopShortcutToolStripMenuItem.Text = "Create a desktop shortcut";
this.createADesktopShortcutToolStripMenuItem.ToolTipText = "Create a shortcut for this virtual machine on the desktop";
this.createADesktopShortcutToolStripMenuItem.Click += new System.EventHandler(this.createADesktopShortcutToolStripMenuItem_Click);
//
// img86box
//
this.img86box.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("img86box.ImageStream")));
this.img86box.TransparentColor = System.Drawing.Color.Transparent;
this.img86box.Images.SetKeyName(0, "86box_16x16.png");
this.img86box.Images.SetKeyName(1, "86box_16x16_green.png");
this.img86box.Images.SetKeyName(2, "86box_16x16_yellow.png");
//
// btnAdd
//
this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnAdd.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnAdd.Location = new System.Drawing.Point(12, 12);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(40, 30);
this.btnAdd.TabIndex = 0;
this.btnAdd.Text = "Add";
this.toolTip.SetToolTip(this.btnAdd, "Add a new or an existing virtual machine");
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnConfigure
//
this.btnConfigure.Enabled = false;
this.btnConfigure.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnConfigure.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnConfigure.Location = new System.Drawing.Point(248, 12);
this.btnConfigure.Name = "btnConfigure";
this.btnConfigure.Size = new System.Drawing.Size(70, 30);
this.btnConfigure.TabIndex = 4;
this.btnConfigure.Text = "Configure";
this.toolTip.SetToolTip(this.btnConfigure, "Change the configuration of this virtual machine");
this.btnConfigure.UseVisualStyleBackColor = true;
this.btnConfigure.Click += new System.EventHandler(this.btnConfigure_Click);
//
// imgStatus
//
this.imgStatus.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
this.imgStatus.ImageSize = new System.Drawing.Size(16, 16);
this.imgStatus.TransparentColor = System.Drawing.Color.Transparent;
//
// btnPause
//
this.btnPause.Enabled = false;
this.btnPause.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnPause.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnPause.Location = new System.Drawing.Point(324, 12);
this.btnPause.Name = "btnPause";
this.btnPause.Size = new System.Drawing.Size(55, 30);
this.btnPause.TabIndex = 5;
this.btnPause.Text = "Pause";
this.toolTip.SetToolTip(this.btnPause, "Pause this virtual machine");
this.btnPause.UseVisualStyleBackColor = true;
this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
//
// btnCtrlAltDel
//
this.btnCtrlAltDel.Enabled = false;
this.btnCtrlAltDel.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnCtrlAltDel.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnCtrlAltDel.Location = new System.Drawing.Point(385, 12);
this.btnCtrlAltDel.Name = "btnCtrlAltDel";
this.btnCtrlAltDel.Size = new System.Drawing.Size(60, 30);
this.btnCtrlAltDel.TabIndex = 6;
this.btnCtrlAltDel.Text = "C+A+D";
this.toolTip.SetToolTip(this.btnCtrlAltDel, "Send the CTRL+ALT+DEL keystroke to this virtual machine");
this.btnCtrlAltDel.UseVisualStyleBackColor = true;
this.btnCtrlAltDel.Click += new System.EventHandler(this.btnCtrlAltDel_Click);
//
// btnReset
//
this.btnReset.Enabled = false;
this.btnReset.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnReset.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnReset.Location = new System.Drawing.Point(451, 12);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(50, 30);
this.btnReset.TabIndex = 7;
this.btnReset.Text = "Reset";
this.toolTip.SetToolTip(this.btnReset, "Reset this virtual machine by simulating a power cycle");
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// trayIcon
//
this.trayIcon.ContextMenuStrip = this.cmsTrayIcon;
this.trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("trayIcon.Icon")));
this.trayIcon.Text = "86Box Manager";
this.trayIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.trayIcon_MouseDoubleClick);
//
// cmsTrayIcon
//
this.cmsTrayIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.open86BoxManagerToolStripMenuItem,
this.settingsToolStripMenuItem,
this.toolStripSeparator2,
this.exitToolStripMenuItem});
this.cmsTrayIcon.Name = "cmsVM";
this.cmsTrayIcon.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
this.cmsTrayIcon.Size = new System.Drawing.Size(189, 76);
//
// open86BoxManagerToolStripMenuItem
//
this.open86BoxManagerToolStripMenuItem.Name = "open86BoxManagerToolStripMenuItem";
this.open86BoxManagerToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.open86BoxManagerToolStripMenuItem.Text = "Show 86Box Manager";
this.open86BoxManagerToolStripMenuItem.ToolTipText = "Restore the 86Box Manager window";
this.open86BoxManagerToolStripMenuItem.Click += new System.EventHandler(this.open86BoxManagerToolStripMenuItem_Click);
//
// settingsToolStripMenuItem
//
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.settingsToolStripMenuItem.Text = "Settings";
this.settingsToolStripMenuItem.ToolTipText = "Open 86Box Manager settings";
this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(185, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(188, 22);
this.exitToolStripMenuItem.Text = "Exit";
this.exitToolStripMenuItem.ToolTipText = "Close 86Box Manager";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// statusBar
//
this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblVMCount});
this.statusBar.Location = new System.Drawing.Point(0, 473);
this.statusBar.Name = "statusBar";
this.statusBar.Size = new System.Drawing.Size(684, 22);
this.statusBar.TabIndex = 11;
this.statusBar.Text = "statusStrip1";
//
// lblVMCount
//
this.lblVMCount.BackColor = System.Drawing.Color.Transparent;
this.lblVMCount.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.lblVMCount.Name = "lblVMCount";
this.lblVMCount.Size = new System.Drawing.Size(121, 17);
this.lblVMCount.Text = "# of virtual machines:";
//
// btnSettings
//
this.btnSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSettings.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.btnSettings.Font = new System.Drawing.Font("Segoe UI", 10F);
this.btnSettings.Location = new System.Drawing.Point(607, 12);
this.btnSettings.Name = "btnSettings";
this.btnSettings.Size = new System.Drawing.Size(65, 30);
this.btnSettings.TabIndex = 8;
this.btnSettings.Text = "Settings";
this.toolTip.SetToolTip(this.btnSettings, "Open 86Box Manager settings");
this.btnSettings.UseVisualStyleBackColor = true;
this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(684, 495);
this.Controls.Add(this.statusBar);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.btnCtrlAltDel);
this.Controls.Add(this.btnPause);
this.Controls.Add(this.btnConfigure);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.lstVMs);
this.Controls.Add(this.btnSettings);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.btnDelete);
this.Controls.Add(this.btnEdit);
this.Font = new System.Drawing.Font("Segoe UI", 10F);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(4);
this.MinimumSize = new System.Drawing.Size(700, 500);
this.Name = "frmMain";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "86Box Manager";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
this.Load += new System.EventHandler(this.frmMain_Load);
this.Resize += new System.EventHandler(this.frmMain_Resize);
this.cmsVM.ResumeLayout(false);
this.cmsTrayIcon.ResumeLayout(false);
this.statusBar.ResumeLayout(false);
this.statusBar.PerformLayout();
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 : MainForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : AgentRev
License : GNU General Public License v3.0
Project Creator : AgentRev
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.TimerHoldKey = new System.Windows.Forms.Timer(this.components);
this.TimerUpdate = new System.Windows.Forms.Timer(this.components);
this.lblFoV = new System.Windows.Forms.Label();
this.TimerCheck = new System.Windows.Forms.Timer(this.components);
this.chkBeep = new System.Windows.Forms.CheckBox();
this.TimerVerif = new System.Windows.Forms.Timer(this.components);
this.btnStartGame = new System.Windows.Forms.Button();
this.numFoV = new System.Windows.Forms.NumericUpDown();
this.btnExit = new System.Windows.Forms.Button();
this.btnAbout = new System.Windows.Forms.Button();
this.btnReset = new System.Windows.Forms.Button();
this.lblVersion = new System.Windows.Forms.Label();
this.lblInstructions = new System.Windows.Forms.Label();
this.lblLink = new System.Windows.Forms.LinkLabel();
this.TimerHTTP = new System.Windows.Forms.Timer(this.components);
this.chkUpdate = new System.Windows.Forms.CheckBox();
this.lblUpdateAvail = new System.Windows.Forms.Label();
this.TimerBlink = new System.Windows.Forms.Timer(this.components);
this.btnKeyZoomOut = new System.Windows.Forms.Button();
this.btnKeyZoomIn = new System.Windows.Forms.Button();
this.lblZoomIn = new System.Windows.Forms.Label();
this.lblResetDefault = new System.Windows.Forms.Label();
this.btnKeyReset = new System.Windows.Forms.Button();
this.chkHotkeys = new System.Windows.Forms.CheckBox();
this.gbGameMode = new System.Windows.Forms.GroupBox();
this.rbSingleplayer = new System.Windows.Forms.RadioButton();
this.rbMultiplayer = new System.Windows.Forms.RadioButton();
this.ToolTipReset = new System.Windows.Forms.ToolTip(this.components);
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.numFoV)).BeginInit();
this.gbGameMode.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// TimerHoldKey
//
this.TimerHoldKey.Interval = 350;
this.TimerHoldKey.Tick += new System.EventHandler(this.TimerHoldKey_Tick);
//
// TimerUpdate
//
this.TimerUpdate.Interval = 250;
this.TimerUpdate.Tick += new System.EventHandler(this.TimerUpdate_Tick);
//
// lblFoV
//
this.lblFoV.AutoSize = true;
this.lblFoV.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblFoV.Location = new System.Drawing.Point(45, 138);
this.lblFoV.Name = "lblFoV";
this.lblFoV.Size = new System.Drawing.Size(99, 20);
this.lblFoV.TabIndex = 0;
this.lblFoV.Text = "Field of View";
//
// TimerCheck
//
this.TimerCheck.Interval = 1000;
this.TimerCheck.Tick += new System.EventHandler(this.TimerCheck_Tick);
//
// chkBeep
//
this.chkBeep.AutoSize = true;
this.chkBeep.Checked = true;
this.chkBeep.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkBeep.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkBeep.Location = new System.Drawing.Point(116, 189);
this.chkBeep.Name = "chkBeep";
this.chkBeep.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.chkBeep.Size = new System.Drawing.Size(131, 20);
this.chkBeep.TabIndex = 5;
this.chkBeep.Text = "Beep on success";
this.chkBeep.UseVisualStyleBackColor = true;
this.chkBeep.CheckedChanged += new System.EventHandler(this.chkBeep_CheckedChanged);
//
// TimerVerif
//
this.TimerVerif.Tick += new System.EventHandler(this.TimerVerif_Tick);
//
// btnStartGame
//
this.btnStartGame.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnStartGame.Location = new System.Drawing.Point(153, 83);
this.btnStartGame.MinimumSize = new System.Drawing.Size(82, 24);
this.btnStartGame.Name = "btnStartGame";
this.btnStartGame.Size = new System.Drawing.Size(93, 31);
this.btnStartGame.TabIndex = 1;
this.btnStartGame.Text = "Start Game";
this.btnStartGame.UseVisualStyleBackColor = true;
this.btnStartGame.Click += new System.EventHandler(this.btnStartGame_Click);
//
// numFoV
//
this.numFoV.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.numFoV.DecimalPlaces = 2;
this.numFoV.Enabled = false;
this.numFoV.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.numFoV.Location = new System.Drawing.Point(153, 139);
this.numFoV.Maximum = new decimal(new int[] {
90,
0,
0,
0});
this.numFoV.Minimum = new decimal(new int[] {
65,
0,
0,
0});
this.numFoV.MinimumSize = new System.Drawing.Size(58, 0);
this.numFoV.Name = "numFoV";
this.numFoV.Size = new System.Drawing.Size(70, 22);
this.numFoV.TabIndex = 2;
this.numFoV.Value = new decimal(new int[] {
65,
0,
0,
0});
this.numFoV.ValueChanged += new System.EventHandler(this.numFoV_ValueChanged);
//
// btnExit
//
this.btnExit.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnExit.Location = new System.Drawing.Point(177, 358);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(70, 30);
this.btnExit.TabIndex = 20;
this.btnExit.Text = "Exit";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnAbout
//
this.btnAbout.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnAbout.Location = new System.Drawing.Point(97, 358);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(70, 30);
this.btnAbout.TabIndex = 19;
this.btnAbout.Text = "About";
this.btnAbout.UseVisualStyleBackColor = true;
this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
//
// btnReset
//
this.btnReset.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnReset.Location = new System.Drawing.Point(223, 138);
this.btnReset.Name = "btnReset";
this.btnReset.Size = new System.Drawing.Size(24, 24);
this.btnReset.TabIndex = 3;
this.btnReset.Text = "*";
this.ToolTipReset.SetToolTip(this.btnReset, "Reset to default");
this.btnReset.UseVisualStyleBackColor = true;
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
//
// lblVersion
//
this.lblVersion.AutoSize = true;
this.lblVersion.Enabled = false;
this.lblVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblVersion.Location = new System.Drawing.Point(8, 365);
this.lblVersion.MinimumSize = new System.Drawing.Size(82, 0);
this.lblVersion.Name = "lblVersion";
this.lblVersion.Size = new System.Drawing.Size(82, 16);
this.lblVersion.TabIndex = 0;
this.lblVersion.Text = "v1.x.xxx.x";
this.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblVersion.Visible = false;
//
// lblInstructions
//
this.lblInstructions.AutoSize = true;
this.lblInstructions.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblInstructions.Location = new System.Drawing.Point(121, 239);
this.lblInstructions.Name = "lblInstructions";
this.lblInstructions.Size = new System.Drawing.Size(89, 16);
this.lblInstructions.TabIndex = 8;
this.lblInstructions.Text = "Zoom out (+1)";
//
// lblLink
//
this.lblLink.AutoSize = true;
this.lblLink.BackColor = System.Drawing.SystemColors.Control;
this.lblLink.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblLink.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
this.lblLink.Location = new System.Drawing.Point(21, 332);
this.lblLink.Margin = new System.Windows.Forms.Padding(0);
this.lblLink.MaximumSize = new System.Drawing.Size(260, 0);
this.lblLink.Name = "lblLink";
this.lblLink.Size = new System.Drawing.Size(208, 13);
this.lblLink.TabIndex = 18;
this.lblLink.TabStop = true;
this.lblLink.Text = "github.com/AgentRev/CoD-FoV-Changers";
this.lblLink.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.lblLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblLink_LinkClicked);
//
// chkUpdate
//
this.chkUpdate.AutoSize = true;
this.chkUpdate.Checked = true;
this.chkUpdate.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkUpdate.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkUpdate.Location = new System.Drawing.Point(48, 210);
this.chkUpdate.Name = "chkUpdate";
this.chkUpdate.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.chkUpdate.Size = new System.Drawing.Size(199, 20);
this.chkUpdate.TabIndex = 6;
this.chkUpdate.Text = "Notify when update available";
this.chkUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.chkUpdate.UseVisualStyleBackColor = true;
this.chkUpdate.CheckedChanged += new System.EventHandler(this.chkUpdate_CheckedChanged);
//
// lblUpdateAvail
//
this.lblUpdateAvail.BackColor = System.Drawing.SystemColors.Control;
this.lblUpdateAvail.Enabled = false;
this.lblUpdateAvail.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblUpdateAvail.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.lblUpdateAvail.Location = new System.Drawing.Point(0, 306);
this.lblUpdateAvail.Name = "lblUpdateAvail";
this.lblUpdateAvail.Size = new System.Drawing.Size(258, 13);
this.lblUpdateAvail.TabIndex = 12;
this.lblUpdateAvail.Text = "Update v1.x.xxx.x available";
this.lblUpdateAvail.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblUpdateAvail.Visible = false;
//
// TimerBlink
//
this.TimerBlink.Interval = 500;
this.TimerBlink.Tick += new System.EventHandler(this.TimerBlink_Tick);
//
// btnKeyZoomOut
//
this.btnKeyZoomOut.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnKeyZoomOut.ForeColor = System.Drawing.Color.MidnightBlue;
this.btnKeyZoomOut.Location = new System.Drawing.Point(10, 236);
this.btnKeyZoomOut.Name = "btnKeyZoomOut";
this.btnKeyZoomOut.Size = new System.Drawing.Size(108, 23);
this.btnKeyZoomOut.TabIndex = 13;
this.btnKeyZoomOut.Text = "Numpad−";
this.btnKeyZoomOut.UseVisualStyleBackColor = true;
this.btnKeyZoomOut.Click += new System.EventHandler(this.btnKeyZoomOut_Click);
//
// btnKeyZoomIn
//
this.btnKeyZoomIn.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnKeyZoomIn.ForeColor = System.Drawing.Color.MidnightBlue;
this.btnKeyZoomIn.Location = new System.Drawing.Point(10, 258);
this.btnKeyZoomIn.Name = "btnKeyZoomIn";
this.btnKeyZoomIn.Size = new System.Drawing.Size(108, 23);
this.btnKeyZoomIn.TabIndex = 14;
this.btnKeyZoomIn.Text = "Numpad+";
this.btnKeyZoomIn.UseVisualStyleBackColor = true;
this.btnKeyZoomIn.Click += new System.EventHandler(this.btnKeyZoomIn_Click);
//
// lblZoomIn
//
this.lblZoomIn.AutoSize = true;
this.lblZoomIn.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblZoomIn.Location = new System.Drawing.Point(121, 261);
this.lblZoomIn.Name = "lblZoomIn";
this.lblZoomIn.Size = new System.Drawing.Size(81, 16);
this.lblZoomIn.TabIndex = 15;
this.lblZoomIn.Text = "Zoom in (−1)";
//
// lblResetDefault
//
this.lblResetDefault.AutoSize = true;
this.lblResetDefault.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblResetDefault.Location = new System.Drawing.Point(121, 283);
this.lblResetDefault.Name = "lblResetDefault";
this.lblResetDefault.Size = new System.Drawing.Size(126, 16);
this.lblResetDefault.TabIndex = 16;
this.lblResetDefault.Text = "Reset to default (65)";
//
// btnKeyReset
//
this.btnKeyReset.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnKeyReset.ForeColor = System.Drawing.Color.MidnightBlue;
this.btnKeyReset.Location = new System.Drawing.Point(10, 280);
this.btnKeyReset.Name = "btnKeyReset";
this.btnKeyReset.Size = new System.Drawing.Size(108, 23);
this.btnKeyReset.TabIndex = 17;
this.btnKeyReset.Text = "Numpad*";
this.btnKeyReset.UseVisualStyleBackColor = true;
this.btnKeyReset.Click += new System.EventHandler(this.btnKeyReset_Click);
//
// chkHotkeys
//
this.chkHotkeys.AutoSize = true;
this.chkHotkeys.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.chkHotkeys.Location = new System.Drawing.Point(123, 168);
this.chkHotkeys.Name = "chkHotkeys";
this.chkHotkeys.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.chkHotkeys.Size = new System.Drawing.Size(124, 20);
this.chkHotkeys.TabIndex = 4;
this.chkHotkeys.Text = "Disable hotkeys";
this.chkHotkeys.UseVisualStyleBackColor = true;
this.chkHotkeys.CheckedChanged += new System.EventHandler(this.chkHotkeys_CheckedChanged);
//
// gbGameMode
//
this.gbGameMode.Controls.Add(this.rbSingleplayer);
this.gbGameMode.Controls.Add(this.rbMultiplayer);
this.gbGameMode.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.gbGameMode.Location = new System.Drawing.Point(12, 65);
this.gbGameMode.Name = "gbGameMode";
this.gbGameMode.Size = new System.Drawing.Size(128, 61);
this.gbGameMode.TabIndex = 0;
this.gbGameMode.TabStop = false;
//
// rbSingleplayer
//
this.rbSingleplayer.AutoSize = true;
this.rbSingleplayer.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.rbSingleplayer.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rbSingleplayer.Location = new System.Drawing.Point(12, 34);
this.rbSingleplayer.Name = "rbSingleplayer";
this.rbSingleplayer.Size = new System.Drawing.Size(102, 20);
this.rbSingleplayer.TabIndex = 1;
this.rbSingleplayer.Text = "Singleplayer";
this.rbSingleplayer.UseVisualStyleBackColor = true;
//
// rbMultiplayer
//
this.rbMultiplayer.AutoSize = true;
this.rbMultiplayer.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
this.rbMultiplayer.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.rbMultiplayer.Location = new System.Drawing.Point(23, 14);
this.rbMultiplayer.Name = "rbMultiplayer";
this.rbMultiplayer.Size = new System.Drawing.Size(91, 20);
this.rbMultiplayer.TabIndex = 0;
this.rbMultiplayer.Text = "Multiplayer";
this.rbMultiplayer.UseVisualStyleBackColor = true;
this.rbMultiplayer.CheckedChanged += new System.EventHandler(this.rbGameMode_CheckedChanged);
//
// pictureBox1
//
this.pictureBox1.Image = global::Ghosts_FoV_Changer.Properties.Resources.codghosts_banner;
this.pictureBox1.Location = new System.Drawing.Point(0, 0);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(258, 63);
this.pictureBox1.TabIndex = 21;
this.pictureBox1.TabStop = false;
//
// MainForm
//
this.AcceptButton = this.btnStartGame;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(258, 399);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.gbGameMode);
this.Controls.Add(this.chkHotkeys);
this.Controls.Add(this.btnKeyReset);
this.Controls.Add(this.lblResetDefault);
this.Controls.Add(this.lblZoomIn);
this.Controls.Add(this.btnKeyZoomIn);
this.Controls.Add(this.btnKeyZoomOut);
this.Controls.Add(this.lblUpdateAvail);
this.Controls.Add(this.chkUpdate);
this.Controls.Add(this.lblLink);
this.Controls.Add(this.lblInstructions);
this.Controls.Add(this.lblVersion);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.btnAbout);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.numFoV);
this.Controls.Add(this.btnStartGame);
this.Controls.Add(this.chkBeep);
this.Controls.Add(this.lblFoV);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "MainForm";
this.Text = "Ghosts FoV Changer";
this.Deactivate += new System.EventHandler(this.MainForm_Deactivate);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseClick);
((System.ComponentModel.ISupportInitialize)(this.numFoV)).EndInit();
this.gbGameMode.ResumeLayout(false);
this.gbGameMode.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
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 : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox1_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox1, "Encode Strings Inside The Protected .NET Executable To Prevent Easy String Access or to identify a function based on string.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox2_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox2, "Prevent De4dot from processing the protected .NET File.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox5_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox5, "Prevent Identifying Obfuscastor Which Obfuscasted This File and it can cause automated deobfuscastors tools to corrupt the .NET executable file.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox6_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox6, "Adding Junk Namespaces and Methods.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox7_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox7, "Control Flow Edits the program in such a way so it returns the same result and mangling the code, and it can confuse the one who are trying to read the source code.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox8_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox8, "renaming replacedembly name, methods and functions to the same name so that the one who try to decompile it and tries to identify a function or a string he can't easily.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox10_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox10, "This Protection adds junk INT Comparsion, sizeof's and float's, making it more confusing.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox11_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox11, "Prevent Decompiling .NET replacedembly by adding SuppressIldasmAttribute Attribute to it, probably you will never need this option but you can add it as an extra.");
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox12_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox12, "Encrypting Your .NET Executable Inside of another one that will gonna be decrypted in memory, but keep in mind that this are not AV Friendly.");
}
19
View Source File : ToolTip.cs
License : Mozilla Public License 2.0
Project Creator : ahyahy
License : Mozilla Public License 2.0
Project Creator : ahyahy
public void SetToolTip(Control p1, string p2)
{
M_ToolTip.SetToolTip(p1.M_Control, p2);
}
19
View Source File : Main.cs
License : MIT License
Project Creator : AhmedMinegames
License : MIT License
Project Creator : AhmedMinegames
private void checkBox13_MouseHover(object sender, EventArgs e)
{
ToolTip ShowInfo = new ToolTip();
ShowInfo.SetToolTip(checkBox13, "Convert Calls to Calli.");
}
19
View Source File : SettingsForm.Designer.cs
License : MIT License
Project Creator : AlbertMN
License : MIT License
Project Creator : AlbertMN
private void InitializeComponent() {
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
this.headingLabel = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.checkUpdates = new System.Windows.Forms.CheckBox();
this.advancedSettingsButton = new System.Windows.Forms.Button();
this.testButton = new System.Windows.Forms.Button();
this.startWithWindows = new System.Windows.Forms.CheckBox();
this.computerName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.logButton = new System.Windows.Forms.Button();
this.mainPanel = new System.Windows.Forms.Panel();
this.changelogOpen = new System.Windows.Forms.Button();
this.saveLanguageButton = new System.Windows.Forms.Button();
this.languageLabel = new System.Windows.Forms.Label();
this.programLanguage = new System.Windows.Forms.ComboBox();
this.label10 = new System.Windows.Forms.Label();
this.multiPcSupportReadMore = new System.Windows.Forms.LinkLabel();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.defaultComputer = new System.Windows.Forms.CheckBox();
this.label7 = new System.Windows.Forms.Label();
this.fileReadDelay = new System.Windows.Forms.NumericUpDown();
this.label6 = new System.Windows.Forms.Label();
this.maxDeleteFiles = new System.Windows.Forms.NumericUpDown();
this.warnDeletion = new System.Windows.Forms.CheckBox();
this.doSetupAgain = new System.Windows.Forms.Button();
this.versionInfo = new System.Windows.Forms.Label();
this.checkForUpdate = new System.Windows.Forms.Button();
this.betaProgram = new System.Windows.Forms.CheckBox();
this.fileEditedMargin = new System.Windows.Forms.NumericUpDown();
this.infoTooltip = new System.Windows.Forms.ToolTip(this.components);
this.actionErrorMessageBox = new System.Windows.Forms.CheckBox();
this.mainPanel.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.fileReadDelay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.maxDeleteFiles)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.fileEditedMargin)).BeginInit();
this.SuspendLayout();
//
// headingLabel
//
this.headingLabel.AutoSize = true;
this.headingLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.headingLabel.Location = new System.Drawing.Point(3, 2);
this.headingLabel.Name = "headingLabel";
this.headingLabel.Size = new System.Drawing.Size(175, 20);
this.headingLabel.TabIndex = 0;
this.headingLabel.Text = "overall_settings_replacedle";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(5, 202);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(92, 13);
this.label1.TabIndex = 6;
this.label1.Text = "file_edited_margin";
//
// checkUpdates
//
this.checkUpdates.AutoSize = true;
this.checkUpdates.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.checkUpdates.Location = new System.Drawing.Point(8, 114);
this.checkUpdates.Name = "checkUpdates";
this.checkUpdates.Size = new System.Drawing.Size(124, 18);
this.checkUpdates.TabIndex = 4;
this.checkUpdates.Text = "check_for_updates";
this.checkUpdates.UseVisualStyleBackColor = true;
this.checkUpdates.CheckedChanged += new System.EventHandler(this.checkUpdates_CheckedChanged);
//
// advancedSettingsButton
//
this.advancedSettingsButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.advancedSettingsButton.Location = new System.Drawing.Point(7, 283);
this.advancedSettingsButton.Name = "advancedSettingsButton";
this.advancedSettingsButton.Size = new System.Drawing.Size(171, 23);
this.advancedSettingsButton.TabIndex = 11;
this.advancedSettingsButton.Text = "advanced_settings_btn";
this.advancedSettingsButton.UseVisualStyleBackColor = true;
this.advancedSettingsButton.Click += new System.EventHandler(this.advancedSettingsButton_Click);
//
// testButton
//
this.testButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.testButton.Location = new System.Drawing.Point(7, 341);
this.testButton.Name = "testButton";
this.testButton.Size = new System.Drawing.Size(171, 23);
this.testButton.TabIndex = 13;
this.testButton.Text = "action_simulator_btn";
this.testButton.UseVisualStyleBackColor = true;
this.testButton.Click += new System.EventHandler(this.testButton_Click);
//
// startWithWindows
//
this.startWithWindows.AutoSize = true;
this.startWithWindows.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.startWithWindows.Location = new System.Drawing.Point(8, 91);
this.startWithWindows.Name = "startWithWindows";
this.startWithWindows.Size = new System.Drawing.Size(124, 18);
this.startWithWindows.TabIndex = 3;
this.startWithWindows.Text = "start_with_windows";
this.startWithWindows.UseVisualStyleBackColor = true;
this.startWithWindows.CheckedChanged += new System.EventHandler(this.startWithWindows_CheckedChanged);
//
// computerName
//
this.computerName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.computerName.Location = new System.Drawing.Point(362, 124);
this.computerName.Name = "computerName";
this.computerName.Size = new System.Drawing.Size(120, 20);
this.computerName.TabIndex = 22;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(359, 106);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(127, 13);
this.label2.TabIndex = 21;
this.label2.Text = "computer_name_field";
//
// logButton
//
this.logButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.logButton.Location = new System.Drawing.Point(7, 312);
this.logButton.Name = "logButton";
this.logButton.Size = new System.Drawing.Size(171, 23);
this.logButton.TabIndex = 12;
this.logButton.Text = "open_log_btn";
this.logButton.UseVisualStyleBackColor = true;
this.logButton.Click += new System.EventHandler(this.logButton_Click);
//
// mainPanel
//
this.mainPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.mainPanel.Controls.Add(this.actionErrorMessageBox);
this.mainPanel.Controls.Add(this.changelogOpen);
this.mainPanel.Controls.Add(this.saveLanguageButton);
this.mainPanel.Controls.Add(this.languageLabel);
this.mainPanel.Controls.Add(this.programLanguage);
this.mainPanel.Controls.Add(this.label10);
this.mainPanel.Controls.Add(this.multiPcSupportReadMore);
this.mainPanel.Controls.Add(this.label9);
this.mainPanel.Controls.Add(this.label8);
this.mainPanel.Controls.Add(this.defaultComputer);
this.mainPanel.Controls.Add(this.label7);
this.mainPanel.Controls.Add(this.fileReadDelay);
this.mainPanel.Controls.Add(this.label6);
this.mainPanel.Controls.Add(this.maxDeleteFiles);
this.mainPanel.Controls.Add(this.warnDeletion);
this.mainPanel.Controls.Add(this.doSetupAgain);
this.mainPanel.Controls.Add(this.versionInfo);
this.mainPanel.Controls.Add(this.checkForUpdate);
this.mainPanel.Controls.Add(this.betaProgram);
this.mainPanel.Controls.Add(this.fileEditedMargin);
this.mainPanel.Controls.Add(this.headingLabel);
this.mainPanel.Controls.Add(this.testButton);
this.mainPanel.Controls.Add(this.logButton);
this.mainPanel.Controls.Add(this.startWithWindows);
this.mainPanel.Controls.Add(this.computerName);
this.mainPanel.Controls.Add(this.advancedSettingsButton);
this.mainPanel.Controls.Add(this.checkUpdates);
this.mainPanel.Controls.Add(this.label1);
this.mainPanel.Controls.Add(this.label2);
this.mainPanel.Location = new System.Drawing.Point(12, 12);
this.mainPanel.Name = "mainPanel";
this.mainPanel.Size = new System.Drawing.Size(776, 426);
this.mainPanel.TabIndex = 11;
this.mainPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.mainPanel_Paint);
//
// changelogOpen
//
this.changelogOpen.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.changelogOpen.Location = new System.Drawing.Point(649, 400);
this.changelogOpen.Name = "changelogOpen";
this.changelogOpen.Size = new System.Drawing.Size(124, 23);
this.changelogOpen.TabIndex = 34;
this.changelogOpen.Text = "changelog";
this.changelogOpen.UseVisualStyleBackColor = true;
this.changelogOpen.Click += new System.EventHandler(this.changelogOpen_Click);
//
// saveLanguageButton
//
this.saveLanguageButton.Location = new System.Drawing.Point(165, 61);
this.saveLanguageButton.Name = "saveLanguageButton";
this.saveLanguageButton.Size = new System.Drawing.Size(43, 21);
this.saveLanguageButton.TabIndex = 2;
this.saveLanguageButton.Text = "save_language_btn";
this.saveLanguageButton.UseVisualStyleBackColor = true;
this.saveLanguageButton.Click += new System.EventHandler(this.saveLanguageButton_Click);
//
// languageLabel
//
this.languageLabel.AutoSize = true;
this.languageLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.languageLabel.Location = new System.Drawing.Point(4, 42);
this.languageLabel.Name = "languageLabel";
this.languageLabel.Size = new System.Drawing.Size(145, 13);
this.languageLabel.TabIndex = 33;
this.languageLabel.Text = "program_language_label";
//
// programLanguage
//
this.programLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.programLanguage.FormattingEnabled = true;
this.programLanguage.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.programLanguage.Location = new System.Drawing.Point(7, 61);
this.programLanguage.MaxDropDownItems = 15;
this.programLanguage.Name = "programLanguage";
this.programLanguage.Size = new System.Drawing.Size(154, 21);
this.programLanguage.TabIndex = 1;
this.programLanguage.Tag = "";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label10.Location = new System.Drawing.Point(488, 145);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(146, 13);
this.label10.TabIndex = 24;
this.label10.Text = "default_computer_description";
//
// multiPcSupportReadMore
//
this.multiPcSupportReadMore.AutoSize = true;
this.multiPcSupportReadMore.Location = new System.Drawing.Point(363, 79);
this.multiPcSupportReadMore.Name = "multiPcSupportReadMore";
this.multiPcSupportReadMore.Size = new System.Drawing.Size(102, 13);
this.multiPcSupportReadMore.TabIndex = 20;
this.multiPcSupportReadMore.TabStop = true;
this.multiPcSupportReadMore.Text = "multi_pc_read_more";
this.multiPcSupportReadMore.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.multiPcSupportReadMore_LinkClicked);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label9.Location = new System.Drawing.Point(362, 40);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(121, 15);
this.label9.TabIndex = 19;
this.label9.Text = "multi_pc_description";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.Location = new System.Drawing.Point(359, 14);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(128, 22);
this.label8.TabIndex = 18;
this.label8.Text = "multi_pc_replacedle";
//
// defaultComputer
//
this.defaultComputer.AutoSize = true;
this.defaultComputer.Checked = true;
this.defaultComputer.CheckState = System.Windows.Forms.CheckState.Checked;
this.defaultComputer.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.defaultComputer.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.defaultComputer.Location = new System.Drawing.Point(489, 124);
this.defaultComputer.Name = "defaultComputer";
this.defaultComputer.Size = new System.Drawing.Size(167, 18);
this.defaultComputer.TabIndex = 23;
this.defaultComputer.Text = "default_computer_checkbox";
this.defaultComputer.UseVisualStyleBackColor = true;
this.defaultComputer.CheckedChanged += new System.EventHandler(this.defaultComputer_CheckedChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.Location = new System.Drawing.Point(134, 259);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(130, 13);
this.label7.TabIndex = 10;
this.label7.Text = "file_read_delay_desc_text";
this.infoTooltip.SetToolTip(this.label7, "Sometimes the software might read a file before it has been properly synced. This" +
" setting will delay the file read x amount of seconds");
//
// fileReadDelay
//
this.fileReadDelay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.fileReadDelay.Location = new System.Drawing.Point(8, 257);
this.fileReadDelay.Maximum = new decimal(new int[] {
100000,
0,
0,
0});
this.fileReadDelay.Name = "fileReadDelay";
this.fileReadDelay.Size = new System.Drawing.Size(120, 20);
this.fileReadDelay.TabIndex = 9;
//
// label6
//
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.Location = new System.Drawing.Point(5, 241);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(78, 13);
this.label6.TabIndex = 8;
this.label6.Text = "file_read_delay";
//
// maxDeleteFiles
//
this.maxDeleteFiles.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.maxDeleteFiles.Location = new System.Drawing.Point(236, 397);
this.maxDeleteFiles.Maximum = new decimal(new int[] {
1000000,
0,
0,
0});
this.maxDeleteFiles.Name = "maxDeleteFiles";
this.maxDeleteFiles.Size = new System.Drawing.Size(46, 20);
this.maxDeleteFiles.TabIndex = 17;
this.maxDeleteFiles.Value = new decimal(new int[] {
20,
0,
0,
0});
//
// warnDeletion
//
this.warnDeletion.AutoSize = true;
this.warnDeletion.Checked = true;
this.warnDeletion.CheckState = System.Windows.Forms.CheckState.Checked;
this.warnDeletion.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.warnDeletion.Location = new System.Drawing.Point(218, 375);
this.warnDeletion.Name = "warnDeletion";
this.warnDeletion.Size = new System.Drawing.Size(127, 18);
this.warnDeletion.TabIndex = 16;
this.warnDeletion.Text = "delete_warning_text";
this.warnDeletion.UseVisualStyleBackColor = true;
this.warnDeletion.CheckedChanged += new System.EventHandler(this.warnDeletion_CheckedChanged);
//
// doSetupAgain
//
this.doSetupAgain.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.doSetupAgain.Location = new System.Drawing.Point(8, 370);
this.doSetupAgain.Name = "doSetupAgain";
this.doSetupAgain.Size = new System.Drawing.Size(171, 23);
this.doSetupAgain.TabIndex = 14;
this.doSetupAgain.Text = "do_setup_again";
this.doSetupAgain.UseVisualStyleBackColor = true;
this.doSetupAgain.Click += new System.EventHandler(this.doSetupAgain_Click);
//
// versionInfo
//
this.versionInfo.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.versionInfo.ForeColor = System.Drawing.SystemColors.AppWorkspace;
this.versionInfo.Location = new System.Drawing.Point(412, 400);
this.versionInfo.Name = "versionInfo";
this.versionInfo.Size = new System.Drawing.Size(231, 23);
this.versionInfo.TabIndex = 25;
this.versionInfo.Text = "Version x";
this.versionInfo.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// checkForUpdate
//
this.checkForUpdate.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.checkForUpdate.Location = new System.Drawing.Point(7, 400);
this.checkForUpdate.Name = "checkForUpdate";
this.checkForUpdate.Size = new System.Drawing.Size(171, 23);
this.checkForUpdate.TabIndex = 15;
this.checkForUpdate.Text = "check_for_updates_btn";
this.checkForUpdate.UseVisualStyleBackColor = true;
this.checkForUpdate.Click += new System.EventHandler(this.checkForUpdate_Click);
//
// betaProgram
//
this.betaProgram.AutoSize = true;
this.betaProgram.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.betaProgram.Location = new System.Drawing.Point(7, 162);
this.betaProgram.Name = "betaProgram";
this.betaProgram.Size = new System.Drawing.Size(119, 18);
this.betaProgram.TabIndex = 5;
this.betaProgram.Text = "join_beta_program";
this.betaProgram.UseVisualStyleBackColor = true;
this.betaProgram.CheckedChanged += new System.EventHandler(this.betaProgram_CheckedChanged);
//
// fileEditedMargin
//
this.fileEditedMargin.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.fileEditedMargin.Location = new System.Drawing.Point(8, 218);
this.fileEditedMargin.Maximum = new decimal(new int[] {
100000,
0,
0,
0});
this.fileEditedMargin.Name = "fileEditedMargin";
this.fileEditedMargin.Size = new System.Drawing.Size(120, 20);
this.fileEditedMargin.TabIndex = 7;
//
// infoTooltip
//
this.infoTooltip.Popup += new System.Windows.Forms.PopupEventHandler(this.infoTooltip_Popup);
//
// actionErrorMessageBox
//
this.actionErrorMessageBox.AutoSize = true;
this.actionErrorMessageBox.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.actionErrorMessageBox.Location = new System.Drawing.Point(8, 138);
this.actionErrorMessageBox.Name = "actionErrorMessageBox";
this.actionErrorMessageBox.Size = new System.Drawing.Size(124, 18);
this.actionErrorMessageBox.TabIndex = 35;
this.actionErrorMessageBox.Text = "action_error_message_box";
this.actionErrorMessageBox.UseVisualStyleBackColor = true;
this.actionErrorMessageBox.CheckedChanged += new System.EventHandler(this.actionErrorMessageBox_CheckedChanged);
//
// SettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.mainPanel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.Name = "SettingsForm";
this.Text = "Settings";
this.Load += new System.EventHandler(this.SettingsForm_Load);
this.mainPanel.ResumeLayout(false);
this.mainPanel.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.fileReadDelay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.maxDeleteFiles)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.fileEditedMargin)).EndInit();
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 : 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 : MainForm.Designer.cs
License : MIT License
Project Creator : AlexanderPro
License : MIT License
Project Creator : AlexanderPro
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.txtContent = new System.Windows.Forms.TextBox();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.lblTotalLines = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparatorOne = new System.Windows.Forms.ToolStripStatusLabel();
this.lblTotalChars = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparatorTwo = new System.Windows.Forms.ToolStripStatusLabel();
this.lblImageSize = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSeparatorThree = new System.Windows.Forms.ToolStripStatusLabel();
this.menuStrip = new System.Windows.Forms.MenuStrip();
this.menuItemFile = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemSaveInformationAs = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemSaveTextAs = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemSaveImageAs = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.menuItemExit = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemOptions = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAlwaysOnTop = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemFont = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemHelp = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAbout = new System.Windows.Forms.ToolStripMenuItem();
this.btnTarget = new System.Windows.Forms.Button();
this.toolTipForButton = new System.Windows.Forms.ToolTip(this.components);
this.pbContent = new System.Windows.Forms.PictureBox();
this.tabContent = new System.Windows.Forms.TabControl();
this.tabpInformation = new System.Windows.Forms.TabPage();
this.gvInformation = new System.Windows.Forms.DataGridView();
this.clmnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clmnValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabpText = new System.Windows.Forms.TabPage();
this.tabpImage = new System.Windows.Forms.TabPage();
this.btnShowHide = new System.Windows.Forms.Button();
this.statusStrip.SuspendLayout();
this.menuStrip.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pbContent)).BeginInit();
this.tabContent.SuspendLayout();
this.tabpInformation.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gvInformation)).BeginInit();
this.tabpText.SuspendLayout();
this.tabpImage.SuspendLayout();
this.SuspendLayout();
//
// txtContent
//
this.txtContent.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.txtContent.Location = new System.Drawing.Point(3, 3);
this.txtContent.Multiline = true;
this.txtContent.Name = "txtContent";
this.txtContent.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtContent.Size = new System.Drawing.Size(720, 353);
this.txtContent.TabIndex = 0;
this.txtContent.MultilineChanged += new System.EventHandler(this.txtContent_MultilineChanged);
this.txtContent.TextChanged += new System.EventHandler(this.txtContent_TextChanged);
//
// statusStrip
//
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblTotalLines,
this.toolStripSeparatorOne,
this.lblTotalChars,
this.toolStripSeparatorTwo,
this.lblImageSize,
this.toolStripSeparatorThree});
this.statusStrip.Location = new System.Drawing.Point(0, 490);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Size = new System.Drawing.Size(734, 22);
this.statusStrip.TabIndex = 4;
//
// lblTotalLines
//
this.lblTotalLines.Name = "lblTotalLines";
this.lblTotalLines.Size = new System.Drawing.Size(65, 17);
this.lblTotalLines.Text = "Total Lines:";
//
// toolStripSeparatorOne
//
this.toolStripSeparatorOne.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.toolStripSeparatorOne.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.toolStripSeparatorOne.Name = "toolStripSeparatorOne";
this.toolStripSeparatorOne.Size = new System.Drawing.Size(4, 17);
//
// lblTotalChars
//
this.lblTotalChars.Name = "lblTotalChars";
this.lblTotalChars.Size = new System.Drawing.Size(68, 17);
this.lblTotalChars.Text = "Total Chars:";
//
// toolStripSeparatorTwo
//
this.toolStripSeparatorTwo.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.toolStripSeparatorTwo.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.toolStripSeparatorTwo.Name = "toolStripSeparatorTwo";
this.toolStripSeparatorTwo.Size = new System.Drawing.Size(4, 17);
//
// lblImageSize
//
this.lblImageSize.Name = "lblImageSize";
this.lblImageSize.Size = new System.Drawing.Size(66, 17);
this.lblImageSize.Text = "Image Size:";
//
// toolStripSeparatorThree
//
this.toolStripSeparatorThree.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Right;
this.toolStripSeparatorThree.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.toolStripSeparatorThree.Name = "toolStripSeparatorThree";
this.toolStripSeparatorThree.Size = new System.Drawing.Size(4, 17);
//
// menuStrip
//
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemFile,
this.menuItemOptions,
this.menuItemHelp});
this.menuStrip.Location = new System.Drawing.Point(0, 0);
this.menuStrip.Name = "menuStrip";
this.menuStrip.Size = new System.Drawing.Size(734, 24);
this.menuStrip.TabIndex = 0;
//
// menuItemFile
//
this.menuItemFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemSaveInformationAs,
this.menuItemSaveTextAs,
this.menuItemSaveImageAs,
this.toolStripSeparator,
this.menuItemExit});
this.menuItemFile.Name = "menuItemFile";
this.menuItemFile.Size = new System.Drawing.Size(37, 20);
this.menuItemFile.Text = "File";
//
// menuItemSaveInformationAs
//
this.menuItemSaveInformationAs.Enabled = false;
this.menuItemSaveInformationAs.Name = "menuItemSaveInformationAs";
this.menuItemSaveInformationAs.Size = new System.Drawing.Size(189, 22);
this.menuItemSaveInformationAs.Text = "Save Information As...";
this.menuItemSaveInformationAs.Click += new System.EventHandler(this.menuItemSaveInformationAs_Click);
//
// menuItemSaveTextAs
//
this.menuItemSaveTextAs.Enabled = false;
this.menuItemSaveTextAs.Name = "menuItemSaveTextAs";
this.menuItemSaveTextAs.Size = new System.Drawing.Size(189, 22);
this.menuItemSaveTextAs.Text = "Save Text As...";
this.menuItemSaveTextAs.Click += new System.EventHandler(this.menuItemSaveTextAs_Click);
//
// menuItemSaveImageAs
//
this.menuItemSaveImageAs.Enabled = false;
this.menuItemSaveImageAs.Name = "menuItemSaveImageAs";
this.menuItemSaveImageAs.Size = new System.Drawing.Size(189, 22);
this.menuItemSaveImageAs.Text = "Save Image As...";
this.menuItemSaveImageAs.Click += new System.EventHandler(this.menuItemSaveImageAs_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(186, 6);
//
// menuItemExit
//
this.menuItemExit.Name = "menuItemExit";
this.menuItemExit.Size = new System.Drawing.Size(189, 22);
this.menuItemExit.Text = "Exit";
this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click);
//
// menuItemOptions
//
this.menuItemOptions.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemAlwaysOnTop,
this.menuItemFont});
this.menuItemOptions.Name = "menuItemOptions";
this.menuItemOptions.Size = new System.Drawing.Size(61, 20);
this.menuItemOptions.Text = "Options";
//
// menuItemAlwaysOnTop
//
this.menuItemAlwaysOnTop.Name = "menuItemAlwaysOnTop";
this.menuItemAlwaysOnTop.Size = new System.Drawing.Size(152, 22);
this.menuItemAlwaysOnTop.Text = "Always On Top";
this.menuItemAlwaysOnTop.Click += new System.EventHandler(this.menuItemAlwaysOnTop_Click);
//
// menuItemFont
//
this.menuItemFont.Name = "menuItemFont";
this.menuItemFont.Size = new System.Drawing.Size(152, 22);
this.menuItemFont.Text = "Font...";
this.menuItemFont.Click += new System.EventHandler(this.menuItemFont_Click);
//
// menuItemHelp
//
this.menuItemHelp.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemAbout});
this.menuItemHelp.Name = "menuItemHelp";
this.menuItemHelp.Size = new System.Drawing.Size(44, 20);
this.menuItemHelp.Text = "Help";
//
// menuItemAbout
//
this.menuItemAbout.Name = "menuItemAbout";
this.menuItemAbout.Size = new System.Drawing.Size(107, 22);
this.menuItemAbout.Text = "About";
this.menuItemAbout.Click += new System.EventHandler(this.menuItemAbout_Click);
//
// btnTarget
//
this.btnTarget.Image = ((System.Drawing.Image)(resources.GetObject("btnTarget.Image")));
this.btnTarget.Location = new System.Drawing.Point(12, 38);
this.btnTarget.Name = "btnTarget";
this.btnTarget.Size = new System.Drawing.Size(60, 60);
this.btnTarget.TabIndex = 1;
this.toolTipForButton.SetToolTip(this.btnTarget, "Find Window (drag over window)");
this.btnTarget.UseVisualStyleBackColor = true;
this.btnTarget.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnTarget_MouseDown);
//
// pbContent
//
this.pbContent.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.pbContent.Location = new System.Drawing.Point(3, 3);
this.pbContent.Name = "pbContent";
this.pbContent.Size = new System.Drawing.Size(720, 351);
this.pbContent.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pbContent.TabIndex = 4;
this.pbContent.TabStop = false;
//
// tabContent
//
this.tabContent.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.tabContent.Controls.Add(this.tabpInformation);
this.tabContent.Controls.Add(this.tabpText);
this.tabContent.Controls.Add(this.tabpImage);
this.tabContent.Location = new System.Drawing.Point(0, 104);
this.tabContent.Name = "tabContent";
this.tabContent.SelectedIndex = 0;
this.tabContent.Size = new System.Drawing.Size(734, 383);
this.tabContent.TabIndex = 3;
//
// tabpInformation
//
this.tabpInformation.Controls.Add(this.gvInformation);
this.tabpInformation.Location = new System.Drawing.Point(4, 22);
this.tabpInformation.Name = "tabpInformation";
this.tabpInformation.Size = new System.Drawing.Size(726, 357);
this.tabpInformation.TabIndex = 2;
this.tabpInformation.Text = "Information";
this.tabpInformation.UseVisualStyleBackColor = true;
//
// gvInformation
//
this.gvInformation.AllowUserToAddRows = false;
this.gvInformation.AllowUserToDeleteRows = false;
this.gvInformation.AllowUserToResizeColumns = false;
this.gvInformation.AllowUserToResizeRows = false;
this.gvInformation.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
this.gvInformation.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
this.gvInformation.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.gvInformation.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
this.gvInformation.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gvInformation.ColumnHeadersVisible = false;
this.gvInformation.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.clmnName,
this.clmnValue});
this.gvInformation.Dock = System.Windows.Forms.DockStyle.Fill;
this.gvInformation.Location = new System.Drawing.Point(0, 0);
this.gvInformation.MultiSelect = false;
this.gvInformation.Name = "gvInformation";
this.gvInformation.ReadOnly = true;
this.gvInformation.RowHeadersVisible = false;
this.gvInformation.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
this.gvInformation.ShowCellErrors = false;
this.gvInformation.ShowCellToolTips = false;
this.gvInformation.ShowEditingIcon = false;
this.gvInformation.ShowRowErrors = false;
this.gvInformation.Size = new System.Drawing.Size(726, 357);
this.gvInformation.TabIndex = 0;
this.gvInformation.TabStop = false;
//
// clmnName
//
this.clmnName.FillWeight = 50F;
this.clmnName.HeaderText = "Name";
this.clmnName.Name = "clmnName";
this.clmnName.ReadOnly = true;
//
// clmnValue
//
this.clmnValue.HeaderText = "Value";
this.clmnValue.Name = "clmnValue";
this.clmnValue.ReadOnly = true;
//
// tabpText
//
this.tabpText.Controls.Add(this.txtContent);
this.tabpText.Location = new System.Drawing.Point(4, 22);
this.tabpText.Name = "tabpText";
this.tabpText.Padding = new System.Windows.Forms.Padding(3);
this.tabpText.Size = new System.Drawing.Size(726, 357);
this.tabpText.TabIndex = 0;
this.tabpText.Text = "Text";
this.tabpText.UseVisualStyleBackColor = true;
//
// tabpImage
//
this.tabpImage.Controls.Add(this.pbContent);
this.tabpImage.Location = new System.Drawing.Point(4, 22);
this.tabpImage.Name = "tabpImage";
this.tabpImage.Padding = new System.Windows.Forms.Padding(3);
this.tabpImage.Size = new System.Drawing.Size(726, 357);
this.tabpImage.TabIndex = 1;
this.tabpImage.Text = "Image";
this.tabpImage.UseVisualStyleBackColor = true;
//
// btnShowHide
//
this.btnShowHide.Location = new System.Drawing.Point(78, 38);
this.btnShowHide.Name = "btnShowHide";
this.btnShowHide.Size = new System.Drawing.Size(60, 60);
this.btnShowHide.TabIndex = 2;
this.btnShowHide.UseVisualStyleBackColor = true;
this.btnShowHide.Visible = false;
this.btnShowHide.Click += new System.EventHandler(this.btnShowHide_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(734, 512);
this.Controls.Add(this.btnShowHide);
this.Controls.Add(this.tabContent);
this.Controls.Add(this.btnTarget);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.menuStrip);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip;
this.Name = "MainForm";
this.Text = "WindowTextExtractor";
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.menuStrip.ResumeLayout(false);
this.menuStrip.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pbContent)).EndInit();
this.tabContent.ResumeLayout(false);
this.tabpInformation.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gvInformation)).EndInit();
this.tabpText.ResumeLayout(false);
this.tabpText.PerformLayout();
this.tabpImage.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : ProgramSettingsForm.Designer.cs
License : MIT License
Project Creator : AlexanderPro
License : MIT License
Project Creator : AlexanderPro
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.btnEdit = new System.Windows.Forms.Button();
this.btnUp = new System.Windows.Forms.Button();
this.btnDown = new System.Windows.Forms.Button();
this.pnlPlugins = new System.Windows.Forms.Panel();
this.gridViewPlugin = new System.Windows.Forms.DataGridView();
this.clmPluginFile = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clmPluginExtension = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.btnDelete = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.grbListerFormHotKeys = new System.Windows.Forms.GroupBox();
this.lblListerFormPlus2 = new System.Windows.Forms.Label();
this.lblListerFormPlus1 = new System.Windows.Forms.Label();
this.cmbListerFormKey3 = new System.Windows.Forms.ComboBox();
this.cmbListerFormKey2 = new System.Windows.Forms.ComboBox();
this.cmbListerFormKey1 = new System.Windows.Forms.ComboBox();
this.grbListerForm = new System.Windows.Forms.GroupBox();
this.txtListerHeight = new System.Windows.Forms.TextBox();
this.lblWindowHeight = new System.Windows.Forms.Label();
this.txtListerWidth = new System.Windows.Forms.TextBox();
this.lblWindowWidth = new System.Windows.Forms.Label();
this.chbListerMaximized = new System.Windows.Forms.CheckBox();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.grbAutoStartProgram = new System.Windows.Forms.GroupBox();
this.chbAutoStart = new System.Windows.Forms.CheckBox();
this.tabMain = new System.Windows.Forms.TabControl();
this.tabpCommon = new System.Windows.Forms.TabPage();
this.grbPrintDialogHotKeys = new System.Windows.Forms.GroupBox();
this.lblPrintDialogPlus2 = new System.Windows.Forms.Label();
this.lblPrintDialogPlus1 = new System.Windows.Forms.Label();
this.cmbPrintDialogKey3 = new System.Windows.Forms.ComboBox();
this.cmbPrintDialogKey2 = new System.Windows.Forms.ComboBox();
this.cmbPrintDialogKey1 = new System.Windows.Forms.ComboBox();
this.grbSearchDialogHotKeys = new System.Windows.Forms.GroupBox();
this.lblSearchDialogPlus2 = new System.Windows.Forms.Label();
this.lblSearchDialogPlus1 = new System.Windows.Forms.Label();
this.cmbSearchDialogKey3 = new System.Windows.Forms.ComboBox();
this.cmbSearchDialogKey2 = new System.Windows.Forms.ComboBox();
this.cmbSearchDialogKey1 = new System.Windows.Forms.ComboBox();
this.tabpPlugin = new System.Windows.Forms.TabPage();
this.grbPlugins = new System.Windows.Forms.GroupBox();
this.btnWincmdIni = new System.Windows.Forms.Button();
this.grbPluginDefaultSettings = new System.Windows.Forms.GroupBox();
this.txtIniFile = new System.Windows.Forms.TextBox();
this.lblIniFile = new System.Windows.Forms.Label();
this.lblDot = new System.Windows.Forms.Label();
this.txtLowVersion = new System.Windows.Forms.TextBox();
this.txtHighVersion = new System.Windows.Forms.TextBox();
this.lblPluginVersion = new System.Windows.Forms.Label();
this.toolTipWincmdIni = new System.Windows.Forms.ToolTip(this.components);
this.pnlPlugins.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.gridViewPlugin)).BeginInit();
this.grbListerFormHotKeys.SuspendLayout();
this.grbListerForm.SuspendLayout();
this.grbAutoStartProgram.SuspendLayout();
this.tabMain.SuspendLayout();
this.tabpCommon.SuspendLayout();
this.grbPrintDialogHotKeys.SuspendLayout();
this.grbSearchDialogHotKeys.SuspendLayout();
this.tabpPlugin.SuspendLayout();
this.grbPlugins.SuspendLayout();
this.grbPluginDefaultSettings.SuspendLayout();
this.SuspendLayout();
//
// btnEdit
//
this.btnEdit.Location = new System.Drawing.Point(434, 304);
this.btnEdit.Name = "btnEdit";
this.btnEdit.Size = new System.Drawing.Size(86, 24);
this.btnEdit.TabIndex = 5;
this.btnEdit.Text = "Edit";
this.btnEdit.UseVisualStyleBackColor = true;
this.btnEdit.Click += new System.EventHandler(this.EditPluginClick);
//
// btnUp
//
this.btnUp.Image = global::Wlx2Explorer.Properties.Resources.Up;
this.btnUp.Location = new System.Drawing.Point(207, 304);
this.btnUp.Name = "btnUp";
this.btnUp.Size = new System.Drawing.Size(37, 24);
this.btnUp.TabIndex = 2;
this.btnUp.UseVisualStyleBackColor = true;
this.btnUp.Click += new System.EventHandler(this.UpPluginClick);
//
// btnDown
//
this.btnDown.Image = global::Wlx2Explorer.Properties.Resources.Down;
this.btnDown.Location = new System.Drawing.Point(164, 304);
this.btnDown.Name = "btnDown";
this.btnDown.Size = new System.Drawing.Size(37, 24);
this.btnDown.TabIndex = 1;
this.btnDown.UseVisualStyleBackColor = true;
this.btnDown.Click += new System.EventHandler(this.DownPluginClick);
//
// pnlPlugins
//
this.pnlPlugins.BackColor = System.Drawing.SystemColors.ControlLight;
this.pnlPlugins.Controls.Add(this.gridViewPlugin);
this.pnlPlugins.Location = new System.Drawing.Point(10, 19);
this.pnlPlugins.Name = "pnlPlugins";
this.pnlPlugins.Padding = new System.Windows.Forms.Padding(1);
this.pnlPlugins.Size = new System.Drawing.Size(510, 267);
this.pnlPlugins.TabIndex = 8;
//
// gridViewPlugin
//
this.gridViewPlugin.AllowUserToAddRows = false;
this.gridViewPlugin.AllowUserToDeleteRows = false;
this.gridViewPlugin.AllowUserToResizeColumns = false;
this.gridViewPlugin.AllowUserToResizeRows = false;
this.gridViewPlugin.BackgroundColor = System.Drawing.SystemColors.ControlLightLight;
this.gridViewPlugin.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.gridViewPlugin.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.gridViewPlugin.ColumnHeadersVisible = false;
this.gridViewPlugin.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.clmPluginFile,
this.clmPluginExtension});
this.gridViewPlugin.Dock = System.Windows.Forms.DockStyle.Fill;
this.gridViewPlugin.GridColor = System.Drawing.SystemColors.Control;
this.gridViewPlugin.Location = new System.Drawing.Point(1, 1);
this.gridViewPlugin.MultiSelect = false;
this.gridViewPlugin.Name = "gridViewPlugin";
this.gridViewPlugin.RowHeadersVisible = false;
this.gridViewPlugin.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.gridViewPlugin.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridViewPlugin.Size = new System.Drawing.Size(508, 265);
this.gridViewPlugin.TabIndex = 0;
this.gridViewPlugin.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.PluginListDoubleClick);
//
// clmPluginFile
//
this.clmPluginFile.HeaderText = "";
this.clmPluginFile.Name = "clmPluginFile";
this.clmPluginFile.ReadOnly = true;
//
// clmPluginExtension
//
this.clmPluginExtension.HeaderText = "";
this.clmPluginExtension.Name = "clmPluginExtension";
this.clmPluginExtension.ReadOnly = true;
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(342, 304);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(86, 24);
this.btnDelete.TabIndex = 4;
this.btnDelete.Text = "Delete";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.DeletePluginClick);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(250, 304);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(86, 24);
this.btnAdd.TabIndex = 3;
this.btnAdd.Text = "Add";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.AddPluginClick);
//
// grbListerFormHotKeys
//
this.grbListerFormHotKeys.Controls.Add(this.lblListerFormPlus2);
this.grbListerFormHotKeys.Controls.Add(this.lblListerFormPlus1);
this.grbListerFormHotKeys.Controls.Add(this.cmbListerFormKey3);
this.grbListerFormHotKeys.Controls.Add(this.cmbListerFormKey2);
this.grbListerFormHotKeys.Controls.Add(this.cmbListerFormKey1);
this.grbListerFormHotKeys.Location = new System.Drawing.Point(8, 228);
this.grbListerFormHotKeys.Name = "grbListerFormHotKeys";
this.grbListerFormHotKeys.Size = new System.Drawing.Size(531, 82);
this.grbListerFormHotKeys.TabIndex = 2;
this.grbListerFormHotKeys.TabStop = false;
this.grbListerFormHotKeys.Text = "Show lister form hot keys";
//
// lblListerFormPlus2
//
this.lblListerFormPlus2.AutoSize = true;
this.lblListerFormPlus2.Location = new System.Drawing.Point(283, 37);
this.lblListerFormPlus2.Name = "lblListerFormPlus2";
this.lblListerFormPlus2.Size = new System.Drawing.Size(13, 13);
this.lblListerFormPlus2.TabIndex = 3;
this.lblListerFormPlus2.Text = "+";
//
// lblListerFormPlus1
//
this.lblListerFormPlus1.AutoSize = true;
this.lblListerFormPlus1.Location = new System.Drawing.Point(134, 37);
this.lblListerFormPlus1.Name = "lblListerFormPlus1";
this.lblListerFormPlus1.Size = new System.Drawing.Size(13, 13);
this.lblListerFormPlus1.TabIndex = 1;
this.lblListerFormPlus1.Text = "+";
//
// cmbListerFormKey3
//
this.cmbListerFormKey3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbListerFormKey3.FormattingEnabled = true;
this.cmbListerFormKey3.Location = new System.Drawing.Point(313, 34);
this.cmbListerFormKey3.Name = "cmbListerFormKey3";
this.cmbListerFormKey3.Size = new System.Drawing.Size(101, 21);
this.cmbListerFormKey3.TabIndex = 4;
//
// cmbListerFormKey2
//
this.cmbListerFormKey2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbListerFormKey2.FormattingEnabled = true;
this.cmbListerFormKey2.Location = new System.Drawing.Point(164, 34);
this.cmbListerFormKey2.Name = "cmbListerFormKey2";
this.cmbListerFormKey2.Size = new System.Drawing.Size(101, 21);
this.cmbListerFormKey2.TabIndex = 2;
//
// cmbListerFormKey1
//
this.cmbListerFormKey1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbListerFormKey1.FormattingEnabled = true;
this.cmbListerFormKey1.Location = new System.Drawing.Point(16, 34);
this.cmbListerFormKey1.Name = "cmbListerFormKey1";
this.cmbListerFormKey1.Size = new System.Drawing.Size(101, 21);
this.cmbListerFormKey1.TabIndex = 0;
//
// grbListerForm
//
this.grbListerForm.Controls.Add(this.txtListerHeight);
this.grbListerForm.Controls.Add(this.lblWindowHeight);
this.grbListerForm.Controls.Add(this.txtListerWidth);
this.grbListerForm.Controls.Add(this.lblWindowWidth);
this.grbListerForm.Controls.Add(this.chbListerMaximized);
this.grbListerForm.Location = new System.Drawing.Point(8, 94);
this.grbListerForm.Name = "grbListerForm";
this.grbListerForm.Size = new System.Drawing.Size(531, 128);
this.grbListerForm.TabIndex = 1;
this.grbListerForm.TabStop = false;
this.grbListerForm.Text = "Lister form";
//
// txtListerHeight
//
this.txtListerHeight.Location = new System.Drawing.Point(96, 87);
this.txtListerHeight.Name = "txtListerHeight";
this.txtListerHeight.Size = new System.Drawing.Size(100, 20);
this.txtListerHeight.TabIndex = 4;
//
// lblWindowHeight
//
this.lblWindowHeight.AutoSize = true;
this.lblWindowHeight.Location = new System.Drawing.Point(13, 90);
this.lblWindowHeight.Name = "lblWindowHeight";
this.lblWindowHeight.Size = new System.Drawing.Size(81, 13);
this.lblWindowHeight.TabIndex = 3;
this.lblWindowHeight.Text = "Window height:";
//
// txtListerWidth
//
this.txtListerWidth.Location = new System.Drawing.Point(96, 61);
this.txtListerWidth.Name = "txtListerWidth";
this.txtListerWidth.Size = new System.Drawing.Size(100, 20);
this.txtListerWidth.TabIndex = 2;
//
// lblWindowWidth
//
this.lblWindowWidth.AutoSize = true;
this.lblWindowWidth.Location = new System.Drawing.Point(13, 64);
this.lblWindowWidth.Name = "lblWindowWidth";
this.lblWindowWidth.Size = new System.Drawing.Size(77, 13);
this.lblWindowWidth.TabIndex = 1;
this.lblWindowWidth.Text = "Window width:";
//
// chbListerMaximized
//
this.chbListerMaximized.AutoSize = true;
this.chbListerMaximized.Location = new System.Drawing.Point(16, 31);
this.chbListerMaximized.Name = "chbListerMaximized";
this.chbListerMaximized.Size = new System.Drawing.Size(108, 17);
this.chbListerMaximized.TabIndex = 0;
this.chbListerMaximized.Text = "Maximize window";
this.chbListerMaximized.UseVisualStyleBackColor = true;
this.chbListerMaximized.CheckedChanged += new System.EventHandler(this.MaximizeWindowCheckedChanged);
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(354, 542);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(86, 35);
this.btnOk.TabIndex = 0;
this.btnOk.Text = "Ok";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.OkClick);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(446, 542);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(86, 35);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.CancelClick);
//
// grbAutoStartProgram
//
this.grbAutoStartProgram.Controls.Add(this.chbAutoStart);
this.grbAutoStartProgram.Location = new System.Drawing.Point(8, 6);
this.grbAutoStartProgram.Name = "grbAutoStartProgram";
this.grbAutoStartProgram.Size = new System.Drawing.Size(531, 82);
this.grbAutoStartProgram.TabIndex = 0;
this.grbAutoStartProgram.TabStop = false;
this.grbAutoStartProgram.Text = "Auto start";
//
// chbAutoStart
//
this.chbAutoStart.AutoSize = true;
this.chbAutoStart.Location = new System.Drawing.Point(16, 36);
this.chbAutoStart.Name = "chbAutoStart";
this.chbAutoStart.Size = new System.Drawing.Size(246, 17);
this.chbAutoStart.TabIndex = 0;
this.chbAutoStart.Text = "Run program at Windows startup (current user)";
this.chbAutoStart.UseVisualStyleBackColor = true;
//
// tabMain
//
this.tabMain.Controls.Add(this.tabpCommon);
this.tabMain.Controls.Add(this.tabpPlugin);
this.tabMain.Dock = System.Windows.Forms.DockStyle.Top;
this.tabMain.Location = new System.Drawing.Point(0, 0);
this.tabMain.Name = "tabMain";
this.tabMain.SelectedIndex = 0;
this.tabMain.Size = new System.Drawing.Size(555, 523);
this.tabMain.TabIndex = 0;
//
// tabpCommon
//
this.tabpCommon.Controls.Add(this.grbPrintDialogHotKeys);
this.tabpCommon.Controls.Add(this.grbSearchDialogHotKeys);
this.tabpCommon.Controls.Add(this.grbAutoStartProgram);
this.tabpCommon.Controls.Add(this.grbListerFormHotKeys);
this.tabpCommon.Controls.Add(this.grbListerForm);
this.tabpCommon.Location = new System.Drawing.Point(4, 22);
this.tabpCommon.Name = "tabpCommon";
this.tabpCommon.Padding = new System.Windows.Forms.Padding(3);
this.tabpCommon.Size = new System.Drawing.Size(547, 497);
this.tabpCommon.TabIndex = 0;
this.tabpCommon.Text = "Common";
this.tabpCommon.UseVisualStyleBackColor = true;
//
// grbPrintDialogHotKeys
//
this.grbPrintDialogHotKeys.Controls.Add(this.lblPrintDialogPlus2);
this.grbPrintDialogHotKeys.Controls.Add(this.lblPrintDialogPlus1);
this.grbPrintDialogHotKeys.Controls.Add(this.cmbPrintDialogKey3);
this.grbPrintDialogHotKeys.Controls.Add(this.cmbPrintDialogKey2);
this.grbPrintDialogHotKeys.Controls.Add(this.cmbPrintDialogKey1);
this.grbPrintDialogHotKeys.Location = new System.Drawing.Point(8, 404);
this.grbPrintDialogHotKeys.Name = "grbPrintDialogHotKeys";
this.grbPrintDialogHotKeys.Size = new System.Drawing.Size(531, 82);
this.grbPrintDialogHotKeys.TabIndex = 4;
this.grbPrintDialogHotKeys.TabStop = false;
this.grbPrintDialogHotKeys.Text = "Show print dialog hot keys";
//
// lblPrintDialogPlus2
//
this.lblPrintDialogPlus2.AutoSize = true;
this.lblPrintDialogPlus2.Location = new System.Drawing.Point(283, 37);
this.lblPrintDialogPlus2.Name = "lblPrintDialogPlus2";
this.lblPrintDialogPlus2.Size = new System.Drawing.Size(13, 13);
this.lblPrintDialogPlus2.TabIndex = 3;
this.lblPrintDialogPlus2.Text = "+";
//
// lblPrintDialogPlus1
//
this.lblPrintDialogPlus1.AutoSize = true;
this.lblPrintDialogPlus1.Location = new System.Drawing.Point(134, 37);
this.lblPrintDialogPlus1.Name = "lblPrintDialogPlus1";
this.lblPrintDialogPlus1.Size = new System.Drawing.Size(13, 13);
this.lblPrintDialogPlus1.TabIndex = 1;
this.lblPrintDialogPlus1.Text = "+";
//
// cmbPrintDialogKey3
//
this.cmbPrintDialogKey3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbPrintDialogKey3.FormattingEnabled = true;
this.cmbPrintDialogKey3.Location = new System.Drawing.Point(313, 34);
this.cmbPrintDialogKey3.Name = "cmbPrintDialogKey3";
this.cmbPrintDialogKey3.Size = new System.Drawing.Size(101, 21);
this.cmbPrintDialogKey3.TabIndex = 4;
//
// cmbPrintDialogKey2
//
this.cmbPrintDialogKey2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbPrintDialogKey2.FormattingEnabled = true;
this.cmbPrintDialogKey2.Location = new System.Drawing.Point(164, 34);
this.cmbPrintDialogKey2.Name = "cmbPrintDialogKey2";
this.cmbPrintDialogKey2.Size = new System.Drawing.Size(101, 21);
this.cmbPrintDialogKey2.TabIndex = 2;
//
// cmbPrintDialogKey1
//
this.cmbPrintDialogKey1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbPrintDialogKey1.FormattingEnabled = true;
this.cmbPrintDialogKey1.Location = new System.Drawing.Point(16, 34);
this.cmbPrintDialogKey1.Name = "cmbPrintDialogKey1";
this.cmbPrintDialogKey1.Size = new System.Drawing.Size(101, 21);
this.cmbPrintDialogKey1.TabIndex = 0;
//
// grbSearchDialogHotKeys
//
this.grbSearchDialogHotKeys.Controls.Add(this.lblSearchDialogPlus2);
this.grbSearchDialogHotKeys.Controls.Add(this.lblSearchDialogPlus1);
this.grbSearchDialogHotKeys.Controls.Add(this.cmbSearchDialogKey3);
this.grbSearchDialogHotKeys.Controls.Add(this.cmbSearchDialogKey2);
this.grbSearchDialogHotKeys.Controls.Add(this.cmbSearchDialogKey1);
this.grbSearchDialogHotKeys.Location = new System.Drawing.Point(8, 316);
this.grbSearchDialogHotKeys.Name = "grbSearchDialogHotKeys";
this.grbSearchDialogHotKeys.Size = new System.Drawing.Size(531, 82);
this.grbSearchDialogHotKeys.TabIndex = 3;
this.grbSearchDialogHotKeys.TabStop = false;
this.grbSearchDialogHotKeys.Text = "Show search dialog hot keys";
//
// lblSearchDialogPlus2
//
this.lblSearchDialogPlus2.AutoSize = true;
this.lblSearchDialogPlus2.Location = new System.Drawing.Point(283, 37);
this.lblSearchDialogPlus2.Name = "lblSearchDialogPlus2";
this.lblSearchDialogPlus2.Size = new System.Drawing.Size(13, 13);
this.lblSearchDialogPlus2.TabIndex = 3;
this.lblSearchDialogPlus2.Text = "+";
//
// lblSearchDialogPlus1
//
this.lblSearchDialogPlus1.AutoSize = true;
this.lblSearchDialogPlus1.Location = new System.Drawing.Point(134, 37);
this.lblSearchDialogPlus1.Name = "lblSearchDialogPlus1";
this.lblSearchDialogPlus1.Size = new System.Drawing.Size(13, 13);
this.lblSearchDialogPlus1.TabIndex = 1;
this.lblSearchDialogPlus1.Text = "+";
//
// cmbSearchDialogKey3
//
this.cmbSearchDialogKey3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSearchDialogKey3.FormattingEnabled = true;
this.cmbSearchDialogKey3.Location = new System.Drawing.Point(313, 34);
this.cmbSearchDialogKey3.Name = "cmbSearchDialogKey3";
this.cmbSearchDialogKey3.Size = new System.Drawing.Size(101, 21);
this.cmbSearchDialogKey3.TabIndex = 4;
//
// cmbSearchDialogKey2
//
this.cmbSearchDialogKey2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSearchDialogKey2.FormattingEnabled = true;
this.cmbSearchDialogKey2.Location = new System.Drawing.Point(164, 34);
this.cmbSearchDialogKey2.Name = "cmbSearchDialogKey2";
this.cmbSearchDialogKey2.Size = new System.Drawing.Size(101, 21);
this.cmbSearchDialogKey2.TabIndex = 2;
//
// cmbSearchDialogKey1
//
this.cmbSearchDialogKey1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbSearchDialogKey1.FormattingEnabled = true;
this.cmbSearchDialogKey1.Location = new System.Drawing.Point(16, 34);
this.cmbSearchDialogKey1.Name = "cmbSearchDialogKey1";
this.cmbSearchDialogKey1.Size = new System.Drawing.Size(101, 21);
this.cmbSearchDialogKey1.TabIndex = 0;
//
// tabpPlugin
//
this.tabpPlugin.Controls.Add(this.grbPlugins);
this.tabpPlugin.Controls.Add(this.grbPluginDefaultSettings);
this.tabpPlugin.Location = new System.Drawing.Point(4, 22);
this.tabpPlugin.Name = "tabpPlugin";
this.tabpPlugin.Padding = new System.Windows.Forms.Padding(3);
this.tabpPlugin.Size = new System.Drawing.Size(547, 497);
this.tabpPlugin.TabIndex = 1;
this.tabpPlugin.Text = "Plugin";
this.tabpPlugin.UseVisualStyleBackColor = true;
//
// grbPlugins
//
this.grbPlugins.Controls.Add(this.btnWincmdIni);
this.grbPlugins.Controls.Add(this.pnlPlugins);
this.grbPlugins.Controls.Add(this.btnEdit);
this.grbPlugins.Controls.Add(this.btnDelete);
this.grbPlugins.Controls.Add(this.btnUp);
this.grbPlugins.Controls.Add(this.btnDown);
this.grbPlugins.Controls.Add(this.btnAdd);
this.grbPlugins.Location = new System.Drawing.Point(8, 138);
this.grbPlugins.Name = "grbPlugins";
this.grbPlugins.Size = new System.Drawing.Size(531, 348);
this.grbPlugins.TabIndex = 1;
this.grbPlugins.TabStop = false;
this.grbPlugins.Text = "Plugins";
//
// btnWincmdIni
//
this.btnWincmdIni.Location = new System.Drawing.Point(10, 304);
this.btnWincmdIni.Name = "btnWincmdIni";
this.btnWincmdIni.Size = new System.Drawing.Size(86, 24);
this.btnWincmdIni.TabIndex = 0;
this.btnWincmdIni.Text = "Wincmd.ini";
this.toolTipWincmdIni.SetToolTip(this.btnWincmdIni, "Loads a list of plugins from TC wincmd.ini file.");
this.btnWincmdIni.UseVisualStyleBackColor = true;
this.btnWincmdIni.Click += new System.EventHandler(this.BrowseWincmdIniClick);
//
// grbPluginDefaultSettings
//
this.grbPluginDefaultSettings.Controls.Add(this.txtIniFile);
this.grbPluginDefaultSettings.Controls.Add(this.lblIniFile);
this.grbPluginDefaultSettings.Controls.Add(this.lblDot);
this.grbPluginDefaultSettings.Controls.Add(this.txtLowVersion);
this.grbPluginDefaultSettings.Controls.Add(this.txtHighVersion);
this.grbPluginDefaultSettings.Controls.Add(this.lblPluginVersion);
this.grbPluginDefaultSettings.Location = new System.Drawing.Point(8, 6);
this.grbPluginDefaultSettings.Name = "grbPluginDefaultSettings";
this.grbPluginDefaultSettings.Size = new System.Drawing.Size(531, 116);
this.grbPluginDefaultSettings.TabIndex = 0;
this.grbPluginDefaultSettings.TabStop = false;
this.grbPluginDefaultSettings.Text = "Plugin default settings";
//
// txtIniFile
//
this.txtIniFile.Location = new System.Drawing.Point(64, 75);
this.txtIniFile.Name = "txtIniFile";
this.txtIniFile.Size = new System.Drawing.Size(456, 20);
this.txtIniFile.TabIndex = 5;
//
// lblIniFile
//
this.lblIniFile.AutoSize = true;
this.lblIniFile.Location = new System.Drawing.Point(13, 78);
this.lblIniFile.Name = "lblIniFile";
this.lblIniFile.Size = new System.Drawing.Size(43, 13);
this.lblIniFile.TabIndex = 4;
this.lblIniFile.Text = "INI File:";
//
// lblDot
//
this.lblDot.AutoSize = true;
this.lblDot.Location = new System.Drawing.Point(100, 34);
this.lblDot.Name = "lblDot";
this.lblDot.Size = new System.Drawing.Size(10, 13);
this.lblDot.TabIndex = 2;
this.lblDot.Text = ".";
//
// txtLowVersion
//
this.txtLowVersion.Location = new System.Drawing.Point(117, 31);
this.txtLowVersion.MaxLength = 3;
this.txtLowVersion.Name = "txtLowVersion";
this.txtLowVersion.Size = new System.Drawing.Size(30, 20);
this.txtLowVersion.TabIndex = 3;
//
// txtHighVersion
//
this.txtHighVersion.Location = new System.Drawing.Point(64, 31);
this.txtHighVersion.MaxLength = 3;
this.txtHighVersion.Name = "txtHighVersion";
this.txtHighVersion.Size = new System.Drawing.Size(30, 20);
this.txtHighVersion.TabIndex = 1;
//
// lblPluginVersion
//
this.lblPluginVersion.AutoSize = true;
this.lblPluginVersion.Location = new System.Drawing.Point(13, 34);
this.lblPluginVersion.Name = "lblPluginVersion";
this.lblPluginVersion.Size = new System.Drawing.Size(45, 13);
this.lblPluginVersion.TabIndex = 0;
this.lblPluginVersion.Text = "Version:";
//
// toolTipWincmdIni
//
this.toolTipWincmdIni.AutoPopDelay = 10000;
this.toolTipWincmdIni.InitialDelay = 500;
this.toolTipWincmdIni.ReshowDelay = 100;
//
// ProgramSettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(555, 594);
this.Controls.Add(this.tabMain);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ProgramSettingsForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Program Settings";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormKeyDown);
this.pnlPlugins.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.gridViewPlugin)).EndInit();
this.grbListerFormHotKeys.ResumeLayout(false);
this.grbListerFormHotKeys.PerformLayout();
this.grbListerForm.ResumeLayout(false);
this.grbListerForm.PerformLayout();
this.grbAutoStartProgram.ResumeLayout(false);
this.grbAutoStartProgram.PerformLayout();
this.tabMain.ResumeLayout(false);
this.tabpCommon.ResumeLayout(false);
this.grbPrintDialogHotKeys.ResumeLayout(false);
this.grbPrintDialogHotKeys.PerformLayout();
this.grbSearchDialogHotKeys.ResumeLayout(false);
this.grbSearchDialogHotKeys.PerformLayout();
this.tabpPlugin.ResumeLayout(false);
this.grbPlugins.ResumeLayout(false);
this.grbPluginDefaultSettings.ResumeLayout(false);
this.grbPluginDefaultSettings.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : YoloExportControl.Designer.cs
License : MIT License
Project Creator : AlturosDestinations
License : MIT License
Project Creator : AlturosDestinations
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.groupBoxImageSize = new System.Windows.Forms.GroupBox();
this.trackBarImageSize = new System.Windows.Forms.TrackBar();
this.labelImageSize = new System.Windows.Forms.Label();
this.groupBoxTrainingPercentage = new System.Windows.Forms.GroupBox();
this.trackBarTrainingPercentage = new System.Windows.Forms.TrackBar();
this.labelTrainingPercentage = new System.Windows.Forms.Label();
this.toolTipTrainingPercentage = new System.Windows.Forms.ToolTip(this.components);
this.toolTipImageSize = new System.Windows.Forms.ToolTip(this.components);
this.checkBoxUseTinyConfig = new System.Windows.Forms.CheckBox();
this.groupBoxImageSize.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarImageSize)).BeginInit();
this.groupBoxTrainingPercentage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarTrainingPercentage)).BeginInit();
this.SuspendLayout();
//
// groupBoxImageSize
//
this.groupBoxImageSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxImageSize.Controls.Add(this.trackBarImageSize);
this.groupBoxImageSize.Controls.Add(this.labelImageSize);
this.groupBoxImageSize.Location = new System.Drawing.Point(292, 3);
this.groupBoxImageSize.Name = "groupBoxImageSize";
this.groupBoxImageSize.Size = new System.Drawing.Size(231, 69);
this.groupBoxImageSize.TabIndex = 17;
this.groupBoxImageSize.TabStop = false;
this.groupBoxImageSize.Text = "Image Size";
//
// trackBarImageSize
//
this.trackBarImageSize.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.trackBarImageSize.LargeChange = 32;
this.trackBarImageSize.Location = new System.Drawing.Point(6, 19);
this.trackBarImageSize.Maximum = 608;
this.trackBarImageSize.Minimum = 416;
this.trackBarImageSize.Name = "trackBarImageSize";
this.trackBarImageSize.Size = new System.Drawing.Size(186, 45);
this.trackBarImageSize.SmallChange = 32;
this.trackBarImageSize.TabIndex = 12;
this.trackBarImageSize.TickFrequency = 32;
this.toolTipImageSize.SetToolTip(this.trackBarImageSize, "The size of the image used for training and testing purposes.\r\nA smaller value wi" +
"ll require less space, whereas a higher value has the benefit of a more accurate" +
" learning process.\r\n");
this.trackBarImageSize.Value = 416;
this.trackBarImageSize.Scroll += new System.EventHandler(this.TrackBarImageSize_Scroll);
//
// labelImageSize
//
this.labelImageSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelImageSize.AutoSize = true;
this.labelImageSize.Location = new System.Drawing.Point(198, 35);
this.labelImageSize.Name = "labelImageSize";
this.labelImageSize.Size = new System.Drawing.Size(25, 13);
this.labelImageSize.TabIndex = 13;
this.labelImageSize.Text = "416";
//
// groupBoxTrainingPercentage
//
this.groupBoxTrainingPercentage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBoxTrainingPercentage.Controls.Add(this.trackBarTrainingPercentage);
this.groupBoxTrainingPercentage.Controls.Add(this.labelTrainingPercentage);
this.groupBoxTrainingPercentage.Location = new System.Drawing.Point(3, 3);
this.groupBoxTrainingPercentage.Name = "groupBoxTrainingPercentage";
this.groupBoxTrainingPercentage.Size = new System.Drawing.Size(282, 69);
this.groupBoxTrainingPercentage.TabIndex = 16;
this.groupBoxTrainingPercentage.TabStop = false;
this.groupBoxTrainingPercentage.Text = "Training Percentage";
//
// trackBarTrainingPercentage
//
this.trackBarTrainingPercentage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.trackBarTrainingPercentage.Location = new System.Drawing.Point(6, 19);
this.trackBarTrainingPercentage.Maximum = 100;
this.trackBarTrainingPercentage.Name = "trackBarTrainingPercentage";
this.trackBarTrainingPercentage.Size = new System.Drawing.Size(237, 45);
this.trackBarTrainingPercentage.TabIndex = 12;
this.trackBarTrainingPercentage.TickFrequency = 5;
this.toolTipTrainingPercentage.SetToolTip(this.trackBarTrainingPercentage, "The percentage stands for how many images each package will randomly select to tr" +
"ain annotating images.\r\nThe remaining images are used for testing.\r\n");
this.trackBarTrainingPercentage.Value = 70;
this.trackBarTrainingPercentage.Scroll += new System.EventHandler(this.TrackBarTrainingPercentage_Scroll);
//
// labelTrainingPercentage
//
this.labelTrainingPercentage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelTrainingPercentage.AutoSize = true;
this.labelTrainingPercentage.Location = new System.Drawing.Point(249, 35);
this.labelTrainingPercentage.Name = "labelTrainingPercentage";
this.labelTrainingPercentage.Size = new System.Drawing.Size(27, 13);
this.labelTrainingPercentage.TabIndex = 13;
this.labelTrainingPercentage.Text = "70%";
//
// toolTipTrainingPercentage
//
this.toolTipTrainingPercentage.IsBalloon = true;
this.toolTipTrainingPercentage.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipTrainingPercentage.ToolTipreplacedle = "Training Percentage";
//
// toolTipImageSize
//
this.toolTipImageSize.IsBalloon = true;
this.toolTipImageSize.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipImageSize.ToolTipreplacedle = "Image Size";
//
// checkBoxUseTinyConfig
//
this.checkBoxUseTinyConfig.AutoSize = true;
this.checkBoxUseTinyConfig.Location = new System.Drawing.Point(3, 78);
this.checkBoxUseTinyConfig.Name = "checkBoxUseTinyConfig";
this.checkBoxUseTinyConfig.Size = new System.Drawing.Size(140, 17);
this.checkBoxUseTinyConfig.TabIndex = 18;
this.checkBoxUseTinyConfig.Text = "Use Yolo v3 Tiny Config";
this.checkBoxUseTinyConfig.UseVisualStyleBackColor = true;
//
// YoloExportControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.checkBoxUseTinyConfig);
this.Controls.Add(this.groupBoxImageSize);
this.Controls.Add(this.groupBoxTrainingPercentage);
this.Name = "YoloExportControl";
this.Size = new System.Drawing.Size(526, 103);
this.groupBoxImageSize.ResumeLayout(false);
this.groupBoxImageSize.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarImageSize)).EndInit();
this.groupBoxTrainingPercentage.ResumeLayout(false);
this.groupBoxTrainingPercentage.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBarTrainingPercentage)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : MainForm.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.components = new System.ComponentModel.Container();
System.Windows.Forms.RadioButton radioButton3;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.trackComboBox = new System.Windows.Forms.ComboBox();
this.gBMidiFile = new System.Windows.Forms.GroupBox();
this.panel6 = new System.Windows.Forms.Panel();
this.btnFileSelect = new System.Windows.Forms.Button();
this.pathTextBox = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.panel3 = new System.Windows.Forms.Panel();
this.btnTimeSync = new System.Windows.Forms.Button();
this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
this.label8 = new System.Windows.Forms.Label();
this.btnSyncReady = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.dtpSyncTime = new System.Windows.Forms.DateTimePicker();
this.label3 = new System.Windows.Forms.Label();
this.midFileDiag = new System.Windows.Forms.OpenFileDialog();
this.gBParameterSetting = new System.Windows.Forms.GroupBox();
this.panel5 = new System.Windows.Forms.Panel();
this.nudBpm = new System.Windows.Forms.NumericUpDown();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.label5 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.cbMidiKeyboard = new System.Windows.Forms.ComboBox();
this.gBKeySetting = new System.Windows.Forms.GroupBox();
this.btn37Key = new System.Windows.Forms.Button();
this.btn13Key = new System.Windows.Forms.Button();
this.panel4 = new System.Windows.Forms.Panel();
this.btnSwitch = new System.Windows.Forms.Button();
this.gBKeyboardSetting = new System.Windows.Forms.GroupBox();
this.btnKeyboardConnect = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.label9 = new System.Windows.Forms.Label();
this.lblPlay = new System.Windows.Forms.Label();
this.btnAbout = new System.Windows.Forms.Button();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.lblMidiName = new System.Windows.Forms.Label();
this.timeLabel = new System.Windows.Forms.Label();
this.btnStop = new System.Windows.Forms.Button();
this.btnPause = new System.Windows.Forms.Button();
this.btnPlay = new System.Windows.Forms.Button();
this.tbMidiProcess = new System.Windows.Forms.TrackBar();
this.panel1 = new System.Windows.Forms.Panel();
this.tlblTime = new System.Windows.Forms.ToolStripStatusLabel();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.timeStripStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.playTimer = new System.Windows.Forms.Timer(this.components);
this.tipTsukkomi = new System.Windows.Forms.ToolTip(this.components);
radioButton3 = new System.Windows.Forms.RadioButton();
this.gBMidiFile.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
this.gBParameterSetting.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nudBpm)).BeginInit();
this.gBKeySetting.SuspendLayout();
this.gBKeyboardSetting.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tbMidiProcess)).BeginInit();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// radioButton3
//
radioButton3.AutoSize = true;
radioButton3.Font = new System.Drawing.Font("微软雅黑", 12F);
radioButton3.Location = new System.Drawing.Point(258, 70);
radioButton3.Name = "radioButton3";
radioButton3.Size = new System.Drawing.Size(101, 35);
radioButton3.TabIndex = 7;
radioButton3.Text = "高8度";
this.tipTsukkomi.SetToolTip(radioButton3, "点这里是设置音高的");
radioButton3.UseVisualStyleBackColor = true;
radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged);
//
// trackComboBox
//
this.trackComboBox.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.trackComboBox.ForeColor = System.Drawing.Color.Gray;
this.trackComboBox.FormattingEnabled = true;
this.trackComboBox.Location = new System.Drawing.Point(93, 66);
this.trackComboBox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.trackComboBox.Name = "trackComboBox";
this.trackComboBox.Size = new System.Drawing.Size(238, 36);
this.trackComboBox.TabIndex = 1;
this.tipTsukkomi.SetToolTip(this.trackComboBox, "点这里选择音轨");
this.trackComboBox.SelectedIndexChanged += new System.EventHandler(this.trackComboBox_SelectedIndexChanged);
this.trackComboBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TrackComboBox_KeyDown);
//
// gBMidiFile
//
this.gBMidiFile.Controls.Add(this.panel6);
this.gBMidiFile.Controls.Add(this.btnFileSelect);
this.gBMidiFile.Controls.Add(this.pathTextBox);
this.gBMidiFile.Controls.Add(this.label1);
this.gBMidiFile.Controls.Add(this.label2);
this.gBMidiFile.Controls.Add(this.trackComboBox);
this.gBMidiFile.Dock = System.Windows.Forms.DockStyle.Top;
this.gBMidiFile.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.gBMidiFile.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.gBMidiFile.Location = new System.Drawing.Point(0, 13);
this.gBMidiFile.Name = "gBMidiFile";
this.gBMidiFile.Size = new System.Drawing.Size(339, 111);
this.gBMidiFile.TabIndex = 3;
this.gBMidiFile.TabStop = false;
this.gBMidiFile.Text = "Midi乐谱选择";
//
// panel6
//
this.panel6.Location = new System.Drawing.Point(-1, 99);
this.panel6.Name = "panel6";
this.panel6.Size = new System.Drawing.Size(1346, 13);
this.panel6.TabIndex = 19;
//
// btnFileSelect
//
this.btnFileSelect.BackColor = System.Drawing.Color.White;
this.btnFileSelect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnFileSelect.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnFileSelect.ForeColor = System.Drawing.Color.Black;
this.btnFileSelect.Location = new System.Drawing.Point(286, 31);
this.btnFileSelect.Name = "btnFileSelect";
this.btnFileSelect.Size = new System.Drawing.Size(45, 26);
this.btnFileSelect.TabIndex = 7;
this.btnFileSelect.Text = "···";
this.btnFileSelect.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.tipTsukkomi.SetToolTip(this.btnFileSelect, "点这里选择Midi文件或者mml文件");
this.btnFileSelect.UseVisualStyleBackColor = false;
this.btnFileSelect.Click += new System.EventHandler(this.selectFileButton_Click);
//
// pathTextBox
//
this.pathTextBox.Enabled = false;
this.pathTextBox.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.pathTextBox.ForeColor = System.Drawing.Color.Gray;
this.pathTextBox.Location = new System.Drawing.Point(93, 31);
this.pathTextBox.Name = "pathTextBox";
this.pathTextBox.Size = new System.Drawing.Size(176, 35);
this.pathTextBox.TabIndex = 6;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label1.ForeColor = System.Drawing.Color.Gray;
this.label1.Location = new System.Drawing.Point(16, 34);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(96, 28);
this.label1.TabIndex = 5;
this.label1.Text = "导入文件";
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.White;
this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label2.ForeColor = System.Drawing.Color.Gray;
this.label2.Location = new System.Drawing.Point(16, 69);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(96, 28);
this.label2.TabIndex = 4;
this.label2.Text = "选择音轨";
this.label2.Click += new System.EventHandler(this.label2_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.panel3);
this.groupBox1.Controls.Add(this.btnTimeSync);
this.groupBox1.Controls.Add(this.numericUpDown2);
this.groupBox1.Controls.Add(this.label8);
this.groupBox1.Controls.Add(this.btnSyncReady);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.dtpSyncTime);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.groupBox1.Location = new System.Drawing.Point(0, 323);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(339, 135);
this.groupBox1.TabIndex = 4;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "同步演奏";
//
// panel3
//
this.panel3.Location = new System.Drawing.Point(0, 123);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(1346, 13);
this.panel3.TabIndex = 16;
//
// btnTimeSync
//
this.btnTimeSync.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
this.btnTimeSync.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnTimeSync.Font = new System.Drawing.Font("微软雅黑", 10F);
this.btnTimeSync.ForeColor = System.Drawing.Color.White;
this.btnTimeSync.Location = new System.Drawing.Point(250, 51);
this.btnTimeSync.Name = "btnTimeSync";
this.btnTimeSync.Size = new System.Drawing.Size(81, 29);
this.btnTimeSync.TabIndex = 6;
this.btnTimeSync.Text = "网络同步";
this.tipTsukkomi.SetToolTip(this.btnTimeSync, "开启或停止网络同步\r\n点击后\r\n1.接收到合奏停止数据包后自动停止\r\n2.接收到标点数据包后自动停止\r\n3.接收到小队倒计时后数据包后自动开始定时\r\n点一次就行了" +
"!\r\n一次!");
this.btnTimeSync.UseVisualStyleBackColor = false;
this.btnTimeSync.Click += new System.EventHandler(this.BtnTimeSync_Click);
//
// numericUpDown2
//
this.numericUpDown2.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.numericUpDown2.Location = new System.Drawing.Point(93, 90);
this.numericUpDown2.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.numericUpDown2.Minimum = new decimal(new int[] {
10000,
0,
0,
-2147483648});
this.numericUpDown2.Name = "numericUpDown2";
this.numericUpDown2.Size = new System.Drawing.Size(128, 35);
this.numericUpDown2.TabIndex = 5;
this.tipTsukkomi.SetToolTip(this.numericUpDown2, "海外党适用\r\n当队员们与服务器延迟过大的时候\r\n用于补正Ping值\r\n设置方法为全员平均Ping值-每个人的Ping值");
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.label8.ForeColor = System.Drawing.Color.Gray;
this.label8.Location = new System.Drawing.Point(16, 91);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(96, 28);
this.label8.TabIndex = 4;
this.label8.Text = "网络延迟";
//
// btnSyncReady
//
this.btnSyncReady.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
this.btnSyncReady.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSyncReady.Font = new System.Drawing.Font("微软雅黑", 10F);
this.btnSyncReady.ForeColor = System.Drawing.Color.White;
this.btnSyncReady.Location = new System.Drawing.Point(250, 88);
this.btnSyncReady.Name = "btnSyncReady";
this.btnSyncReady.Size = new System.Drawing.Size(81, 29);
this.btnSyncReady.TabIndex = 3;
this.btnSyncReady.Text = "准备好了";
this.tipTsukkomi.SetToolTip(this.btnSyncReady, "点击后进游戏等待就可以了\r\n点一次就行了嗷!\r\n——————————\r\n我明明写了点一次还有人点好多次说有BUG\r\n你说你是不是傻肥\r\n好了BUG修好了点一百次也" +
"没问题了!");
this.btnSyncReady.UseVisualStyleBackColor = false;
this.btnSyncReady.Click += new System.EventHandler(this.btnSyncReady_Click);
this.btnSyncReady.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSyncReady_MouseClick);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label4.ForeColor = System.Drawing.Color.Gray;
this.label4.Location = new System.Drawing.Point(16, 60);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(96, 28);
this.label4.TabIndex = 2;
this.label4.Text = "演奏时间";
this.label4.Click += new System.EventHandler(this.label4_Click);
this.label4.DoubleClick += new System.EventHandler(this.label4_DoubleClick);
//
// dtpSyncTime
//
this.dtpSyncTime.CalendarFont = new System.Drawing.Font("微软雅黑", 10.5F);
this.dtpSyncTime.CustomFormat = "HH-mm-ss";
this.dtpSyncTime.Font = new System.Drawing.Font("微软雅黑", 10.5F);
this.dtpSyncTime.Format = System.Windows.Forms.DateTimePickerFormat.Time;
this.dtpSyncTime.Location = new System.Drawing.Point(93, 55);
this.dtpSyncTime.Name = "dtpSyncTime";
this.dtpSyncTime.ShowUpDown = true;
this.dtpSyncTime.Size = new System.Drawing.Size(128, 35);
this.dtpSyncTime.TabIndex = 1;
this.tipTsukkomi.SetToolTip(this.dtpSyncTime, "合奏用\r\n与队友们设定同样的时间后\r\n点击[准备好了],就可以自动合奏\r\n*时间支持复制粘贴*\r\n点一下按Ctrl+C,不用全选!");
this.dtpSyncTime.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DateTimePicker1_KeyDown);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label3.ForeColor = System.Drawing.Color.Gray;
this.label3.Location = new System.Drawing.Point(14, 30);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(348, 28);
this.label3.TabIndex = 0;
this.label3.Text = "通过定时或网络功能来同步的演奏吧";
//
// midFileDiag
//
this.midFileDiag.FileName = "此处广告位招租";
this.midFileDiag.Filter = ".mid文件|*.mid|.mml文件|*.mml";
//
// gBParameterSetting
//
this.gBParameterSetting.Controls.Add(this.panel5);
this.gBParameterSetting.Controls.Add(radioButton3);
this.gBParameterSetting.Controls.Add(this.nudBpm);
this.gBParameterSetting.Controls.Add(this.radioButton2);
this.gBParameterSetting.Controls.Add(this.radioButton1);
this.gBParameterSetting.Controls.Add(this.label5);
this.gBParameterSetting.Controls.Add(this.label7);
this.gBParameterSetting.Dock = System.Windows.Forms.DockStyle.Top;
this.gBParameterSetting.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
this.gBParameterSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.gBParameterSetting.Location = new System.Drawing.Point(0, 124);
this.gBParameterSetting.Name = "gBParameterSetting";
this.gBParameterSetting.Size = new System.Drawing.Size(339, 109);
this.gBParameterSetting.TabIndex = 5;
this.gBParameterSetting.TabStop = false;
this.gBParameterSetting.Text = "播放属性设置";
//
// panel5
//
this.panel5.Location = new System.Drawing.Point(-8, 98);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(1346, 13);
this.panel5.TabIndex = 18;
//
// nudBpm
//
this.nudBpm.Font = new System.Drawing.Font("微软雅黑", 12F);
this.nudBpm.ForeColor = System.Drawing.Color.Gray;
this.nudBpm.Location = new System.Drawing.Point(182, 33);
this.nudBpm.Maximum = new decimal(new int[] {
250,
0,
0,
0});
this.nudBpm.Minimum = new decimal(new int[] {
40,
0,
0,
0});
this.nudBpm.Name = "nudBpm";
this.nudBpm.Size = new System.Drawing.Size(149, 39);
this.nudBpm.TabIndex = 9;
this.tipTsukkomi.SetToolTip(this.nudBpm, "点这里可以设置速度");
this.nudBpm.Value = new decimal(new int[] {
80,
0,
0,
0});
this.nudBpm.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Checked = true;
this.radioButton2.Font = new System.Drawing.Font("微软雅黑", 12F);
this.radioButton2.Location = new System.Drawing.Point(180, 70);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(87, 35);
this.radioButton2.TabIndex = 6;
this.radioButton2.TabStop = true;
this.radioButton2.Text = "原始";
this.tipTsukkomi.SetToolTip(this.radioButton2, "点这里是设置音高的");
this.radioButton2.UseVisualStyleBackColor = true;
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Font = new System.Drawing.Font("微软雅黑", 12F);
this.radioButton1.Location = new System.Drawing.Point(93, 70);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(101, 35);
this.radioButton1.TabIndex = 5;
this.radioButton1.Text = "低8度";
this.tipTsukkomi.SetToolTip(this.radioButton1, "点这里是设置音高的");
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label5.ForeColor = System.Drawing.Color.Gray;
this.label5.Location = new System.Drawing.Point(16, 70);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(96, 28);
this.label5.TabIndex = 1;
this.label5.Text = "音高调整";
this.tipTsukkomi.SetToolTip(this.label5, "点这里是设置音高的");
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label7.ForeColor = System.Drawing.Color.Gray;
this.label7.Location = new System.Drawing.Point(16, 36);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(240, 28);
this.label7.TabIndex = 2;
this.label7.Text = "设置BPM,范围40~250";
//
// cbMidiKeyboard
//
this.cbMidiKeyboard.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.cbMidiKeyboard.ForeColor = System.Drawing.Color.Gray;
this.cbMidiKeyboard.FormattingEnabled = true;
this.cbMidiKeyboard.Location = new System.Drawing.Point(93, 35);
this.cbMidiKeyboard.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.cbMidiKeyboard.Name = "cbMidiKeyboard";
this.cbMidiKeyboard.Size = new System.Drawing.Size(154, 36);
this.cbMidiKeyboard.TabIndex = 8;
this.tipTsukkomi.SetToolTip(this.cbMidiKeyboard, "如果你有Midi键盘可以插上在这里连接\r\n没有的就不要凑热闹了!\r\n蓝牙的不行!LaunchPad你自己说你是Midi键盘吗!\r\n樱桃键盘不行!Filco也不行!" +
"\r\nHHKB也不行!带不带RGB都不行!\r\n王总这不是钱的问题!\r\n");
this.cbMidiKeyboard.SelectedIndexChanged += new System.EventHandler(this.cbMidiKeyboard_SelectedIndexChanged);
//
// gBKeySetting
//
this.gBKeySetting.Controls.Add(this.btn37Key);
this.gBKeySetting.Controls.Add(this.btn13Key);
this.gBKeySetting.Controls.Add(this.panel4);
this.gBKeySetting.Controls.Add(this.btnSwitch);
this.gBKeySetting.Dock = System.Windows.Forms.DockStyle.Top;
this.gBKeySetting.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
this.gBKeySetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.gBKeySetting.Location = new System.Drawing.Point(0, 233);
this.gBKeySetting.Name = "gBKeySetting";
this.gBKeySetting.Size = new System.Drawing.Size(339, 90);
this.gBKeySetting.TabIndex = 10;
this.gBKeySetting.TabStop = false;
this.gBKeySetting.Text = "游戏键位设置";
//
// btn37Key
//
this.btn37Key.BackColor = System.Drawing.Color.Silver;
this.btn37Key.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btn37Key.Font = new System.Drawing.Font("微软雅黑", 11.5F);
this.btn37Key.ForeColor = System.Drawing.Color.WhiteSmoke;
this.btn37Key.Location = new System.Drawing.Point(238, 34);
this.btn37Key.Name = "btn37Key";
this.btn37Key.Size = new System.Drawing.Size(93, 36);
this.btn37Key.TabIndex = 18;
this.btn37Key.Text = "37键布局";
this.tipTsukkomi.SetToolTip(this.btn37Key, "是开启全音阶的布局啦");
this.btn37Key.UseVisualStyleBackColor = false;
this.btn37Key.Click += new System.EventHandler(this.btn37key_Click);
//
// btn13Key
//
this.btn13Key.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
this.btn13Key.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btn13Key.Font = new System.Drawing.Font("微软雅黑", 11.5F);
this.btn13Key.ForeColor = System.Drawing.Color.WhiteSmoke;
this.btn13Key.Location = new System.Drawing.Point(20, 34);
this.btn13Key.Name = "btn13Key";
this.btn13Key.Size = new System.Drawing.Size(93, 36);
this.btn13Key.TabIndex = 17;
this.btn13Key.Text = "13键布局";
this.tipTsukkomi.SetToolTip(this.btn13Key, "就是默认的那个键位布局啦");
this.btn13Key.UseVisualStyleBackColor = false;
this.btn13Key.Click += new System.EventHandler(this.keyForm13Button_Click);
//
// panel4
//
this.panel4.Location = new System.Drawing.Point(0, 80);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(1346, 13);
this.panel4.TabIndex = 17;
//
// btnSwitch
//
this.btnSwitch.BackColor = System.Drawing.Color.Transparent;
this.btnSwitch.BackgroundImage = global::Daigreplacedou.Properties.Resources.a0;
this.btnSwitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.btnSwitch.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSwitch.Font = new System.Drawing.Font("微软雅黑", 10F);
this.btnSwitch.ForeColor = System.Drawing.Color.White;
this.btnSwitch.Location = new System.Drawing.Point(128, 34);
this.btnSwitch.Name = "btnSwitch";
this.btnSwitch.Size = new System.Drawing.Size(95, 36);
this.btnSwitch.TabIndex = 6;
this.tipTsukkomi.SetToolTip(this.btnSwitch, "点一下可以切换8键和22键\r\n我当然是建议用22键啦!");
this.btnSwitch.UseVisualStyleBackColor = false;
this.btnSwitch.Click += new System.EventHandler(this.btnSwitch_Click);
//
// gBKeyboardSetting
//
this.gBKeyboardSetting.Controls.Add(this.btnKeyboardConnect);
this.gBKeyboardSetting.Controls.Add(this.panel2);
this.gBKeyboardSetting.Controls.Add(this.label9);
this.gBKeyboardSetting.Controls.Add(this.cbMidiKeyboard);
this.gBKeyboardSetting.Dock = System.Windows.Forms.DockStyle.Top;
this.gBKeyboardSetting.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
this.gBKeyboardSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.gBKeyboardSetting.Location = new System.Drawing.Point(0, 458);
this.gBKeyboardSetting.Name = "gBKeyboardSetting";
this.gBKeyboardSetting.Size = new System.Drawing.Size(339, 79);
this.gBKeyboardSetting.TabIndex = 11;
this.gBKeyboardSetting.TabStop = false;
this.gBKeyboardSetting.Text = "Midi键盘选择";
//
// btnKeyboardConnect
//
this.btnKeyboardConnect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
this.btnKeyboardConnect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnKeyboardConnect.Font = new System.Drawing.Font("微软雅黑", 10F);
this.btnKeyboardConnect.ForeColor = System.Drawing.Color.White;
this.btnKeyboardConnect.Location = new System.Drawing.Point(250, 35);
this.btnKeyboardConnect.Name = "btnKeyboardConnect";
this.btnKeyboardConnect.Size = new System.Drawing.Size(81, 30);
this.btnKeyboardConnect.TabIndex = 17;
this.btnKeyboardConnect.Text = "开始连接";
this.tipTsukkomi.SetToolTip(this.btnKeyboardConnect, "如果你有Midi键盘或其他Midi设备可以插上在这里连接\r\n没有的就不要凑热闹了!\r\n蓝牙的不行!LaunchPad你自己说你是Midi键盘吗!\r\n樱桃键盘不行!" +
"Filco也不行!\r\nHHKB也不行!带不带RGB都不行!\r\n王总这不是钱的问题!\r\n\r\n");
this.btnKeyboardConnect.UseVisualStyleBackColor = false;
this.btnKeyboardConnect.Click += new System.EventHandler(this.btnKeyboardConnect_Click);
//
// panel2
//
this.panel2.Location = new System.Drawing.Point(0, 72);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(1346, 13);
this.panel2.TabIndex = 15;
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label9.ForeColor = System.Drawing.Color.Gray;
this.label9.Location = new System.Drawing.Point(16, 38);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(96, 28);
this.label9.TabIndex = 0;
this.label9.Text = "键盘选择";
//
// lblPlay
//
this.lblPlay.BackColor = System.Drawing.Color.Transparent;
this.lblPlay.Font = new System.Drawing.Font("微软雅黑", 10F);
this.lblPlay.Location = new System.Drawing.Point(239, 42);
this.lblPlay.Name = "lblPlay";
this.lblPlay.Size = new System.Drawing.Size(100, 22);
this.lblPlay.TabIndex = 25;
this.lblPlay.Text = "试听停止";
this.lblPlay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.lblPlay.Visible = false;
//
// btnAbout
//
this.btnAbout.BackColor = System.Drawing.Color.Transparent;
this.btnAbout.Dock = System.Windows.Forms.DockStyle.Bottom;
this.btnAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnAbout.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnAbout.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.btnAbout.Location = new System.Drawing.Point(0, 652);
this.btnAbout.Name = "btnAbout";
this.btnAbout.Size = new System.Drawing.Size(339, 30);
this.btnAbout.TabIndex = 13;
this.btnAbout.Text = "关于大合奏";
this.btnAbout.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.tipTsukkomi.SetToolTip(this.btnAbout, "求你了点我一下看看吧!\r\n两只猫娘可爱死了!");
this.btnAbout.UseVisualStyleBackColor = false;
this.btnAbout.Click += new System.EventHandler(this.button1_Click);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.lblMidiName);
this.groupBox2.Controls.Add(this.timeLabel);
this.groupBox2.Controls.Add(this.btnStop);
this.groupBox2.Controls.Add(this.btnPause);
this.groupBox2.Controls.Add(this.btnPlay);
this.groupBox2.Controls.Add(this.tbMidiProcess);
this.groupBox2.Controls.Add(this.lblPlay);
this.groupBox2.Dock = System.Windows.Forms.DockStyle.Top;
this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold);
this.groupBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
this.groupBox2.Location = new System.Drawing.Point(0, 537);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(339, 120);
this.groupBox2.TabIndex = 12;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Midi轨道试听";
//
// lblMidiName
//
this.lblMidiName.BackColor = System.Drawing.Color.Transparent;
this.lblMidiName.Font = new System.Drawing.Font("微软雅黑", 11F, System.Drawing.FontStyle.Bold);
this.lblMidiName.ForeColor = System.Drawing.Color.Gray;
this.lblMidiName.Location = new System.Drawing.Point(6, 93);
this.lblMidiName.Name = "lblMidiName";
this.lblMidiName.Size = new System.Drawing.Size(333, 22);
this.lblMidiName.TabIndex = 26;
this.lblMidiName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// timeLabel
//
this.timeLabel.AutoSize = true;
this.timeLabel.Font = new System.Drawing.Font("微软雅黑", 9.5F);
this.timeLabel.ForeColor = System.Drawing.Color.Gray;
this.timeLabel.Location = new System.Drawing.Point(275, 75);
this.timeLabel.Name = "timeLabel";
this.timeLabel.Size = new System.Drawing.Size(42, 25);
this.timeLabel.TabIndex = 27;
this.timeLabel.Text = " ";
//
// btnStop
//
this.btnStop.BackColor = System.Drawing.Color.Transparent;
this.btnStop.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_stop;
this.btnStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.btnStop.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnStop.ForeColor = System.Drawing.Color.Transparent;
this.btnStop.Location = new System.Drawing.Point(68, 33);
this.btnStop.Name = "btnStop";
this.btnStop.Size = new System.Drawing.Size(40, 40);
this.btnStop.TabIndex = 24;
this.btnStop.UseVisualStyleBackColor = false;
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// btnPause
//
this.btnPause.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_pause;
this.btnPause.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.btnPause.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPause.ForeColor = System.Drawing.Color.Transparent;
this.btnPause.Location = new System.Drawing.Point(238, 32);
this.btnPause.Name = "btnPause";
this.btnPause.Size = new System.Drawing.Size(40, 40);
this.btnPause.TabIndex = 23;
this.btnPause.UseVisualStyleBackColor = true;
this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
//
// btnPlay
//
this.btnPlay.AutoSize = true;
this.btnPlay.BackColor = System.Drawing.Color.White;
this.btnPlay.BackgroundImage = global::Daigreplacedou.Properties.Resources.c_play;
this.btnPlay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.btnPlay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnPlay.ForeColor = System.Drawing.Color.White;
this.btnPlay.Location = new System.Drawing.Point(153, 33);
this.btnPlay.Name = "btnPlay";
this.btnPlay.Size = new System.Drawing.Size(40, 40);
this.btnPlay.TabIndex = 22;
this.tipTsukkomi.SetToolTip(this.btnPlay, "这是西瓜视频的Logo\r\n真的不是试听的播放键");
this.btnPlay.UseVisualStyleBackColor = false;
this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
//
// tbMidiProcess
//
this.tbMidiProcess.BackColor = System.Drawing.Color.White;
this.tbMidiProcess.Location = new System.Drawing.Point(9, 75);
this.tbMidiProcess.Maximum = 100;
this.tbMidiProcess.Name = "tbMidiProcess";
this.tbMidiProcess.Size = new System.Drawing.Size(260, 69);
this.tbMidiProcess.TabIndex = 28;
this.tbMidiProcess.TickStyle = System.Windows.Forms.TickStyle.None;
this.tipTsukkomi.SetToolTip(this.tbMidiProcess, "我给你讲哦这个东西叫进度条的说\r\n只要用力拖就可以改变试听的位置嗷!");
this.tbMidiProcess.Visible = false;
this.tbMidiProcess.Scroll += new System.EventHandler(this.tbMidiProcess_Scroll);
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(339, 13);
this.panel1.TabIndex = 14;
//
// tlblTime
//
this.tlblTime.BackColor = System.Drawing.Color.Transparent;
this.tlblTime.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.tlblTime.ForeColor = System.Drawing.Color.Gray;
this.tlblTime.Name = "tlblTime";
this.tlblTime.Size = new System.Drawing.Size(100, 24);
this.tlblTime.Text = "时钟未同步";
//
// statusStrip1
//
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tlblTime,
this.timeStripStatus,
this.toolStripSplitButton1,
this.toolStripStatusLabel1});
this.statusStrip1.Location = new System.Drawing.Point(0, 682);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(339, 31);
this.statusStrip1.TabIndex = 18;
this.statusStrip1.Text = "statusStrip1";
//
// timeStripStatus
//
this.timeStripStatus.BackColor = System.Drawing.Color.Transparent;
this.timeStripStatus.Name = "timeStripStatus";
this.timeStripStatus.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.timeStripStatus.Size = new System.Drawing.Size(84, 24);
this.timeStripStatus.Text = "20:00:00";
//
// toolStripSplitButton1
//
this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripSplitButton1.Image = global::Daigreplacedou.Properties.Resources.s2;
this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripSplitButton1.Name = "toolStripSplitButton1";
this.toolStripSplitButton1.Size = new System.Drawing.Size(41, 28);
this.toolStripSplitButton1.Text = "toolStripSplitButton1";
this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.ToolStripSplitButton1_ButtonClick);
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.AutoSize = false;
this.toolStripStatusLabel1.BackColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabel1.Image = global::Daigreplacedou.Properties.Resources.icons8_advertisement_page_90;
this.toolStripStatusLabel1.ImageTransparentColor = System.Drawing.Color.Transparent;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(24, 24);
this.toolStripStatusLabel1.ToolTipText = "内测版的悬浮窗功能\r\n不是内测用户不要点";
this.toolStripStatusLabel1.Click += new System.EventHandler(this.toolStripStatusLabel1_Click);
//
// playTimer
//
this.playTimer.Enabled = true;
this.playTimer.Tick += new System.EventHandler(this.PlayTimer_Tick);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(339, 713);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.btnAbout);
this.Controls.Add(this.gBKeyboardSetting);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.gBKeySetting);
this.Controls.Add(this.gBParameterSetting);
this.Controls.Add(this.gBMidiFile);
this.Controls.Add(this.panel1);
this.Controls.Add(this.statusStrip1);
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 = "MainForm";
this.Text = "大合奏!";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.Load += new System.EventHandler(this.MainForm_Load);
this.gBMidiFile.ResumeLayout(false);
this.gBMidiFile.PerformLayout();
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
this.gBParameterSetting.ResumeLayout(false);
this.gBParameterSetting.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudBpm)).EndInit();
this.gBKeySetting.ResumeLayout(false);
this.gBKeyboardSetting.ResumeLayout(false);
this.gBKeyboardSetting.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.tbMidiProcess)).EndInit();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : UserControl1.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.components = (IContainer)new Container();
this.ResetButton = new Button();
this.TextBox = new TextBox();
this.ToolTipProvider = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
this.ResetButton.BackColor = Color.Transparent;
this.ResetButton.Dock = DockStyle.Right;
this.ResetButton.FlatAppearance.BorderSize = 0;
this.ResetButton.FlatStyle = FlatStyle.Flat;
this.ResetButton.BackgroundImage = global::HotkeyControl.Properties.Resources.icons8_reset_64;
this.ResetButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.ResetButton.Location = new Point(227, 0);
this.ResetButton.Name = "ResetButton";
this.ResetButton.Size = new Size(28, 26);
this.ResetButton.TabIndex = 0;
this.ResetButton.TabStop = false;
this.ToolTipProvider.SetToolTip((Control)this.ResetButton, "重置快捷键");
this.ResetButton.UseVisualStyleBackColor = false;
this.ResetButton.Visible = false;
this.ResetButton.Click += new EventHandler(this.ResetButton_Click);
this.TextBox.Dock = DockStyle.Fill;
this.TextBox.Location = new Point(0, 0);
this.TextBox.Name = "TextBox";
this.TextBox.ShortcutsEnabled = false;
this.TextBox.Size = new Size(227, 23);
this.TextBox.TabIndex = 0;
this.TextBox.TextChanged += new EventHandler(this.TextBox_TextChanged);
this.TextBox.KeyDown += new KeyEventHandler(this.TextBox_KeyDown);
this.TextBox.KeyUp += new KeyEventHandler(this.TextBox_KeyUp);
this.TextBox.Leave += new EventHandler(this.TextBox_Leave);
this.AutoScaleDimensions = new SizeF(7f, 16f);
this.AutoScaleMode = AutoScaleMode.Font;
this.Controls.Add((Control)this.TextBox);
this.Controls.Add((Control)this.ResetButton);
this.Font = new Font("Tahoma", 9.75f, FontStyle.Regular, GraphicsUnit.Point, (byte)0);
this.Margin = new Padding(3, 4, 3, 4);
this.Name = nameof(HotKeyControl);
this.Size = new Size((int)byte.MaxValue, 26);
this.ResumeLayout(false);
this.PerformLayout();
}
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 : FormMain.Designer.cs
License : GNU General Public License v3.0
Project Creator : anderson-joyle
License : GNU General Public License v3.0
Project Creator : anderson-joyle
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabelVerbosereplacedle = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabelVerbose = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStrip = new System.Windows.Forms.ToolStrip();
this.toolStripButtonCreate = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButtonCancel = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonAbout = new System.Windows.Forms.ToolStripButton();
this.toolTipFieldType = new System.Windows.Forms.ToolTip(this.components);
this.comboBoxFieldType = new System.Windows.Forms.ComboBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPageGeneral = new System.Windows.Forms.TabPage();
this.textBoxHelpText = new System.Windows.Forms.TextBox();
this.textBoxLabel = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.comboBoxEDTName = new System.Windows.Forms.ComboBox();
this.progressBarExtends = new System.Windows.Forms.ProgressBar();
this.comboBoxExtends = new System.Windows.Forms.ComboBox();
this.labelExtends = new System.Windows.Forms.Label();
this.labelEDTName = new System.Windows.Forms.Label();
this.labelFieldName = new System.Windows.Forms.Label();
this.labelFieldType = new System.Windows.Forms.Label();
this.textBoxFieldName = new System.Windows.Forms.TextBox();
this.toolTipEnum = new System.Windows.Forms.ToolTip(this.components);
this.toolTipFieldName = new System.Windows.Forms.ToolTip(this.components);
this.toolTipStringSize = new System.Windows.Forms.ToolTip(this.components);
this.toolTipEdtName = new System.Windows.Forms.ToolTip(this.components);
this.toolTipExtends = new System.Windows.Forms.ToolTip(this.components);
this.textBoxStrLen = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.statusStrip.SuspendLayout();
this.toolStrip.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPageGeneral.SuspendLayout();
this.SuspendLayout();
//
// statusStrip
//
this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabelVerbosereplacedle,
this.toolStripStatusLabelVerbose});
this.statusStrip.Location = new System.Drawing.Point(0, 302);
this.statusStrip.Name = "statusStrip";
this.statusStrip.Padding = new System.Windows.Forms.Padding(1, 0, 21, 0);
this.statusStrip.Size = new System.Drawing.Size(635, 22);
this.statusStrip.TabIndex = 1;
//
// toolStripStatusLabelVerbosereplacedle
//
this.toolStripStatusLabelVerbosereplacedle.Name = "toolStripStatusLabelVerbosereplacedle";
this.toolStripStatusLabelVerbosereplacedle.Size = new System.Drawing.Size(54, 17);
this.toolStripStatusLabelVerbosereplacedle.Text = "Verbose: ";
//
// toolStripStatusLabelVerbose
//
this.toolStripStatusLabelVerbose.Name = "toolStripStatusLabelVerbose";
this.toolStripStatusLabelVerbose.Size = new System.Drawing.Size(0, 17);
//
// toolStrip
//
this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButtonCreate,
this.toolStripSeparator,
this.toolStripButtonCancel,
this.toolStripButtonAbout});
this.toolStrip.Location = new System.Drawing.Point(0, 0);
this.toolStrip.Name = "toolStrip";
this.toolStrip.Size = new System.Drawing.Size(635, 25);
this.toolStrip.TabIndex = 0;
this.toolStrip.Text = "toolStrip1";
//
// toolStripButtonCreate
//
this.toolStripButtonCreate.Image = global::Addin.AddinResources.accept_button;
this.toolStripButtonCreate.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonCreate.Name = "toolStripButtonCreate";
this.toolStripButtonCreate.Size = new System.Drawing.Size(61, 22);
this.toolStripButtonCreate.Text = "Create";
this.toolStripButtonCreate.Click += new System.EventHandler(this.toolStripButtonCreate_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
// toolStripButtonCancel
//
this.toolStripButtonCancel.Image = global::Addin.AddinResources.cancel;
this.toolStripButtonCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonCancel.Name = "toolStripButtonCancel";
this.toolStripButtonCancel.Size = new System.Drawing.Size(63, 22);
this.toolStripButtonCancel.Text = "Cancel";
this.toolStripButtonCancel.Click += new System.EventHandler(this.toolStripButtonCancel_Click);
//
// toolStripButtonAbout
//
this.toolStripButtonAbout.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButtonAbout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonAbout.Image = global::Addin.AddinResources.information;
this.toolStripButtonAbout.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButtonAbout.Name = "toolStripButtonAbout";
this.toolStripButtonAbout.Size = new System.Drawing.Size(23, 22);
this.toolStripButtonAbout.Click += new System.EventHandler(this.toolStripButtonAbout_Click);
//
// toolTipFieldType
//
this.toolTipFieldType.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipFieldType.ToolTipreplacedle = "Field type";
//
// comboBoxFieldType
//
this.comboBoxFieldType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxFieldType.FormattingEnabled = true;
this.comboBoxFieldType.Location = new System.Drawing.Point(95, 6);
this.comboBoxFieldType.Name = "comboBoxFieldType";
this.comboBoxFieldType.Size = new System.Drawing.Size(215, 26);
this.comboBoxFieldType.TabIndex = 1;
this.toolTipFieldType.SetToolTip(this.comboBoxFieldType, "All D365 primitive field types.");
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPageGeneral);
this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabControl1.Location = new System.Drawing.Point(0, 25);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(635, 277);
this.tabControl1.TabIndex = 2;
//
// tabPageGeneral
//
this.tabPageGeneral.Controls.Add(this.label3);
this.tabPageGeneral.Controls.Add(this.textBoxStrLen);
this.tabPageGeneral.Controls.Add(this.textBoxHelpText);
this.tabPageGeneral.Controls.Add(this.textBoxLabel);
this.tabPageGeneral.Controls.Add(this.label2);
this.tabPageGeneral.Controls.Add(this.label1);
this.tabPageGeneral.Controls.Add(this.comboBoxEDTName);
this.tabPageGeneral.Controls.Add(this.progressBarExtends);
this.tabPageGeneral.Controls.Add(this.comboBoxExtends);
this.tabPageGeneral.Controls.Add(this.labelExtends);
this.tabPageGeneral.Controls.Add(this.labelEDTName);
this.tabPageGeneral.Controls.Add(this.labelFieldName);
this.tabPageGeneral.Controls.Add(this.labelFieldType);
this.tabPageGeneral.Controls.Add(this.comboBoxFieldType);
this.tabPageGeneral.Controls.Add(this.textBoxFieldName);
this.tabPageGeneral.Location = new System.Drawing.Point(4, 27);
this.tabPageGeneral.Name = "tabPageGeneral";
this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(3);
this.tabPageGeneral.Size = new System.Drawing.Size(627, 246);
this.tabPageGeneral.TabIndex = 0;
this.tabPageGeneral.Text = "General";
this.tabPageGeneral.UseVisualStyleBackColor = true;
//
// textBoxHelpText
//
this.textBoxHelpText.Location = new System.Drawing.Point(95, 177);
this.textBoxHelpText.Name = "textBoxHelpText";
this.textBoxHelpText.Size = new System.Drawing.Size(398, 24);
this.textBoxHelpText.TabIndex = 56;
this.toolTipFieldName.SetToolTip(this.textBoxHelpText, "Newly created field name.");
//
// textBoxLabel
//
this.textBoxLabel.Location = new System.Drawing.Point(95, 145);
this.textBoxLabel.Name = "textBoxLabel";
this.textBoxLabel.Size = new System.Drawing.Size(398, 24);
this.textBoxLabel.TabIndex = 55;
this.toolTipFieldName.SetToolTip(this.textBoxLabel, "Newly created field name.");
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(8, 177);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(69, 18);
this.label2.TabIndex = 54;
this.label2.Text = "Help text:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(30, 145);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(47, 18);
this.label1.TabIndex = 53;
this.label1.Text = "Label:";
//
// comboBoxEDTName
//
this.comboBoxEDTName.FormattingEnabled = true;
this.comboBoxEDTName.Location = new System.Drawing.Point(95, 68);
this.comboBoxEDTName.Name = "comboBoxEDTName";
this.comboBoxEDTName.Size = new System.Drawing.Size(398, 26);
this.comboBoxEDTName.Sorted = true;
this.comboBoxEDTName.TabIndex = 4;
//
// progressBarExtends
//
this.progressBarExtends.Location = new System.Drawing.Point(95, 126);
this.progressBarExtends.Name = "progressBarExtends";
this.progressBarExtends.Size = new System.Drawing.Size(398, 10);
this.progressBarExtends.Step = 1;
this.progressBarExtends.TabIndex = 52;
//
// comboBoxExtends
//
this.comboBoxExtends.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.Lisreplacedems;
this.comboBoxExtends.FormattingEnabled = true;
this.comboBoxExtends.Location = new System.Drawing.Point(95, 98);
this.comboBoxExtends.Name = "comboBoxExtends";
this.comboBoxExtends.Size = new System.Drawing.Size(398, 26);
this.comboBoxExtends.Sorted = true;
this.comboBoxExtends.TabIndex = 5;
this.toolTipExtends.SetToolTip(this.comboBoxExtends, "If a new extended data type is given, it\'s possible to set a edt to extend.");
//
// labelExtends
//
this.labelExtends.AutoSize = true;
this.labelExtends.Location = new System.Drawing.Point(26, 101);
this.labelExtends.Name = "labelExtends";
this.labelExtends.Size = new System.Drawing.Size(65, 18);
this.labelExtends.TabIndex = 47;
this.labelExtends.Text = "Extends:";
//
// labelEDTName
//
this.labelEDTName.AutoSize = true;
this.labelEDTName.Location = new System.Drawing.Point(8, 71);
this.labelEDTName.Name = "labelEDTName";
this.labelEDTName.Size = new System.Drawing.Size(83, 18);
this.labelEDTName.TabIndex = 46;
this.labelEDTName.Text = "EDT name:";
//
// labelFieldName
//
this.labelFieldName.AutoSize = true;
this.labelFieldName.Location = new System.Drawing.Point(7, 40);
this.labelFieldName.Name = "labelFieldName";
this.labelFieldName.Size = new System.Drawing.Size(84, 18);
this.labelFieldName.TabIndex = 45;
this.labelFieldName.Text = "Field name:";
//
// labelFieldType
//
this.labelFieldType.AutoSize = true;
this.labelFieldType.Location = new System.Drawing.Point(17, 9);
this.labelFieldType.Name = "labelFieldType";
this.labelFieldType.Size = new System.Drawing.Size(74, 18);
this.labelFieldType.TabIndex = 44;
this.labelFieldType.Text = "Field type:";
//
// textBoxFieldName
//
this.textBoxFieldName.Location = new System.Drawing.Point(95, 38);
this.textBoxFieldName.Name = "textBoxFieldName";
this.textBoxFieldName.Size = new System.Drawing.Size(398, 24);
this.textBoxFieldName.TabIndex = 3;
this.toolTipFieldName.SetToolTip(this.textBoxFieldName, "Newly created field name.");
//
// toolTipEnum
//
this.toolTipEnum.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipEnum.ToolTipreplacedle = "Enum";
//
// toolTipFieldName
//
this.toolTipFieldName.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipFieldName.ToolTipreplacedle = "Field name";
//
// toolTipStringSize
//
this.toolTipStringSize.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipStringSize.ToolTipreplacedle = "String size";
//
// toolTipEdtName
//
this.toolTipEdtName.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipEdtName.ToolTipreplacedle = "Extended data type name";
//
// toolTipExtends
//
this.toolTipExtends.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTipExtends.ToolTipreplacedle = "Extends";
//
// textBoxStrLen
//
this.textBoxStrLen.Location = new System.Drawing.Point(530, 71);
this.textBoxStrLen.Name = "textBoxStrLen";
this.textBoxStrLen.Size = new System.Drawing.Size(53, 24);
this.textBoxStrLen.TabIndex = 57;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(527, 50);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(54, 18);
this.label3.TabIndex = 58;
this.label3.Text = "Str len:";
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(635, 324);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.statusStrip);
this.Controls.Add(this.toolStrip);
this.Margin = new System.Windows.Forms.Padding(6);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormMain";
this.Text = "Add field + edt";
this.Load += new System.EventHandler(this.FormMain_Load);
this.statusStrip.ResumeLayout(false);
this.statusStrip.PerformLayout();
this.toolStrip.ResumeLayout(false);
this.toolStrip.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPageGeneral.ResumeLayout(false);
this.tabPageGeneral.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : CheckboxArrayControl.cs
License : GNU General Public License v3.0
Project Creator : anotak
License : GNU General Public License v3.0
Project Creator : anotak
public CheckBox Add(string text, object tag, string tooltiptext)
{
CheckBox output = Add(text, tag);
if (!string.IsNullOrEmpty(tooltiptext))
{
if (tooltipcontrol == null)
{
tooltipcontrol = new ToolTip();
tooltipcontrol.AutoPopDelay = 32767;
}
tooltipcontrol.SetToolTip(output, tooltiptext);
}
return output;
}
19
View Source File : HOYASettingsPanel.Designer.cs
License : BSD 3-Clause "New" or "Revised" License
Project Creator : anoyetta
License : BSD 3-Clause "New" or "Revised" License
Project Creator : anoyetta
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.SpeakerComboBox = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.EmotionComboBox = new System.Windows.Forms.ComboBox();
this.EmotionLevelComboBox = new System.Windows.Forms.ComboBox();
this.PitchTrackBar = new System.Windows.Forms.TrackBar();
this.PitchTextBox = new System.Windows.Forms.TextBox();
this.SpeedTextBox = new System.Windows.Forms.TextBox();
this.PitchValueLabel = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.VolumeTextBox = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.VolumeTrackBar = new System.Windows.Forms.TrackBar();
this.SpeedTrackBar = new System.Windows.Forms.TrackBar();
this.DefaultButton = new System.Windows.Forms.Button();
this.APIKeyTextBox = new System.Windows.Forms.TextBox();
this.APIKeyLinkLabel = new System.Windows.Forms.LinkLabel();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
((System.ComponentModel.ISupportInitialize)(this.PitchTrackBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.VolumeTrackBar)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.SpeedTrackBar)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(3, 56);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(29, 12);
this.label1.TabIndex = 0;
this.label1.Text = "話者";
//
// SpeakerComboBox
//
this.SpeakerComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.SpeakerComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.SpeakerComboBox.FormattingEnabled = true;
this.SpeakerComboBox.Location = new System.Drawing.Point(82, 53);
this.SpeakerComboBox.Name = "SpeakerComboBox";
this.SpeakerComboBox.Size = new System.Drawing.Size(292, 20);
this.SpeakerComboBox.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(3, 82);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(29, 12);
this.label2.TabIndex = 2;
this.label2.Text = "感情";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(3, 108);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(58, 12);
this.label3.TabIndex = 3;
this.label3.Text = "感情レベル";
//
// EmotionComboBox
//
this.EmotionComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.EmotionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.EmotionComboBox.FormattingEnabled = true;
this.EmotionComboBox.Location = new System.Drawing.Point(82, 79);
this.EmotionComboBox.Name = "EmotionComboBox";
this.EmotionComboBox.Size = new System.Drawing.Size(292, 20);
this.EmotionComboBox.TabIndex = 2;
//
// EmotionLevelComboBox
//
this.EmotionLevelComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.EmotionLevelComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.EmotionLevelComboBox.FormattingEnabled = true;
this.EmotionLevelComboBox.Location = new System.Drawing.Point(82, 105);
this.EmotionLevelComboBox.Name = "EmotionLevelComboBox";
this.EmotionLevelComboBox.Size = new System.Drawing.Size(292, 20);
this.EmotionLevelComboBox.TabIndex = 3;
//
// PitchTrackBar
//
this.PitchTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.PitchTrackBar.LargeChange = 10;
this.PitchTrackBar.Location = new System.Drawing.Point(113, 190);
this.PitchTrackBar.Maximum = 200;
this.PitchTrackBar.Minimum = 50;
this.PitchTrackBar.Name = "PitchTrackBar";
this.PitchTrackBar.Size = new System.Drawing.Size(261, 45);
this.PitchTrackBar.TabIndex = 6;
this.PitchTrackBar.TickFrequency = 10;
this.PitchTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
this.PitchTrackBar.Value = 50;
//
// PitchTextBox
//
this.PitchTextBox.BackColor = System.Drawing.SystemColors.Control;
this.PitchTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.PitchTextBox.Location = new System.Drawing.Point(82, 187);
this.PitchTextBox.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
this.PitchTextBox.Name = "PitchTextBox";
this.PitchTextBox.Size = new System.Drawing.Size(25, 12);
this.PitchTextBox.TabIndex = 25;
this.PitchTextBox.TabStop = false;
this.PitchTextBox.Text = "100";
this.PitchTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// SpeedTextBox
//
this.SpeedTextBox.BackColor = System.Drawing.SystemColors.Control;
this.SpeedTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.SpeedTextBox.Location = new System.Drawing.Point(82, 163);
this.SpeedTextBox.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
this.SpeedTextBox.Name = "SpeedTextBox";
this.SpeedTextBox.Size = new System.Drawing.Size(25, 12);
this.SpeedTextBox.TabIndex = 24;
this.SpeedTextBox.TabStop = false;
this.SpeedTextBox.Text = "100";
this.SpeedTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// PitchValueLabel
//
this.PitchValueLabel.AutoSize = true;
this.PitchValueLabel.Location = new System.Drawing.Point(3, 187);
this.PitchValueLabel.Name = "PitchValueLabel";
this.PitchValueLabel.Size = new System.Drawing.Size(29, 12);
this.PitchValueLabel.TabIndex = 23;
this.PitchValueLabel.Text = "音程";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(3, 163);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(42, 12);
this.label8.TabIndex = 22;
this.label8.Text = "スピード";
//
// VolumeTextBox
//
this.VolumeTextBox.BackColor = System.Drawing.SystemColors.Control;
this.VolumeTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.VolumeTextBox.Location = new System.Drawing.Point(82, 139);
this.VolumeTextBox.Margin = new System.Windows.Forms.Padding(3, 6, 3, 6);
this.VolumeTextBox.Name = "VolumeTextBox";
this.VolumeTextBox.Size = new System.Drawing.Size(25, 12);
this.VolumeTextBox.TabIndex = 21;
this.VolumeTextBox.TabStop = false;
this.VolumeTextBox.Text = "100";
this.VolumeTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(3, 139);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(50, 12);
this.label7.TabIndex = 20;
this.label7.Text = "ボリューム";
//
// VolumeTrackBar
//
this.VolumeTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.VolumeTrackBar.LargeChange = 10;
this.VolumeTrackBar.Location = new System.Drawing.Point(113, 139);
this.VolumeTrackBar.Maximum = 200;
this.VolumeTrackBar.Minimum = 50;
this.VolumeTrackBar.Name = "VolumeTrackBar";
this.VolumeTrackBar.Size = new System.Drawing.Size(261, 45);
this.VolumeTrackBar.TabIndex = 4;
this.VolumeTrackBar.TickFrequency = 10;
this.VolumeTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
this.VolumeTrackBar.Value = 100;
//
// SpeedTrackBar
//
this.SpeedTrackBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.SpeedTrackBar.LargeChange = 20;
this.SpeedTrackBar.Location = new System.Drawing.Point(113, 163);
this.SpeedTrackBar.Maximum = 400;
this.SpeedTrackBar.Minimum = 50;
this.SpeedTrackBar.Name = "SpeedTrackBar";
this.SpeedTrackBar.Size = new System.Drawing.Size(261, 45);
this.SpeedTrackBar.TabIndex = 5;
this.SpeedTrackBar.TickFrequency = 20;
this.SpeedTrackBar.TickStyle = System.Windows.Forms.TickStyle.None;
this.SpeedTrackBar.Value = 100;
//
// DefaultButton
//
this.DefaultButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.DefaultButton.Location = new System.Drawing.Point(5, 225);
this.DefaultButton.Name = "DefaultButton";
this.DefaultButton.Size = new System.Drawing.Size(75, 23);
this.DefaultButton.TabIndex = 7;
this.DefaultButton.Text = "リセット";
this.DefaultButton.UseVisualStyleBackColor = true;
//
// APIKeyTextBox
//
this.APIKeyTextBox.Location = new System.Drawing.Point(82, 23);
this.APIKeyTextBox.Name = "APIKeyTextBox";
this.APIKeyTextBox.Size = new System.Drawing.Size(292, 19);
this.APIKeyTextBox.TabIndex = 0;
//
// APIKeyLinkLabel
//
this.APIKeyLinkLabel.AutoSize = true;
this.APIKeyLinkLabel.Location = new System.Drawing.Point(3, 26);
this.APIKeyLinkLabel.Name = "APIKeyLinkLabel";
this.APIKeyLinkLabel.Size = new System.Drawing.Size(46, 12);
this.APIKeyLinkLabel.TabIndex = 30;
this.APIKeyLinkLabel.TabStop = true;
this.APIKeyLinkLabel.Text = "API Key";
this.toolTip.SetToolTip(this.APIKeyLinkLabel, "無料登録してAPI Keyを取得する");
//
// HOYASettingsPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.APIKeyLinkLabel);
this.Controls.Add(this.APIKeyTextBox);
this.Controls.Add(this.DefaultButton);
this.Controls.Add(this.PitchTrackBar);
this.Controls.Add(this.SpeedTrackBar);
this.Controls.Add(this.PitchTextBox);
this.Controls.Add(this.SpeedTextBox);
this.Controls.Add(this.PitchValueLabel);
this.Controls.Add(this.label8);
this.Controls.Add(this.VolumeTextBox);
this.Controls.Add(this.label7);
this.Controls.Add(this.VolumeTrackBar);
this.Controls.Add(this.EmotionLevelComboBox);
this.Controls.Add(this.EmotionComboBox);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.SpeakerComboBox);
this.Controls.Add(this.label1);
this.Name = "HOYASettingsPanel";
this.Size = new System.Drawing.Size(377, 251);
((System.ComponentModel.ISupportInitialize)(this.PitchTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.VolumeTrackBar)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.SpeedTrackBar)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmFromSpecificFolder.Designer.cs
License : GNU General Public License v3.0
Project Creator : antikmozib
License : GNU General Public License v3.0
Project Creator : antikmozib
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.cbSkipSamePath = new System.Windows.Forms.CheckBox();
this.cbRemoveFromList = new System.Windows.Forms.CheckBox();
this.radioButton2 = new System.Windows.Forms.RadioButton();
this.radioButton1 = new System.Windows.Forms.RadioButton();
this.checkBox2 = new System.Windows.Forms.CheckBox();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
this.lblExtHelp = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.groupBox1.SuspendLayout();
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(56, 15);
this.label1.TabIndex = 0;
this.label1.Text = "Location:";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(74, 12);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(272, 23);
this.textBox1.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(352, 12);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(104, 23);
this.button1.TabIndex = 2;
this.button1.Text = "&Browse";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.cbSkipSamePath);
this.groupBox1.Controls.Add(this.cbRemoveFromList);
this.groupBox1.Controls.Add(this.radioButton2);
this.groupBox1.Controls.Add(this.radioButton1);
this.groupBox1.Location = new System.Drawing.Point(15, 79);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(441, 80);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Action";
//
// cbSkipSamePath
//
this.cbSkipSamePath.AutoSize = true;
this.cbSkipSamePath.Enabled = false;
this.cbSkipSamePath.Location = new System.Drawing.Point(112, 47);
this.cbSkipSamePath.Name = "cbSkipSamePath";
this.cbSkipSamePath.Size = new System.Drawing.Size(262, 19);
this.cbSkipSamePath.TabIndex = 4;
this.cbSkipSamePath.Text = "&Ignore duplicate files from the same location";
this.toolTip1.SetToolTip(this.cbSkipSamePath, "When a set of duplicate files are all from the same location, do not action. This" +
" ensures duplicate files within the same folder are all taken care of.");
this.cbSkipSamePath.UseVisualStyleBackColor = true;
//
// cbRemoveFromList
//
this.cbRemoveFromList.AutoSize = true;
this.cbRemoveFromList.Location = new System.Drawing.Point(112, 23);
this.cbRemoveFromList.Name = "cbRemoveFromList";
this.cbRemoveFromList.Size = new System.Drawing.Size(139, 19);
this.cbRemoveFromList.TabIndex = 3;
this.cbRemoveFromList.Text = "&Also remove from list";
this.cbRemoveFromList.UseVisualStyleBackColor = true;
//
// radioButton2
//
this.radioButton2.AutoSize = true;
this.radioButton2.Location = new System.Drawing.Point(6, 47);
this.radioButton2.Name = "radioButton2";
this.radioButton2.Size = new System.Drawing.Size(52, 19);
this.radioButton2.TabIndex = 2;
this.radioButton2.Text = "&Mark";
this.radioButton2.UseVisualStyleBackColor = true;
//
// radioButton1
//
this.radioButton1.AutoSize = true;
this.radioButton1.Checked = true;
this.radioButton1.Location = new System.Drawing.Point(6, 22);
this.radioButton1.Name = "radioButton1";
this.radioButton1.Size = new System.Drawing.Size(67, 19);
this.radioButton1.TabIndex = 0;
this.radioButton1.TabStop = true;
this.radioButton1.Text = "&Unmark";
this.radioButton1.UseVisualStyleBackColor = true;
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
//
// checkBox2
//
this.checkBox2.AutoSize = true;
this.checkBox2.Checked = true;
this.checkBox2.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBox2.Location = new System.Drawing.Point(15, 54);
this.checkBox2.Name = "checkBox2";
this.checkBox2.Size = new System.Drawing.Size(139, 19);
this.checkBox2.TabIndex = 4;
this.checkBox2.Text = "Including &sub-folders";
this.checkBox2.UseVisualStyleBackColor = true;
//
// button2
//
this.button2.Location = new System.Drawing.Point(127, 165);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(104, 24);
this.button2.TabIndex = 6;
this.button2.Text = "&OK";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
this.button3.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.button3.Location = new System.Drawing.Point(239, 165);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(104, 24);
this.button3.TabIndex = 7;
this.button3.Text = "&Cancel";
this.button3.UseVisualStyleBackColor = true;
//
// lblExtHelp
//
this.lblExtHelp.AutoSize = true;
this.lblExtHelp.Location = new System.Drawing.Point(239, 55);
this.lblExtHelp.Name = "lblExtHelp";
this.lblExtHelp.Size = new System.Drawing.Size(219, 15);
this.lblExtHelp.TabIndex = 8;
this.lblExtHelp.Text = "Extension format: *.mp3;*.wma;*.txt etc.";
//
// toolTip1
//
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.toolTip1.ToolTipreplacedle = "More Info";
//
// frmFromSpecificFolder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.button3;
this.ClientSize = new System.Drawing.Size(470, 197);
this.Controls.Add(this.lblExtHelp);
this.Controls.Add(this.button3);
this.Controls.Add(this.button2);
this.Controls.Add(this.checkBox2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.button1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmFromSpecificFolder";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Mark/Unmark From Specific Folder";
this.Load += new System.EventHandler(this.frmFromSpecificFolder_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : BuildingInputForm.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void BuildingInputForm_Load(object sender, EventArgs e)
{
// Set ToolTips
// Natural Ventilation
hizardToolTip.SetToolTip(this.checkBoxNaturalVentilation, toolTipNaturalVentilationInfoMessage);
hizardToolTip.SetToolTip(this.label45, toolTipNaturalVentilationInfoMessage);
// Setbacks
hizardToolTip.SetToolTip(this.txtHeatingSetback, toolTipSetbackInfoMessage);
hizardToolTip.SetToolTip(this.label38, toolTipSetbackInfoMessage);
hizardToolTip.SetToolTip(this.txtCoolingSetback, toolTipSetbackInfoMessage);
hizardToolTip.SetToolTip(this.label41, toolTipSetbackInfoMessage);
hizardToolTip.SetToolTip(this.txtFloorArea, toolTipFloorArea);
hizardToolTip.SetToolTip(this.label7, toolTipFloorArea);
RenderState();
}
19
View Source File : BuildingInputForm.cs
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
License : GNU General Public License v3.0
Project Creator : architecture-building-systems
private void checkBoxAdaptiveComfort_CheckedChanged(object sender, EventArgs e)
{
if (_rendering)
{
return;
}
var checkBox = (CheckBox)sender;
hizardToolTip.SetToolTip(checkBox,
ShouldSetpointsBeAdaptive(State.RoomType)
? toolTipAdaptiveComfortInfoMessage
: toolTipAdaptiveComfortWarningMessage(State.RoomType));
if (checkBox.Checked)
{
txtHeatingSetPoint.Enabled = false;
txtCoolingSetPoint.Enabled = false;
txtHeatingSetback.Enabled = false;
txtCoolingSetback.Enabled = false;
}
else
{
txtHeatingSetPoint.Enabled = true;
txtCoolingSetPoint.Enabled = true;
//txtHeatingSetback.Enabled = true;
//txtCoolingSetback.Enabled = true;
}
State.RunAdaptiveComfort = checkBox.Checked;
RenderState();
}
19
View Source File : ComponentWizardPage.cs
License : MIT License
Project Creator : aspose-pdf
License : MIT License
Project Creator : aspose-pdf
private void setTooltip(Control control, string message)
{
ToolTip buttonToolTip = new ToolTip();
buttonToolTip.ToolTipreplacedle = control.Text;
buttonToolTip.UseFading = true;
buttonToolTip.UseAnimation = true;
buttonToolTip.IsBalloon = true;
buttonToolTip.ToolTipIcon = ToolTipIcon.Info;
buttonToolTip.ShowAlways = true;
buttonToolTip.AutoPopDelay = 90000;
buttonToolTip.InitialDelay = 100;
buttonToolTip.ReshowDelay = 100;
buttonToolTip.SetToolTip(control, message);
}
19
View Source File : MainForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : audiamus
License : GNU General Public License v3.0
Project Creator : audiamus
private void InitializeComponent () {
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.grpBoxAaxFiles = new System.Windows.Forms.GroupBox();
this.listViewAaxFiles = new System.Windows.Forms.ListView();
this.clmHdrAlbum = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrArtist = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrDuration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrYear = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrNarrator = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrSampleRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrBitRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrFileDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.btnRem = new System.Windows.Forms.Button();
this.btnAddFile = new System.Windows.Forms.Button();
this.grpBoxMode = new System.Windows.Forms.GroupBox();
this.panelTrkLen = new System.Windows.Forms.Panel();
this.lblDuration = new System.Windows.Forms.Label();
this.lblTraclLen = new System.Windows.Forms.Label();
this.numUpDnTrkLen = new System.Windows.Forms.NumericUpDown();
this.radBtnTimeSplit = new System.Windows.Forms.RadioButton();
this.radBtnChaptSplit = new System.Windows.Forms.RadioButton();
this.radBtnChapt = new System.Windows.Forms.RadioButton();
this.radBtnSingle = new System.Windows.Forms.RadioButton();
this.panelExec = new System.Windows.Forms.Panel();
this.vprogbarCpu = new audiamus.aux.win.VerticalProgressBar();
this.vprogbarNumProc = new audiamus.aux.win.VerticalProgressBar();
this.lblProgress = new System.Windows.Forms.Label();
this.btnAbort = new System.Windows.Forms.Button();
this.progressBarPart = new System.Windows.Forms.ProgressBar();
this.progressBarTrack = new System.Windows.Forms.ProgressBar();
this.btnConvert = new System.Windows.Forms.Button();
this.grpBoxFormat = new System.Windows.Forms.GroupBox();
this.radBtnMp4 = new System.Windows.Forms.RadioButton();
this.radBtnMp3 = new System.Windows.Forms.RadioButton();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.btnSaveTo = new System.Windows.Forms.Button();
this.grpBoxNaming = new System.Windows.Forms.GroupBox();
this.propGridNaming = new System.Windows.Forms.PropertyGrid();
this.panelTop = new System.Windows.Forms.Panel();
this.tableLayoutSettings = new System.Windows.Forms.TableLayoutPanel();
this.panelSettingsLeft = new System.Windows.Forms.Panel();
this.grpBoxDest = new System.Windows.Forms.GroupBox();
this.lblSaveTo = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiDetails = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiPreview = new System.Windows.Forms.ToolStripMenuItem();
this.grpBoxAaxFiles.SuspendLayout();
this.grpBoxMode.SuspendLayout();
this.panelTrkLen.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numUpDnTrkLen)).BeginInit();
this.panelExec.SuspendLayout();
this.grpBoxFormat.SuspendLayout();
this.grpBoxNaming.SuspendLayout();
this.panelTop.SuspendLayout();
this.tableLayoutSettings.SuspendLayout();
this.panelSettingsLeft.SuspendLayout();
this.grpBoxDest.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// grpBoxAaxFiles
//
resources.ApplyResources(this.grpBoxAaxFiles, "grpBoxAaxFiles");
this.grpBoxAaxFiles.Controls.Add(this.listViewAaxFiles);
this.grpBoxAaxFiles.Controls.Add(this.btnRem);
this.grpBoxAaxFiles.Controls.Add(this.btnAddFile);
this.grpBoxAaxFiles.Name = "grpBoxAaxFiles";
this.grpBoxAaxFiles.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxAaxFiles, resources.GetString("grpBoxAaxFiles.ToolTip"));
//
// listViewAaxFiles
//
resources.ApplyResources(this.listViewAaxFiles, "listViewAaxFiles");
this.listViewAaxFiles.AllowDrop = true;
this.listViewAaxFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.clmHdrAlbum,
this.clmHdrArtist,
this.clmHdrSize,
this.clmHdrDuration,
this.clmHdrYear,
this.clmHdrNarrator,
this.clmHdrSampleRate,
this.clmHdrBitRate,
this.clmHdrFileDate});
this.listViewAaxFiles.FullRowSelect = true;
this.listViewAaxFiles.GridLines = true;
this.listViewAaxFiles.HideSelection = false;
this.listViewAaxFiles.Name = "listViewAaxFiles";
this.listViewAaxFiles.SmallImageList = this.imageList1;
this.toolTip1.SetToolTip(this.listViewAaxFiles, resources.GetString("listViewAaxFiles.ToolTip"));
this.listViewAaxFiles.UseCompatibleStateImageBehavior = false;
this.listViewAaxFiles.View = System.Windows.Forms.View.Details;
this.listViewAaxFiles.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewAaxFiles_ColumnClick);
this.listViewAaxFiles.SelectedIndexChanged += new System.EventHandler(this.listViewAaxFiles_SelectedIndexChanged);
this.listViewAaxFiles.SizeChanged += new System.EventHandler(this.listViewAaxFiles_SizeChanged);
this.listViewAaxFiles.DragDrop += new System.Windows.Forms.DragEventHandler(this.listViewAaxFiles_DragDrop);
this.listViewAaxFiles.DragEnter += new System.Windows.Forms.DragEventHandler(this.listViewAaxFiles_DragEnter);
this.listViewAaxFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listViewAaxFiles_KeyDown);
this.listViewAaxFiles.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listViewAaxFiles_MouseClick);
//
// clmHdrAlbum
//
resources.ApplyResources(this.clmHdrAlbum, "clmHdrAlbum");
//
// clmHdrArtist
//
resources.ApplyResources(this.clmHdrArtist, "clmHdrArtist");
//
// clmHdrSize
//
resources.ApplyResources(this.clmHdrSize, "clmHdrSize");
//
// clmHdrDuration
//
resources.ApplyResources(this.clmHdrDuration, "clmHdrDuration");
//
// clmHdrYear
//
resources.ApplyResources(this.clmHdrYear, "clmHdrYear");
//
// clmHdrNarrator
//
resources.ApplyResources(this.clmHdrNarrator, "clmHdrNarrator");
//
// clmHdrSampleRate
//
resources.ApplyResources(this.clmHdrSampleRate, "clmHdrSampleRate");
//
// clmHdrBitRate
//
resources.ApplyResources(this.clmHdrBitRate, "clmHdrBitRate");
//
// clmHdrFileDate
//
resources.ApplyResources(this.clmHdrFileDate, "clmHdrFileDate");
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "blank.png");
this.imageList1.Images.SetKeyName(1, "added.png");
//
// btnRem
//
resources.ApplyResources(this.btnRem, "btnRem");
this.btnRem.Name = "btnRem";
this.toolTip1.SetToolTip(this.btnRem, resources.GetString("btnRem.ToolTip"));
this.btnRem.UseVisualStyleBackColor = true;
this.btnRem.Click += new System.EventHandler(this.btnRem_Click);
//
// btnAddFile
//
resources.ApplyResources(this.btnAddFile, "btnAddFile");
this.btnAddFile.Name = "btnAddFile";
this.toolTip1.SetToolTip(this.btnAddFile, resources.GetString("btnAddFile.ToolTip"));
this.btnAddFile.UseVisualStyleBackColor = true;
this.btnAddFile.Click += new System.EventHandler(this.btnAddFile_Click);
//
// grpBoxMode
//
resources.ApplyResources(this.grpBoxMode, "grpBoxMode");
this.grpBoxMode.Controls.Add(this.panelTrkLen);
this.grpBoxMode.Controls.Add(this.radBtnTimeSplit);
this.grpBoxMode.Controls.Add(this.radBtnChaptSplit);
this.grpBoxMode.Controls.Add(this.radBtnChapt);
this.grpBoxMode.Controls.Add(this.radBtnSingle);
this.grpBoxMode.Name = "grpBoxMode";
this.grpBoxMode.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxMode, resources.GetString("grpBoxMode.ToolTip"));
//
// panelTrkLen
//
resources.ApplyResources(this.panelTrkLen, "panelTrkLen");
this.panelTrkLen.Controls.Add(this.lblDuration);
this.panelTrkLen.Controls.Add(this.lblTraclLen);
this.panelTrkLen.Controls.Add(this.numUpDnTrkLen);
this.panelTrkLen.Name = "panelTrkLen";
this.toolTip1.SetToolTip(this.panelTrkLen, resources.GetString("panelTrkLen.ToolTip"));
//
// lblDuration
//
resources.ApplyResources(this.lblDuration, "lblDuration");
this.lblDuration.Name = "lblDuration";
this.toolTip1.SetToolTip(this.lblDuration, resources.GetString("lblDuration.ToolTip"));
//
// lblTraclLen
//
resources.ApplyResources(this.lblTraclLen, "lblTraclLen");
this.lblTraclLen.Name = "lblTraclLen";
this.toolTip1.SetToolTip(this.lblTraclLen, resources.GetString("lblTraclLen.ToolTip"));
//
// numUpDnTrkLen
//
resources.ApplyResources(this.numUpDnTrkLen, "numUpDnTrkLen");
this.numUpDnTrkLen.Maximum = new decimal(new int[] {
30,
0,
0,
0});
this.numUpDnTrkLen.Minimum = new decimal(new int[] {
3,
0,
0,
0});
this.numUpDnTrkLen.Name = "numUpDnTrkLen";
this.toolTip1.SetToolTip(this.numUpDnTrkLen, resources.GetString("numUpDnTrkLen.ToolTip"));
this.numUpDnTrkLen.Value = new decimal(new int[] {
5,
0,
0,
0});
this.numUpDnTrkLen.ValueChanged += new System.EventHandler(this.numUpDnTrkLen_ValueChanged);
//
// radBtnTimeSplit
//
resources.ApplyResources(this.radBtnTimeSplit, "radBtnTimeSplit");
this.radBtnTimeSplit.Name = "radBtnTimeSplit";
this.radBtnTimeSplit.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnTimeSplit, resources.GetString("radBtnTimeSplit.ToolTip"));
this.radBtnTimeSplit.UseVisualStyleBackColor = true;
this.radBtnTimeSplit.CheckedChanged += new System.EventHandler(this.radBtnTimeSplit_CheckedChanged);
//
// radBtnChaptSplit
//
resources.ApplyResources(this.radBtnChaptSplit, "radBtnChaptSplit");
this.radBtnChaptSplit.Name = "radBtnChaptSplit";
this.radBtnChaptSplit.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnChaptSplit, resources.GetString("radBtnChaptSplit.ToolTip"));
this.radBtnChaptSplit.UseVisualStyleBackColor = true;
this.radBtnChaptSplit.CheckedChanged += new System.EventHandler(this.radBtnChaptSplit_CheckedChanged);
//
// radBtnChapt
//
resources.ApplyResources(this.radBtnChapt, "radBtnChapt");
this.radBtnChapt.Name = "radBtnChapt";
this.radBtnChapt.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnChapt, resources.GetString("radBtnChapt.ToolTip"));
this.radBtnChapt.UseVisualStyleBackColor = true;
this.radBtnChapt.CheckedChanged += new System.EventHandler(this.radBtnChapt_CheckedChanged);
//
// radBtnSingle
//
resources.ApplyResources(this.radBtnSingle, "radBtnSingle");
this.radBtnSingle.Name = "radBtnSingle";
this.radBtnSingle.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnSingle, resources.GetString("radBtnSingle.ToolTip"));
this.radBtnSingle.UseVisualStyleBackColor = true;
this.radBtnSingle.CheckedChanged += new System.EventHandler(this.radBtnSingle_CheckedChanged);
//
// panelExec
//
resources.ApplyResources(this.panelExec, "panelExec");
this.panelExec.Controls.Add(this.vprogbarCpu);
this.panelExec.Controls.Add(this.vprogbarNumProc);
this.panelExec.Controls.Add(this.lblProgress);
this.panelExec.Controls.Add(this.btnAbort);
this.panelExec.Controls.Add(this.progressBarPart);
this.panelExec.Controls.Add(this.progressBarTrack);
this.panelExec.Controls.Add(this.btnConvert);
this.panelExec.Name = "panelExec";
this.toolTip1.SetToolTip(this.panelExec, resources.GetString("panelExec.ToolTip"));
//
// vprogbarCpu
//
resources.ApplyResources(this.vprogbarCpu, "vprogbarCpu");
this.vprogbarCpu.Name = "vprogbarCpu";
this.toolTip1.SetToolTip(this.vprogbarCpu, resources.GetString("vprogbarCpu.ToolTip"));
//
// vprogbarNumProc
//
resources.ApplyResources(this.vprogbarNumProc, "vprogbarNumProc");
this.vprogbarNumProc.Name = "vprogbarNumProc";
this.toolTip1.SetToolTip(this.vprogbarNumProc, resources.GetString("vprogbarNumProc.ToolTip"));
//
// lblProgress
//
resources.ApplyResources(this.lblProgress, "lblProgress");
this.lblProgress.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblProgress.Name = "lblProgress";
this.toolTip1.SetToolTip(this.lblProgress, resources.GetString("lblProgress.ToolTip"));
//
// btnAbort
//
resources.ApplyResources(this.btnAbort, "btnAbort");
this.btnAbort.Name = "btnAbort";
this.toolTip1.SetToolTip(this.btnAbort, resources.GetString("btnAbort.ToolTip"));
this.btnAbort.UseVisualStyleBackColor = true;
this.btnAbort.Click += new System.EventHandler(this.btnAbort_Click);
//
// progressBarPart
//
resources.ApplyResources(this.progressBarPart, "progressBarPart");
this.progressBarPart.Maximum = 1000;
this.progressBarPart.Name = "progressBarPart";
this.toolTip1.SetToolTip(this.progressBarPart, resources.GetString("progressBarPart.ToolTip"));
//
// progressBarTrack
//
resources.ApplyResources(this.progressBarTrack, "progressBarTrack");
this.progressBarTrack.Maximum = 1000;
this.progressBarTrack.Name = "progressBarTrack";
this.toolTip1.SetToolTip(this.progressBarTrack, resources.GetString("progressBarTrack.ToolTip"));
//
// btnConvert
//
resources.ApplyResources(this.btnConvert, "btnConvert");
this.btnConvert.Name = "btnConvert";
this.toolTip1.SetToolTip(this.btnConvert, resources.GetString("btnConvert.ToolTip"));
this.btnConvert.UseVisualStyleBackColor = true;
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
//
// grpBoxFormat
//
resources.ApplyResources(this.grpBoxFormat, "grpBoxFormat");
this.grpBoxFormat.Controls.Add(this.radBtnMp4);
this.grpBoxFormat.Controls.Add(this.radBtnMp3);
this.grpBoxFormat.Name = "grpBoxFormat";
this.grpBoxFormat.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxFormat, resources.GetString("grpBoxFormat.ToolTip"));
//
// radBtnMp4
//
resources.ApplyResources(this.radBtnMp4, "radBtnMp4");
this.radBtnMp4.Name = "radBtnMp4";
this.radBtnMp4.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnMp4, resources.GetString("radBtnMp4.ToolTip"));
this.radBtnMp4.UseVisualStyleBackColor = true;
this.radBtnMp4.CheckedChanged += new System.EventHandler(this.radBtnM4A_CheckedChanged);
//
// radBtnMp3
//
resources.ApplyResources(this.radBtnMp3, "radBtnMp3");
this.radBtnMp3.Name = "radBtnMp3";
this.radBtnMp3.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnMp3, resources.GetString("radBtnMp3.ToolTip"));
this.radBtnMp3.UseVisualStyleBackColor = true;
this.radBtnMp3.CheckedChanged += new System.EventHandler(this.radBtnMp3_CheckedChanged);
//
// btnSaveTo
//
resources.ApplyResources(this.btnSaveTo, "btnSaveTo");
this.btnSaveTo.Name = "btnSaveTo";
this.toolTip1.SetToolTip(this.btnSaveTo, resources.GetString("btnSaveTo.ToolTip"));
this.btnSaveTo.UseVisualStyleBackColor = true;
this.btnSaveTo.Click += new System.EventHandler(this.btnSaveTo_Click);
//
// grpBoxNaming
//
resources.ApplyResources(this.grpBoxNaming, "grpBoxNaming");
this.grpBoxNaming.Controls.Add(this.propGridNaming);
this.grpBoxNaming.Name = "grpBoxNaming";
this.grpBoxNaming.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxNaming, resources.GetString("grpBoxNaming.ToolTip"));
//
// propGridNaming
//
resources.ApplyResources(this.propGridNaming, "propGridNaming");
this.propGridNaming.Name = "propGridNaming";
this.propGridNaming.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this.propGridNaming.ToolbarVisible = false;
this.toolTip1.SetToolTip(this.propGridNaming, resources.GetString("propGridNaming.ToolTip"));
this.propGridNaming.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propGridNaming_PropertyValueChanged);
//
// panelTop
//
resources.ApplyResources(this.panelTop, "panelTop");
this.panelTop.Controls.Add(this.grpBoxAaxFiles);
this.panelTop.Controls.Add(this.tableLayoutSettings);
this.panelTop.Name = "panelTop";
this.toolTip1.SetToolTip(this.panelTop, resources.GetString("panelTop.ToolTip"));
//
// tableLayoutSettings
//
resources.ApplyResources(this.tableLayoutSettings, "tableLayoutSettings");
this.tableLayoutSettings.Controls.Add(this.panelSettingsLeft, 0, 0);
this.tableLayoutSettings.Controls.Add(this.grpBoxNaming, 1, 0);
this.tableLayoutSettings.Name = "tableLayoutSettings";
this.toolTip1.SetToolTip(this.tableLayoutSettings, resources.GetString("tableLayoutSettings.ToolTip"));
//
// panelSettingsLeft
//
resources.ApplyResources(this.panelSettingsLeft, "panelSettingsLeft");
this.panelSettingsLeft.Controls.Add(this.grpBoxMode);
this.panelSettingsLeft.Controls.Add(this.grpBoxFormat);
this.panelSettingsLeft.Controls.Add(this.grpBoxDest);
this.panelSettingsLeft.Name = "panelSettingsLeft";
this.toolTip1.SetToolTip(this.panelSettingsLeft, resources.GetString("panelSettingsLeft.ToolTip"));
//
// grpBoxDest
//
resources.ApplyResources(this.grpBoxDest, "grpBoxDest");
this.grpBoxDest.Controls.Add(this.lblSaveTo);
this.grpBoxDest.Controls.Add(this.btnSaveTo);
this.grpBoxDest.Name = "grpBoxDest";
this.grpBoxDest.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxDest, resources.GetString("grpBoxDest.ToolTip"));
//
// lblSaveTo
//
resources.ApplyResources(this.lblSaveTo, "lblSaveTo");
this.lblSaveTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblSaveTo.Name = "lblSaveTo";
this.toolTip1.SetToolTip(this.lblSaveTo, resources.GetString("lblSaveTo.ToolTip"));
this.lblSaveTo.SizeChanged += new System.EventHandler(this.lblSaveTo_SizeChanged);
//
// contextMenuStrip1
//
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiDetails,
this.tsmiPreview});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.toolTip1.SetToolTip(this.contextMenuStrip1, resources.GetString("contextMenuStrip1.ToolTip"));
//
// tsmiDetails
//
resources.ApplyResources(this.tsmiDetails, "tsmiDetails");
this.tsmiDetails.Name = "tsmiDetails";
this.tsmiDetails.Click += new System.EventHandler(this.tsmiDetails_Click);
//
// tsmiPreview
//
resources.ApplyResources(this.tsmiPreview, "tsmiPreview");
this.tsmiPreview.Name = "tsmiPreview";
this.tsmiPreview.Click += new System.EventHandler(this.tsmiPreview_Click);
//
// MainForm
//
this.AcceptButton = this.btnAddFile;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.panelTop);
this.Controls.Add(this.panelExec);
this.KeyPreview = true;
this.Name = "MainForm";
this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.grpBoxAaxFiles.ResumeLayout(false);
this.grpBoxMode.ResumeLayout(false);
this.grpBoxMode.PerformLayout();
this.panelTrkLen.ResumeLayout(false);
this.panelTrkLen.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numUpDnTrkLen)).EndInit();
this.panelExec.ResumeLayout(false);
this.grpBoxFormat.ResumeLayout(false);
this.grpBoxFormat.PerformLayout();
this.grpBoxNaming.ResumeLayout(false);
this.panelTop.ResumeLayout(false);
this.tableLayoutSettings.ResumeLayout(false);
this.panelSettingsLeft.ResumeLayout(false);
this.grpBoxDest.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : MainForm.Designer.cs
License : GNU General Public License v3.0
Project Creator : audiamus
License : GNU General Public License v3.0
Project Creator : audiamus
private void InitializeComponent () {
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.grpBoxAaxFiles = new System.Windows.Forms.GroupBox();
this.listViewAaxFiles = new System.Windows.Forms.ListView();
this.clmHdrAlbum = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrArtist = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrDuration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrYear = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrNarrator = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrSampleRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrBitRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.clmHdrFileDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.btnRem = new System.Windows.Forms.Button();
this.btnAddFile = new System.Windows.Forms.Button();
this.grpBoxMode = new System.Windows.Forms.GroupBox();
this.panelTrkLen = new System.Windows.Forms.Panel();
this.lblDuration = new System.Windows.Forms.Label();
this.lblTraclLen = new System.Windows.Forms.Label();
this.numUpDnTrkLen = new System.Windows.Forms.NumericUpDown();
this.radBtnTimeSplit = new System.Windows.Forms.RadioButton();
this.radBtnChaptSplit = new System.Windows.Forms.RadioButton();
this.radBtnChapt = new System.Windows.Forms.RadioButton();
this.radBtnSingle = new System.Windows.Forms.RadioButton();
this.panelExec = new System.Windows.Forms.Panel();
this.vprogbarCpu = new audiamus.aux.win.VerticalProgressBar();
this.vprogbarNumProc = new audiamus.aux.win.VerticalProgressBar();
this.lblProgress = new System.Windows.Forms.Label();
this.btnAbort = new System.Windows.Forms.Button();
this.progressBarPart = new System.Windows.Forms.ProgressBar();
this.progressBarTrack = new System.Windows.Forms.ProgressBar();
this.btnConvert = new System.Windows.Forms.Button();
this.grpBoxFormat = new System.Windows.Forms.GroupBox();
this.radBtnMp4 = new System.Windows.Forms.RadioButton();
this.radBtnMp3 = new System.Windows.Forms.RadioButton();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.btnSaveTo = new System.Windows.Forms.Button();
this.grpBoxNaming = new System.Windows.Forms.GroupBox();
this.propGridNaming = new System.Windows.Forms.PropertyGrid();
this.panelTop = new System.Windows.Forms.Panel();
this.tableLayoutSettings = new System.Windows.Forms.TableLayoutPanel();
this.panelSettingsLeft = new System.Windows.Forms.Panel();
this.grpBoxDest = new System.Windows.Forms.GroupBox();
this.lblSaveTo = new System.Windows.Forms.Label();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiDetails = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiPreview = new System.Windows.Forms.ToolStripMenuItem();
this.grpBoxAaxFiles.SuspendLayout();
this.grpBoxMode.SuspendLayout();
this.panelTrkLen.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numUpDnTrkLen)).BeginInit();
this.panelExec.SuspendLayout();
this.grpBoxFormat.SuspendLayout();
this.grpBoxNaming.SuspendLayout();
this.panelTop.SuspendLayout();
this.tableLayoutSettings.SuspendLayout();
this.panelSettingsLeft.SuspendLayout();
this.grpBoxDest.SuspendLayout();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// grpBoxAaxFiles
//
resources.ApplyResources(this.grpBoxAaxFiles, "grpBoxAaxFiles");
this.grpBoxAaxFiles.Controls.Add(this.listViewAaxFiles);
this.grpBoxAaxFiles.Controls.Add(this.btnRem);
this.grpBoxAaxFiles.Controls.Add(this.btnAddFile);
this.grpBoxAaxFiles.Name = "grpBoxAaxFiles";
this.grpBoxAaxFiles.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxAaxFiles, resources.GetString("grpBoxAaxFiles.ToolTip"));
//
// listViewAaxFiles
//
resources.ApplyResources(this.listViewAaxFiles, "listViewAaxFiles");
this.listViewAaxFiles.AllowDrop = true;
this.listViewAaxFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.clmHdrAlbum,
this.clmHdrArtist,
this.clmHdrSize,
this.clmHdrDuration,
this.clmHdrYear,
this.clmHdrNarrator,
this.clmHdrSampleRate,
this.clmHdrBitRate,
this.clmHdrFileDate});
this.listViewAaxFiles.FullRowSelect = true;
this.listViewAaxFiles.GridLines = true;
this.listViewAaxFiles.HideSelection = false;
this.listViewAaxFiles.Name = "listViewAaxFiles";
this.listViewAaxFiles.SmallImageList = this.imageList1;
this.toolTip1.SetToolTip(this.listViewAaxFiles, resources.GetString("listViewAaxFiles.ToolTip"));
this.listViewAaxFiles.UseCompatibleStateImageBehavior = false;
this.listViewAaxFiles.View = System.Windows.Forms.View.Details;
this.listViewAaxFiles.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewAaxFiles_ColumnClick);
this.listViewAaxFiles.SelectedIndexChanged += new System.EventHandler(this.listViewAaxFiles_SelectedIndexChanged);
this.listViewAaxFiles.SizeChanged += new System.EventHandler(this.listViewAaxFiles_SizeChanged);
this.listViewAaxFiles.DragDrop += new System.Windows.Forms.DragEventHandler(this.listViewAaxFiles_DragDrop);
this.listViewAaxFiles.DragEnter += new System.Windows.Forms.DragEventHandler(this.listViewAaxFiles_DragEnter);
this.listViewAaxFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listViewAaxFiles_KeyDown);
this.listViewAaxFiles.MouseClick += new System.Windows.Forms.MouseEventHandler(this.listViewAaxFiles_MouseClick);
//
// clmHdrAlbum
//
resources.ApplyResources(this.clmHdrAlbum, "clmHdrAlbum");
//
// clmHdrArtist
//
resources.ApplyResources(this.clmHdrArtist, "clmHdrArtist");
//
// clmHdrSize
//
resources.ApplyResources(this.clmHdrSize, "clmHdrSize");
//
// clmHdrDuration
//
resources.ApplyResources(this.clmHdrDuration, "clmHdrDuration");
//
// clmHdrYear
//
resources.ApplyResources(this.clmHdrYear, "clmHdrYear");
//
// clmHdrNarrator
//
resources.ApplyResources(this.clmHdrNarrator, "clmHdrNarrator");
//
// clmHdrSampleRate
//
resources.ApplyResources(this.clmHdrSampleRate, "clmHdrSampleRate");
//
// clmHdrBitRate
//
resources.ApplyResources(this.clmHdrBitRate, "clmHdrBitRate");
//
// clmHdrFileDate
//
resources.ApplyResources(this.clmHdrFileDate, "clmHdrFileDate");
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "blank.png");
this.imageList1.Images.SetKeyName(1, "added.png");
//
// btnRem
//
resources.ApplyResources(this.btnRem, "btnRem");
this.btnRem.Name = "btnRem";
this.toolTip1.SetToolTip(this.btnRem, resources.GetString("btnRem.ToolTip"));
this.btnRem.UseVisualStyleBackColor = true;
this.btnRem.Click += new System.EventHandler(this.btnRem_Click);
//
// btnAddFile
//
resources.ApplyResources(this.btnAddFile, "btnAddFile");
this.btnAddFile.Name = "btnAddFile";
this.toolTip1.SetToolTip(this.btnAddFile, resources.GetString("btnAddFile.ToolTip"));
this.btnAddFile.UseVisualStyleBackColor = true;
this.btnAddFile.Click += new System.EventHandler(this.btnAddFile_Click);
//
// grpBoxMode
//
resources.ApplyResources(this.grpBoxMode, "grpBoxMode");
this.grpBoxMode.Controls.Add(this.panelTrkLen);
this.grpBoxMode.Controls.Add(this.radBtnTimeSplit);
this.grpBoxMode.Controls.Add(this.radBtnChaptSplit);
this.grpBoxMode.Controls.Add(this.radBtnChapt);
this.grpBoxMode.Controls.Add(this.radBtnSingle);
this.grpBoxMode.Name = "grpBoxMode";
this.grpBoxMode.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxMode, resources.GetString("grpBoxMode.ToolTip"));
//
// panelTrkLen
//
resources.ApplyResources(this.panelTrkLen, "panelTrkLen");
this.panelTrkLen.Controls.Add(this.lblDuration);
this.panelTrkLen.Controls.Add(this.lblTraclLen);
this.panelTrkLen.Controls.Add(this.numUpDnTrkLen);
this.panelTrkLen.Name = "panelTrkLen";
this.toolTip1.SetToolTip(this.panelTrkLen, resources.GetString("panelTrkLen.ToolTip"));
//
// lblDuration
//
resources.ApplyResources(this.lblDuration, "lblDuration");
this.lblDuration.Name = "lblDuration";
this.toolTip1.SetToolTip(this.lblDuration, resources.GetString("lblDuration.ToolTip"));
//
// lblTraclLen
//
resources.ApplyResources(this.lblTraclLen, "lblTraclLen");
this.lblTraclLen.Name = "lblTraclLen";
this.toolTip1.SetToolTip(this.lblTraclLen, resources.GetString("lblTraclLen.ToolTip"));
//
// numUpDnTrkLen
//
resources.ApplyResources(this.numUpDnTrkLen, "numUpDnTrkLen");
this.numUpDnTrkLen.Maximum = new decimal(new int[] {
30,
0,
0,
0});
this.numUpDnTrkLen.Minimum = new decimal(new int[] {
3,
0,
0,
0});
this.numUpDnTrkLen.Name = "numUpDnTrkLen";
this.toolTip1.SetToolTip(this.numUpDnTrkLen, resources.GetString("numUpDnTrkLen.ToolTip"));
this.numUpDnTrkLen.Value = new decimal(new int[] {
5,
0,
0,
0});
this.numUpDnTrkLen.ValueChanged += new System.EventHandler(this.numUpDnTrkLen_ValueChanged);
//
// radBtnTimeSplit
//
resources.ApplyResources(this.radBtnTimeSplit, "radBtnTimeSplit");
this.radBtnTimeSplit.Name = "radBtnTimeSplit";
this.radBtnTimeSplit.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnTimeSplit, resources.GetString("radBtnTimeSplit.ToolTip"));
this.radBtnTimeSplit.UseVisualStyleBackColor = true;
this.radBtnTimeSplit.CheckedChanged += new System.EventHandler(this.radBtnTimeSplit_CheckedChanged);
//
// radBtnChaptSplit
//
resources.ApplyResources(this.radBtnChaptSplit, "radBtnChaptSplit");
this.radBtnChaptSplit.Name = "radBtnChaptSplit";
this.radBtnChaptSplit.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnChaptSplit, resources.GetString("radBtnChaptSplit.ToolTip"));
this.radBtnChaptSplit.UseVisualStyleBackColor = true;
this.radBtnChaptSplit.CheckedChanged += new System.EventHandler(this.radBtnChaptSplit_CheckedChanged);
//
// radBtnChapt
//
resources.ApplyResources(this.radBtnChapt, "radBtnChapt");
this.radBtnChapt.Name = "radBtnChapt";
this.radBtnChapt.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnChapt, resources.GetString("radBtnChapt.ToolTip"));
this.radBtnChapt.UseVisualStyleBackColor = true;
this.radBtnChapt.CheckedChanged += new System.EventHandler(this.radBtnChapt_CheckedChanged);
//
// radBtnSingle
//
resources.ApplyResources(this.radBtnSingle, "radBtnSingle");
this.radBtnSingle.Name = "radBtnSingle";
this.radBtnSingle.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnSingle, resources.GetString("radBtnSingle.ToolTip"));
this.radBtnSingle.UseVisualStyleBackColor = true;
this.radBtnSingle.CheckedChanged += new System.EventHandler(this.radBtnSingle_CheckedChanged);
//
// panelExec
//
resources.ApplyResources(this.panelExec, "panelExec");
this.panelExec.Controls.Add(this.vprogbarCpu);
this.panelExec.Controls.Add(this.vprogbarNumProc);
this.panelExec.Controls.Add(this.lblProgress);
this.panelExec.Controls.Add(this.btnAbort);
this.panelExec.Controls.Add(this.progressBarPart);
this.panelExec.Controls.Add(this.progressBarTrack);
this.panelExec.Controls.Add(this.btnConvert);
this.panelExec.Name = "panelExec";
this.toolTip1.SetToolTip(this.panelExec, resources.GetString("panelExec.ToolTip"));
//
// vprogbarCpu
//
resources.ApplyResources(this.vprogbarCpu, "vprogbarCpu");
this.vprogbarCpu.Name = "vprogbarCpu";
this.toolTip1.SetToolTip(this.vprogbarCpu, resources.GetString("vprogbarCpu.ToolTip"));
//
// vprogbarNumProc
//
resources.ApplyResources(this.vprogbarNumProc, "vprogbarNumProc");
this.vprogbarNumProc.Name = "vprogbarNumProc";
this.toolTip1.SetToolTip(this.vprogbarNumProc, resources.GetString("vprogbarNumProc.ToolTip"));
//
// lblProgress
//
resources.ApplyResources(this.lblProgress, "lblProgress");
this.lblProgress.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblProgress.Name = "lblProgress";
this.toolTip1.SetToolTip(this.lblProgress, resources.GetString("lblProgress.ToolTip"));
//
// btnAbort
//
resources.ApplyResources(this.btnAbort, "btnAbort");
this.btnAbort.Name = "btnAbort";
this.toolTip1.SetToolTip(this.btnAbort, resources.GetString("btnAbort.ToolTip"));
this.btnAbort.UseVisualStyleBackColor = true;
this.btnAbort.Click += new System.EventHandler(this.btnAbort_Click);
//
// progressBarPart
//
resources.ApplyResources(this.progressBarPart, "progressBarPart");
this.progressBarPart.Maximum = 1000;
this.progressBarPart.Name = "progressBarPart";
this.toolTip1.SetToolTip(this.progressBarPart, resources.GetString("progressBarPart.ToolTip"));
//
// progressBarTrack
//
resources.ApplyResources(this.progressBarTrack, "progressBarTrack");
this.progressBarTrack.Maximum = 1000;
this.progressBarTrack.Name = "progressBarTrack";
this.toolTip1.SetToolTip(this.progressBarTrack, resources.GetString("progressBarTrack.ToolTip"));
//
// btnConvert
//
resources.ApplyResources(this.btnConvert, "btnConvert");
this.btnConvert.Name = "btnConvert";
this.toolTip1.SetToolTip(this.btnConvert, resources.GetString("btnConvert.ToolTip"));
this.btnConvert.UseVisualStyleBackColor = true;
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
//
// grpBoxFormat
//
resources.ApplyResources(this.grpBoxFormat, "grpBoxFormat");
this.grpBoxFormat.Controls.Add(this.radBtnMp4);
this.grpBoxFormat.Controls.Add(this.radBtnMp3);
this.grpBoxFormat.Name = "grpBoxFormat";
this.grpBoxFormat.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxFormat, resources.GetString("grpBoxFormat.ToolTip"));
//
// radBtnMp4
//
resources.ApplyResources(this.radBtnMp4, "radBtnMp4");
this.radBtnMp4.Name = "radBtnMp4";
this.radBtnMp4.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnMp4, resources.GetString("radBtnMp4.ToolTip"));
this.radBtnMp4.UseVisualStyleBackColor = true;
this.radBtnMp4.CheckedChanged += new System.EventHandler(this.radBtnM4A_CheckedChanged);
//
// radBtnMp3
//
resources.ApplyResources(this.radBtnMp3, "radBtnMp3");
this.radBtnMp3.Name = "radBtnMp3";
this.radBtnMp3.TabStop = true;
this.toolTip1.SetToolTip(this.radBtnMp3, resources.GetString("radBtnMp3.ToolTip"));
this.radBtnMp3.UseVisualStyleBackColor = true;
this.radBtnMp3.CheckedChanged += new System.EventHandler(this.radBtnMp3_CheckedChanged);
//
// btnSaveTo
//
resources.ApplyResources(this.btnSaveTo, "btnSaveTo");
this.btnSaveTo.Name = "btnSaveTo";
this.toolTip1.SetToolTip(this.btnSaveTo, resources.GetString("btnSaveTo.ToolTip"));
this.btnSaveTo.UseVisualStyleBackColor = true;
this.btnSaveTo.Click += new System.EventHandler(this.btnSaveTo_Click);
//
// grpBoxNaming
//
resources.ApplyResources(this.grpBoxNaming, "grpBoxNaming");
this.grpBoxNaming.Controls.Add(this.propGridNaming);
this.grpBoxNaming.Name = "grpBoxNaming";
this.grpBoxNaming.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxNaming, resources.GetString("grpBoxNaming.ToolTip"));
//
// propGridNaming
//
resources.ApplyResources(this.propGridNaming, "propGridNaming");
this.propGridNaming.Name = "propGridNaming";
this.propGridNaming.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this.propGridNaming.ToolbarVisible = false;
this.toolTip1.SetToolTip(this.propGridNaming, resources.GetString("propGridNaming.ToolTip"));
this.propGridNaming.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.propGridNaming_PropertyValueChanged);
//
// panelTop
//
resources.ApplyResources(this.panelTop, "panelTop");
this.panelTop.Controls.Add(this.grpBoxAaxFiles);
this.panelTop.Controls.Add(this.tableLayoutSettings);
this.panelTop.Name = "panelTop";
this.toolTip1.SetToolTip(this.panelTop, resources.GetString("panelTop.ToolTip"));
//
// tableLayoutSettings
//
resources.ApplyResources(this.tableLayoutSettings, "tableLayoutSettings");
this.tableLayoutSettings.Controls.Add(this.panelSettingsLeft, 0, 0);
this.tableLayoutSettings.Controls.Add(this.grpBoxNaming, 1, 0);
this.tableLayoutSettings.Name = "tableLayoutSettings";
this.toolTip1.SetToolTip(this.tableLayoutSettings, resources.GetString("tableLayoutSettings.ToolTip"));
//
// panelSettingsLeft
//
resources.ApplyResources(this.panelSettingsLeft, "panelSettingsLeft");
this.panelSettingsLeft.Controls.Add(this.grpBoxMode);
this.panelSettingsLeft.Controls.Add(this.grpBoxFormat);
this.panelSettingsLeft.Controls.Add(this.grpBoxDest);
this.panelSettingsLeft.Name = "panelSettingsLeft";
this.toolTip1.SetToolTip(this.panelSettingsLeft, resources.GetString("panelSettingsLeft.ToolTip"));
//
// grpBoxDest
//
resources.ApplyResources(this.grpBoxDest, "grpBoxDest");
this.grpBoxDest.Controls.Add(this.lblSaveTo);
this.grpBoxDest.Controls.Add(this.btnSaveTo);
this.grpBoxDest.Name = "grpBoxDest";
this.grpBoxDest.TabStop = false;
this.toolTip1.SetToolTip(this.grpBoxDest, resources.GetString("grpBoxDest.ToolTip"));
//
// lblSaveTo
//
resources.ApplyResources(this.lblSaveTo, "lblSaveTo");
this.lblSaveTo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblSaveTo.Name = "lblSaveTo";
this.toolTip1.SetToolTip(this.lblSaveTo, resources.GetString("lblSaveTo.ToolTip"));
this.lblSaveTo.SizeChanged += new System.EventHandler(this.lblSaveTo_SizeChanged);
//
// contextMenuStrip1
//
resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1");
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiDetails,
this.tsmiPreview});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.toolTip1.SetToolTip(this.contextMenuStrip1, resources.GetString("contextMenuStrip1.ToolTip"));
//
// tsmiDetails
//
resources.ApplyResources(this.tsmiDetails, "tsmiDetails");
this.tsmiDetails.Name = "tsmiDetails";
this.tsmiDetails.Click += new System.EventHandler(this.tsmiDetails_Click);
//
// tsmiPreview
//
resources.ApplyResources(this.tsmiPreview, "tsmiPreview");
this.tsmiPreview.Name = "tsmiPreview";
this.tsmiPreview.Click += new System.EventHandler(this.tsmiPreview_Click);
//
// MainForm
//
this.AcceptButton = this.btnAddFile;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.panelTop);
this.Controls.Add(this.panelExec);
this.KeyPreview = true;
this.Name = "MainForm";
this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.grpBoxAaxFiles.ResumeLayout(false);
this.grpBoxMode.ResumeLayout(false);
this.grpBoxMode.PerformLayout();
this.panelTrkLen.ResumeLayout(false);
this.panelTrkLen.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.numUpDnTrkLen)).EndInit();
this.panelExec.ResumeLayout(false);
this.grpBoxFormat.ResumeLayout(false);
this.grpBoxFormat.PerformLayout();
this.grpBoxNaming.ResumeLayout(false);
this.panelTop.ResumeLayout(false);
this.tableLayoutSettings.ResumeLayout(false);
this.panelSettingsLeft.ResumeLayout(false);
this.grpBoxDest.ResumeLayout(false);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
19
View Source File : PerformanceHandler.cs
License : GNU General Public License v3.0
Project Creator : audiamus
License : GNU General Public License v3.0
Project Creator : audiamus
public void Reset () {
_pbProcesses.Value = 0;
_pbLoadPercent.Value = 0;
_tt.SetToolTip (_pbProcesses, _tttProcesses);
_tt.SetToolTip (_pbLoadPercent, _tttLoad);
}
19
View Source File : PerformanceHandler.cs
License : GNU General Public License v3.0
Project Creator : audiamus
License : GNU General Public License v3.0
Project Creator : audiamus
private void update (IValueMax vm, ProgressBar pb, string ttt, string suffix = null) {
if (vm is null)
return;
if (vm.Max != pb.Maximum)
pb.Maximum = vm.Max;
int val = Math.Min (vm.Value, pb.Maximum);
pb.Value = val;
if (_tt is null || ttt is null)
return;
var caption = $"{ttt} : {val}{suffix}";
_tt.SetToolTip (pb, caption);
}
19
View Source File : Main.Designer.cs
License : MIT License
Project Creator : austinvaness
License : MIT License
Project Creator : austinvaness
private void InitializeComponent ()
{
this.components = new System.ComponentModel.Container();
this.btnOpenFile = new System.Windows.Forms.Button();
this.fileDialog = new System.Windows.Forms.OpenFileDialog();
this.progressBar = new System.Windows.Forms.ProgressBar();
this.lblFile = new System.Windows.Forms.Label();
this.folderDialog = new System.Windows.Forms.FolderBrowserDialog();
this.btnOpenFolder = new System.Windows.Forms.Button();
this.lblOutput = new System.Windows.Forms.Label();
this.txtBlueprintName = new System.Windows.Forms.TextBox();
this.btnStart = new System.Windows.Forms.Button();
this.lblTris = new System.Windows.Forms.Label();
this.txtSizeX = new System.Windows.Forms.TextBox();
this.txtSizeY = new System.Windows.Forms.TextBox();
this.txtSizeZ = new System.Windows.Forms.TextBox();
this.lblSize = new System.Windows.Forms.Label();
this.lblInfo = new System.Windows.Forms.Label();
this.txtResolution = new System.Windows.Forms.TextBox();
this.lblResolution = new System.Windows.Forms.Label();
this.colorDialog = new System.Windows.Forms.ColorDialog();
this.btnColor = new System.Windows.Forms.Button();
this.lblColor = new System.Windows.Forms.Label();
this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
this.lblName = new System.Windows.Forms.Label();
this.comboType = new System.Windows.Forms.ComboBox();
this.lblType = new System.Windows.Forms.Label();
this.comboSkin = new System.Windows.Forms.ComboBox();
this.lblSkin = new System.Windows.Forms.Label();
this.background = new System.ComponentModel.BackgroundWorker();
this.chkHollow = new System.Windows.Forms.CheckBox();
this.chkSlopes = new System.Windows.Forms.CheckBox();
this.lblSizeMeters = new System.Windows.Forms.Label();
this.chkAccuracy = new System.Windows.Forms.CheckBox();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.chkChunkMesh = new System.Windows.Forms.CheckBox();
this.chkHeavyArmor = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// btnOpenFile
//
this.btnOpenFile.Location = new System.Drawing.Point(27, 24);
this.btnOpenFile.Name = "btnOpenFile";
this.btnOpenFile.Size = new System.Drawing.Size(75, 23);
this.btnOpenFile.TabIndex = 0;
this.btnOpenFile.Text = "Open File";
this.btnOpenFile.UseVisualStyleBackColor = true;
this.btnOpenFile.Click += new System.EventHandler(this.OnOpenFileClicked);
//
// fileDialog
//
this.fileDialog.Filter = "Model (*.stl)|*.stl";
//
// progressBar
//
this.progressBar.Location = new System.Drawing.Point(12, 415);
this.progressBar.Name = "progressBar";
this.progressBar.Size = new System.Drawing.Size(776, 23);
this.progressBar.TabIndex = 1;
//
// lblFile
//
this.lblFile.AutoSize = true;
this.lblFile.Location = new System.Drawing.Point(109, 33);
this.lblFile.Name = "lblFile";
this.lblFile.Size = new System.Drawing.Size(59, 13);
this.lblFile.TabIndex = 2;
this.lblFile.Text = "example.stl";
//
// btnOpenFolder
//
this.btnOpenFolder.Location = new System.Drawing.Point(27, 54);
this.btnOpenFolder.Name = "btnOpenFolder";
this.btnOpenFolder.Size = new System.Drawing.Size(75, 23);
this.btnOpenFolder.TabIndex = 3;
this.btnOpenFolder.Text = "Blueprints";
this.btnOpenFolder.UseVisualStyleBackColor = true;
this.btnOpenFolder.Click += new System.EventHandler(this.OnOpenFolderClicked);
//
// lblOutput
//
this.lblOutput.AutoSize = true;
this.lblOutput.Location = new System.Drawing.Point(109, 63);
this.lblOutput.Name = "lblOutput";
this.lblOutput.Size = new System.Drawing.Size(36, 13);
this.lblOutput.TabIndex = 4;
this.lblOutput.Text = "Folder";
//
// txtBlueprintName
//
this.txtBlueprintName.ForeColor = System.Drawing.Color.Gray;
this.txtBlueprintName.Location = new System.Drawing.Point(27, 109);
this.txtBlueprintName.Name = "txtBlueprintName";
this.txtBlueprintName.Size = new System.Drawing.Size(100, 20);
this.txtBlueprintName.TabIndex = 5;
this.toolTip.SetToolTip(this.txtBlueprintName, "Name of the ship.");
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(12, 386);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(75, 23);
this.btnStart.TabIndex = 6;
this.btnStart.Text = "Start";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.OnStartClicked);
//
// lblTris
//
this.lblTris.AutoSize = true;
this.lblTris.Location = new System.Drawing.Point(109, 16);
this.lblTris.Name = "lblTris";
this.lblTris.Size = new System.Drawing.Size(13, 13);
this.lblTris.TabIndex = 11;
this.lblTris.Text = "0";
//
// txtSizeX
//
this.txtSizeX.Enabled = false;
this.txtSizeX.Location = new System.Drawing.Point(27, 161);
this.txtSizeX.MaxLength = 9;
this.txtSizeX.Name = "txtSizeX";
this.txtSizeX.Size = new System.Drawing.Size(100, 20);
this.txtSizeX.TabIndex = 12;
this.toolTip.SetToolTip(this.txtSizeX, "Size of the model x-axis in blocks.");
this.txtSizeX.TextChanged += new System.EventHandler(this.OnSizeXChanged);
this.txtSizeX.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DigitKeyFilter);
//
// txtSizeY
//
this.txtSizeY.Enabled = false;
this.txtSizeY.Location = new System.Drawing.Point(27, 188);
this.txtSizeY.MaxLength = 9;
this.txtSizeY.Name = "txtSizeY";
this.txtSizeY.Size = new System.Drawing.Size(100, 20);
this.txtSizeY.TabIndex = 13;
this.toolTip.SetToolTip(this.txtSizeY, "Size of the model y-axis in blocks.");
this.txtSizeY.TextChanged += new System.EventHandler(this.OnSizeYChanged);
this.txtSizeY.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DigitKeyFilter);
//
// txtSizeZ
//
this.txtSizeZ.Enabled = false;
this.txtSizeZ.Location = new System.Drawing.Point(27, 215);
this.txtSizeZ.MaxLength = 9;
this.txtSizeZ.Name = "txtSizeZ";
this.txtSizeZ.Size = new System.Drawing.Size(100, 20);
this.txtSizeZ.TabIndex = 14;
this.toolTip.SetToolTip(this.txtSizeZ, "Size of the model z-axis in blocks.");
this.txtSizeZ.TextChanged += new System.EventHandler(this.OnSizeZChanged);
this.txtSizeZ.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DigitKeyFilter);
//
// lblSize
//
this.lblSize.AutoSize = true;
this.lblSize.Location = new System.Drawing.Point(27, 145);
this.lblSize.Name = "lblSize";
this.lblSize.Size = new System.Drawing.Size(65, 13);
this.lblSize.TabIndex = 15;
this.lblSize.Text = "Block Count";
//
// lblInfo
//
this.lblInfo.AutoSize = true;
this.lblInfo.Location = new System.Drawing.Point(94, 395);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(51, 13);
this.lblInfo.TabIndex = 16;
this.lblInfo.Text = "Blocks: 0";
//
// txtResolution
//
this.txtResolution.Enabled = false;
this.txtResolution.Location = new System.Drawing.Point(162, 161);
this.txtResolution.Name = "txtResolution";
this.txtResolution.Size = new System.Drawing.Size(100, 20);
this.txtResolution.TabIndex = 17;
this.txtResolution.TextChanged += new System.EventHandler(this.OnResolutionChanged);
this.txtResolution.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.NumberKeyFilter);
//
// lblResolution
//
this.lblResolution.AutoSize = true;
this.lblResolution.Location = new System.Drawing.Point(159, 145);
this.lblResolution.Name = "lblResolution";
this.lblResolution.Size = new System.Drawing.Size(34, 13);
this.lblResolution.TabIndex = 18;
this.lblResolution.Text = "Scale";
//
// colorDialog
//
this.colorDialog.AnyColor = true;
this.colorDialog.Color = System.Drawing.Color.White;
this.colorDialog.FullOpen = true;
//
// btnColor
//
this.btnColor.BackColor = System.Drawing.Color.White;
this.btnColor.Location = new System.Drawing.Point(27, 270);
this.btnColor.Name = "btnColor";
this.btnColor.Size = new System.Drawing.Size(75, 23);
this.btnColor.TabIndex = 19;
this.btnColor.UseVisualStyleBackColor = false;
this.btnColor.Click += new System.EventHandler(this.OnColorClicked);
//
// lblColor
//
this.lblColor.AutoSize = true;
this.lblColor.Location = new System.Drawing.Point(27, 254);
this.lblColor.Name = "lblColor";
this.lblColor.Size = new System.Drawing.Size(31, 13);
this.lblColor.TabIndex = 20;
this.lblColor.Text = "Color";
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Location = new System.Drawing.Point(27, 93);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(35, 13);
this.lblName.TabIndex = 21;
this.lblName.Text = "Name";
//
// comboType
//
this.comboType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboType.FormattingEnabled = true;
this.comboType.Items.AddRange(new object[] {
"Large",
"Small"});
this.comboType.Location = new System.Drawing.Point(27, 328);
this.comboType.Name = "comboType";
this.comboType.Size = new System.Drawing.Size(121, 21);
this.comboType.TabIndex = 22;
this.comboType.SelectedIndexChanged += new System.EventHandler(this.OnCubeSizeChanged);
//
// lblType
//
this.lblType.AutoSize = true;
this.lblType.Location = new System.Drawing.Point(27, 312);
this.lblType.Name = "lblType";
this.lblType.Size = new System.Drawing.Size(57, 13);
this.lblType.TabIndex = 23;
this.lblType.Text = "Block Size";
//
// comboSkin
//
this.comboSkin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboSkin.FormattingEnabled = true;
this.comboSkin.Items.AddRange(new object[] {
"Default",
"DigitalCamouflage",
"CarbonFibre",
"Clean",
"Golden",
"Silver",
"Glamour",
"Disco",
"Wood",
"Mossy",
"Battered",
"CowMooFlage",
"RustNonColorable",
"Rusty",
"Frozen"});
this.comboSkin.Location = new System.Drawing.Point(162, 328);
this.comboSkin.Name = "comboSkin";
this.comboSkin.Size = new System.Drawing.Size(121, 21);
this.comboSkin.TabIndex = 24;
this.comboSkin.SelectedIndexChanged += new System.EventHandler(this.OnSkinTypeChanged);
//
// lblSkin
//
this.lblSkin.AutoSize = true;
this.lblSkin.Location = new System.Drawing.Point(162, 311);
this.lblSkin.Name = "lblSkin";
this.lblSkin.Size = new System.Drawing.Size(28, 13);
this.lblSkin.TabIndex = 25;
this.lblSkin.Text = "Skin";
//
// background
//
this.background.WorkerReportsProgress = true;
this.background.WorkerSupportsCancellation = true;
//
// chkHollow
//
this.chkHollow.AutoSize = true;
this.chkHollow.Checked = true;
this.chkHollow.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkHollow.Location = new System.Drawing.Point(15, 367);
this.chkHollow.Name = "chkHollow";
this.chkHollow.Size = new System.Drawing.Size(58, 17);
this.chkHollow.TabIndex = 26;
this.chkHollow.Text = "Hollow";
this.toolTip.SetToolTip(this.chkHollow, "Makes the blueprint hollow.");
this.chkHollow.UseVisualStyleBackColor = true;
this.chkHollow.CheckedChanged += new System.EventHandler(this.OnHollowChanged);
//
// chkSlopes
//
this.chkSlopes.AutoSize = true;
this.chkSlopes.Location = new System.Drawing.Point(80, 367);
this.chkSlopes.Name = "chkSlopes";
this.chkSlopes.Size = new System.Drawing.Size(58, 17);
this.chkSlopes.TabIndex = 27;
this.chkSlopes.Text = "Slopes";
this.toolTip.SetToolTip(this.chkSlopes, "Adds slopes to the blueprint.\r\nThis feature is not yet finished.");
this.chkSlopes.UseVisualStyleBackColor = true;
this.chkSlopes.CheckedChanged += new System.EventHandler(this.OnUseSlopesChanged);
//
// lblSizeMeters
//
this.lblSizeMeters.AutoSize = true;
this.lblSizeMeters.Location = new System.Drawing.Point(162, 188);
this.lblSizeMeters.Name = "lblSizeMeters";
this.lblSizeMeters.Size = new System.Drawing.Size(0, 13);
this.lblSizeMeters.TabIndex = 29;
//
// chkAccuracy
//
this.chkAccuracy.AutoSize = true;
this.chkAccuracy.Location = new System.Drawing.Point(145, 367);
this.chkAccuracy.Name = "chkAccuracy";
this.chkAccuracy.Size = new System.Drawing.Size(96, 17);
this.chkAccuracy.TabIndex = 30;
this.chkAccuracy.Text = "Less Accuracy";
this.toolTip.SetToolTip(this.chkAccuracy, "Speeds up processing time at the cost of less accurate blueprints.");
this.chkAccuracy.UseVisualStyleBackColor = true;
//
// chkChunkMesh
//
this.chkChunkMesh.AutoSize = true;
this.chkChunkMesh.Checked = true;
this.chkChunkMesh.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkChunkMesh.Location = new System.Drawing.Point(247, 367);
this.chkChunkMesh.Name = "chkChunkMesh";
this.chkChunkMesh.Size = new System.Drawing.Size(124, 17);
this.chkChunkMesh.TabIndex = 32;
this.chkChunkMesh.Text = "Chunked Processing";
this.toolTip.SetToolTip(this.chkChunkMesh, "Significantly faster, but may generate \'spurs\' of unwanted blocks in very large a" +
"nd complex models");
this.chkChunkMesh.UseVisualStyleBackColor = true;
this.chkChunkMesh.CheckedChanged += new System.EventHandler(this.ChkChunkMesh_CheckedChanged);
//
// chkHeavyArmor
//
this.chkHeavyArmor.AutoSize = true;
this.chkHeavyArmor.Location = new System.Drawing.Point(377, 367);
this.chkHeavyArmor.Name = "chkHeavyArmor";
this.chkHeavyArmor.Size = new System.Drawing.Size(87, 17);
this.chkHeavyArmor.TabIndex = 33;
this.chkHeavyArmor.Text = "Heavy Armor";
this.toolTip.SetToolTip(this.chkHeavyArmor, "Make the Blueprint out of Heavy Armor Blocks");
this.chkHeavyArmor.UseVisualStyleBackColor = true;
this.chkHeavyArmor.CheckedChanged += new System.EventHandler(this.chkHeavyArmor_CheckedChanged);
//
// Main
//
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.chkHeavyArmor);
this.Controls.Add(this.chkChunkMesh);
this.Controls.Add(this.chkAccuracy);
this.Controls.Add(this.lblSizeMeters);
this.Controls.Add(this.chkSlopes);
this.Controls.Add(this.chkHollow);
this.Controls.Add(this.lblSkin);
this.Controls.Add(this.comboSkin);
this.Controls.Add(this.lblType);
this.Controls.Add(this.comboType);
this.Controls.Add(this.lblName);
this.Controls.Add(this.lblColor);
this.Controls.Add(this.btnColor);
this.Controls.Add(this.lblResolution);
this.Controls.Add(this.txtResolution);
this.Controls.Add(this.lblInfo);
this.Controls.Add(this.lblSize);
this.Controls.Add(this.txtSizeZ);
this.Controls.Add(this.txtSizeY);
this.Controls.Add(this.txtSizeX);
this.Controls.Add(this.lblTris);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.txtBlueprintName);
this.Controls.Add(this.lblOutput);
this.Controls.Add(this.btnOpenFolder);
this.Controls.Add(this.lblFile);
this.Controls.Add(this.progressBar);
this.Controls.Add(this.btnOpenFile);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "Main";
this.Text = "STL to Blueprint";
this.Load += new System.EventHandler(this.Main_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmCloudEdit.Designer.cs
License : MIT License
Project Creator : AyrA
License : MIT License
Project Creator : AyrA
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCloudEdit));
this.label1 = new System.Windows.Forms.Label();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.cbPublic = new System.Windows.Forms.CheckBox();
this.panelCategories = new System.Windows.Forms.FlowLayoutPanel();
this.tbFileName = new System.Windows.Forms.TextBox();
this.tbHiddenId = new System.Windows.Forms.TextBox();
this.btnNewId = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.ttMain = new System.Windows.Forms.ToolTip(this.components);
this.label3 = new System.Windows.Forms.Label();
this.tbDescription = new System.Windows.Forms.TextBox();
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(54, 13);
this.label1.TabIndex = 0;
this.label1.Text = "File Name";
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(455, 488);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 10;
this.btnCancel.Text = "&Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(374, 488);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 9;
this.btnOK.Text = "&OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// cbPublic
//
this.cbPublic.AutoSize = true;
this.cbPublic.Location = new System.Drawing.Point(15, 120);
this.cbPublic.Name = "cbPublic";
this.cbPublic.Size = new System.Drawing.Size(55, 17);
this.cbPublic.TabIndex = 7;
this.cbPublic.Text = "Public";
this.cbPublic.UseVisualStyleBackColor = true;
//
// panelCategories
//
this.panelCategories.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.panelCategories.AutoScroll = true;
this.panelCategories.Location = new System.Drawing.Point(12, 152);
this.panelCategories.Name = "panelCategories";
this.panelCategories.Size = new System.Drawing.Size(518, 330);
this.panelCategories.TabIndex = 8;
//
// tbFileName
//
this.tbFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbFileName.Location = new System.Drawing.Point(78, 12);
this.tbFileName.Name = "tbFileName";
this.tbFileName.Size = new System.Drawing.Size(452, 20);
this.tbFileName.TabIndex = 1;
//
// tbHiddenId
//
this.tbHiddenId.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbHiddenId.Location = new System.Drawing.Point(78, 92);
this.tbHiddenId.Name = "tbHiddenId";
this.tbHiddenId.ReadOnly = true;
this.tbHiddenId.Size = new System.Drawing.Size(371, 20);
this.tbHiddenId.TabIndex = 5;
this.ttMain.SetToolTip(this.tbHiddenId, "The hidden id can be used to download and preview private maps");
//
// btnNewId
//
this.btnNewId.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnNewId.Location = new System.Drawing.Point(455, 90);
this.btnNewId.Name = "btnNewId";
this.btnNewId.Size = new System.Drawing.Size(75, 23);
this.btnNewId.TabIndex = 6;
this.btnNewId.Text = "&New";
this.ttMain.SetToolTip(this.btnNewId, "Click this to generate a new hidden id");
this.btnNewId.UseVisualStyleBackColor = true;
this.btnNewId.Click += new System.EventHandler(this.btnNewId_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 95);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Hidden Id";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(12, 53);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(60, 13);
this.label3.TabIndex = 2;
this.label3.Text = "Description";
//
// tbDescription
//
this.tbDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbDescription.Location = new System.Drawing.Point(78, 40);
this.tbDescription.MaxLength = 1000;
this.tbDescription.Multiline = true;
this.tbDescription.Name = "tbDescription";
this.tbDescription.Size = new System.Drawing.Size(452, 44);
this.tbDescription.TabIndex = 3;
//
// frmCloudEdit
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(542, 523);
this.Controls.Add(this.label2);
this.Controls.Add(this.btnNewId);
this.Controls.Add(this.tbHiddenId);
this.Controls.Add(this.tbDescription);
this.Controls.Add(this.tbFileName);
this.Controls.Add(this.panelCategories);
this.Controls.Add(this.cbPublic);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.label3);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.label1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(550, 550);
this.Name = "frmCloudEdit";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Cloud File Editor";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.frmCloudEdit_HelpRequested);
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmDeleter.Designer.cs
License : MIT License
Project Creator : AyrA
License : MIT License
Project Creator : AyrA
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDeleter));
this.cbItem = new System.Windows.Forms.ComboBox();
this.nudStart = new System.Windows.Forms.NumericUpDown();
this.nudCount = new System.Windows.Forms.NumericUpDown();
this.btnOK = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.rbRange = new System.Windows.Forms.RadioButton();
this.rbAllItems = new System.Windows.Forms.RadioButton();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.ttInfo = new System.Windows.Forms.ToolTip(this.components);
this.btnMap = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.nudStart)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudCount)).BeginInit();
this.SuspendLayout();
//
// cbItem
//
this.cbItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cbItem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbItem.FormattingEnabled = true;
this.cbItem.Location = new System.Drawing.Point(12, 31);
this.cbItem.Name = "cbItem";
this.cbItem.Size = new System.Drawing.Size(369, 21);
this.cbItem.TabIndex = 1;
this.cbItem.SelectedIndexChanged += new System.EventHandler(this.cbItem_SelectedIndexChanged);
//
// nudStart
//
this.nudStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudStart.Location = new System.Drawing.Point(437, 31);
this.nudStart.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nudStart.Name = "nudStart";
this.nudStart.Size = new System.Drawing.Size(71, 20);
this.nudStart.TabIndex = 6;
this.nudStart.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// nudCount
//
this.nudCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudCount.Location = new System.Drawing.Point(514, 31);
this.nudCount.Name = "nudCount";
this.nudCount.Size = new System.Drawing.Size(71, 20);
this.nudCount.TabIndex = 8;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(437, 88);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(71, 23);
this.btnOK.TabIndex = 10;
this.btnOK.Text = "&OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.Location = new System.Drawing.Point(514, 88);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(71, 23);
this.btnClose.TabIndex = 11;
this.btnClose.Text = "&Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// rbRange
//
this.rbRange.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.rbRange.AutoSize = true;
this.rbRange.Checked = true;
this.rbRange.Location = new System.Drawing.Point(416, 35);
this.rbRange.Name = "rbRange";
this.rbRange.Size = new System.Drawing.Size(14, 13);
this.rbRange.TabIndex = 3;
this.rbRange.TabStop = true;
this.ttInfo.SetToolTip(this.rbRange, "Delete the given range");
this.rbRange.UseVisualStyleBackColor = true;
this.rbRange.CheckedChanged += new System.EventHandler(this.rbRange_CheckedChanged);
//
// rbAllItems
//
this.rbAllItems.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.rbAllItems.AutoSize = true;
this.rbAllItems.Location = new System.Drawing.Point(416, 57);
this.rbAllItems.Name = "rbAllItems";
this.rbAllItems.Size = new System.Drawing.Size(63, 17);
this.rbAllItems.TabIndex = 4;
this.rbAllItems.Text = "All items";
this.ttInfo.SetToolTip(this.rbAllItems, "Delete all items");
this.rbAllItems.UseVisualStyleBackColor = true;
//
// 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(434, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 13);
this.label3.TabIndex = 5;
this.label3.Text = "Offset";
this.ttInfo.SetToolTip(this.label3, "Start of range (starts at 1)");
//
// 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(511, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 13);
this.label2.TabIndex = 7;
this.label2.Text = "Count";
this.ttInfo.SetToolTip(this.label2, "Number of items");
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Object";
this.ttInfo.SetToolTip(this.label1, "The object to delete");
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoEllipsis = true;
this.label4.Location = new System.Drawing.Point(12, 93);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(411, 18);
this.label4.TabIndex = 9;
this.label4.Text = "Hover over a text label to see the description";
//
// ttInfo
//
this.ttInfo.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.ttInfo.ToolTipreplacedle = "Object Deleter Info";
//
// btnMap
//
this.btnMap.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnMap.Location = new System.Drawing.Point(387, 30);
this.btnMap.Name = "btnMap";
this.btnMap.Size = new System.Drawing.Size(23, 23);
this.btnMap.TabIndex = 2;
this.btnMap.Text = "M";
this.ttInfo.SetToolTip(this.btnMap, "Renders the currently selected objects into the main window map");
this.btnMap.UseVisualStyleBackColor = true;
this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
//
// frmDeleter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(592, 123);
this.Controls.Add(this.btnMap);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.rbAllItems);
this.Controls.Add(this.rbRange);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.nudCount);
this.Controls.Add(this.nudStart);
this.Controls.Add(this.cbItem);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(430, 150);
this.Name = "frmDeleter";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Object Deleter";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.frmDeleter_HelpRequested);
((System.ComponentModel.ISupportInitialize)(this.nudStart)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudCount)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmDuplicator.Designer.cs
License : MIT License
Project Creator : AyrA
License : MIT License
Project Creator : AyrA
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDuplicator));
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.cbObject = new System.Windows.Forms.ComboBox();
this.nudCount = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.nudOffset = new System.Windows.Forms.NumericUpDown();
this.ttInfo = new System.Windows.Forms.ToolTip(this.components);
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.cbApplyOffset = new System.Windows.Forms.CheckBox();
this.btnMap = new System.Windows.Forms.Button();
this.nudOffsetX = new System.Windows.Forms.NumericUpDown();
this.nudOffsetY = new System.Windows.Forms.NumericUpDown();
this.nudOffsetZ = new System.Windows.Forms.NumericUpDown();
((System.ComponentModel.ISupportInitialize)(this.nudCount)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffset)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetX)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetY)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetZ)).BeginInit();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(304, 99);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 15;
this.btnOK.Text = "&OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(385, 99);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 16;
this.btnCancel.Text = "&Close";
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(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Object";
this.ttInfo.SetToolTip(this.label1, resources.GetString("label1.ToolTip"));
//
// 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(382, 9);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(39, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Copies";
this.ttInfo.SetToolTip(this.label2, "Defines the number of copies");
//
// cbObject
//
this.cbObject.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cbObject.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbObject.FormattingEnabled = true;
this.cbObject.Location = new System.Drawing.Point(15, 29);
this.cbObject.Name = "cbObject";
this.cbObject.Size = new System.Drawing.Size(254, 21);
this.cbObject.TabIndex = 1;
this.cbObject.SelectedIndexChanged += new System.EventHandler(this.cbObject_SelectedIndexChanged);
//
// nudCount
//
this.nudCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudCount.Location = new System.Drawing.Point(385, 29);
this.nudCount.Maximum = new decimal(new int[] {
9999,
0,
0,
0});
this.nudCount.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nudCount.Name = "nudCount";
this.nudCount.Size = new System.Drawing.Size(75, 20);
this.nudCount.TabIndex = 6;
this.nudCount.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// 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(301, 9);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 13);
this.label3.TabIndex = 3;
this.label3.Text = "Offset";
this.ttInfo.SetToolTip(this.label3, "You can use this box to select which entry to copy when there are multiple entrie" +
"s of the same type.\r\n1 is the first entry.");
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoEllipsis = true;
this.label4.Location = new System.Drawing.Point(15, 104);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(283, 18);
this.label4.TabIndex = 14;
this.label4.Text = "Hover over a text label to see the description";
//
// nudOffset
//
this.nudOffset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudOffset.Location = new System.Drawing.Point(304, 29);
this.nudOffset.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.nudOffset.Name = "nudOffset";
this.nudOffset.Size = new System.Drawing.Size(75, 20);
this.nudOffset.TabIndex = 4;
this.nudOffset.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// ttInfo
//
this.ttInfo.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.ttInfo.ToolTipreplacedle = "Object Duplicator Info";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(99, 65);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(14, 13);
this.label6.TabIndex = 8;
this.label6.Text = "X";
this.ttInfo.SetToolTip(this.label6, "X is the East-West direction. Bigger means more towards East");
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(210, 65);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(14, 13);
this.label7.TabIndex = 10;
this.label7.Text = "Y";
this.ttInfo.SetToolTip(this.label7, "Y is the North-South direction. Bigger means more towards South");
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(324, 65);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(14, 13);
this.label8.TabIndex = 12;
this.label8.Text = "Z";
this.ttInfo.SetToolTip(this.label8, "Z is the Up-Down direction. Bigger means more towards the Sky");
//
// cbApplyOffset
//
this.cbApplyOffset.AutoSize = true;
this.cbApplyOffset.Location = new System.Drawing.Point(15, 63);
this.cbApplyOffset.Name = "cbApplyOffset";
this.cbApplyOffset.Size = new System.Drawing.Size(78, 17);
this.cbApplyOffset.TabIndex = 7;
this.cbApplyOffset.Text = "Map Offset";
this.ttInfo.SetToolTip(this.cbApplyOffset, "If enabled, each copy will be offset by the give number from the previous. 100 is" +
" 1 meter, so a foundation is 800");
this.cbApplyOffset.UseVisualStyleBackColor = true;
this.cbApplyOffset.CheckedChanged += new System.EventHandler(this.cbApplyOffset_CheckedChanged);
//
// btnMap
//
this.btnMap.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnMap.Location = new System.Drawing.Point(275, 28);
this.btnMap.Name = "btnMap";
this.btnMap.Size = new System.Drawing.Size(23, 23);
this.btnMap.TabIndex = 2;
this.btnMap.Text = "M";
this.ttInfo.SetToolTip(this.btnMap, "Renders the currently selected objects into the main window map");
this.btnMap.UseVisualStyleBackColor = true;
this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
//
// nudOffsetX
//
this.nudOffsetX.Enabled = false;
this.nudOffsetX.Location = new System.Drawing.Point(119, 61);
this.nudOffsetX.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.nudOffsetX.Minimum = new decimal(new int[] {
10000,
0,
0,
-2147483648});
this.nudOffsetX.Name = "nudOffsetX";
this.nudOffsetX.Size = new System.Drawing.Size(75, 20);
this.nudOffsetX.TabIndex = 9;
this.nudOffsetX.ThousandsSeparator = true;
//
// nudOffsetY
//
this.nudOffsetY.Enabled = false;
this.nudOffsetY.Location = new System.Drawing.Point(230, 61);
this.nudOffsetY.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.nudOffsetY.Minimum = new decimal(new int[] {
10000,
0,
0,
-2147483648});
this.nudOffsetY.Name = "nudOffsetY";
this.nudOffsetY.Size = new System.Drawing.Size(75, 20);
this.nudOffsetY.TabIndex = 11;
this.nudOffsetY.ThousandsSeparator = true;
//
// nudOffsetZ
//
this.nudOffsetZ.Enabled = false;
this.nudOffsetZ.Location = new System.Drawing.Point(345, 61);
this.nudOffsetZ.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.nudOffsetZ.Minimum = new decimal(new int[] {
10000,
0,
0,
-2147483648});
this.nudOffsetZ.Name = "nudOffsetZ";
this.nudOffsetZ.Size = new System.Drawing.Size(75, 20);
this.nudOffsetZ.TabIndex = 13;
this.nudOffsetZ.ThousandsSeparator = true;
//
// frmDuplicator
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(472, 133);
this.Controls.Add(this.btnMap);
this.Controls.Add(this.cbApplyOffset);
this.Controls.Add(this.nudOffsetZ);
this.Controls.Add(this.nudOffsetY);
this.Controls.Add(this.nudOffsetX);
this.Controls.Add(this.label8);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.nudOffset);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.nudCount);
this.Controls.Add(this.cbObject);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(440, 160);
this.Name = "frmDuplicator";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Object Duplicator";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.frmDuplicator_HelpRequested);
((System.ComponentModel.ISupportInitialize)(this.nudCount)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffset)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetX)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetY)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudOffsetZ)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : frmExport.Designer.cs
License : MIT License
Project Creator : AyrA
License : MIT License
Project Creator : AyrA
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmExport));
this.gbExport = new System.Windows.Forms.GroupBox();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnExport = new System.Windows.Forms.Button();
this.rbAllItems = new System.Windows.Forms.RadioButton();
this.rbRange = new System.Windows.Forms.RadioButton();
this.nudCount = new System.Windows.Forms.NumericUpDown();
this.nudStart = new System.Windows.Forms.NumericUpDown();
this.cbItem = new System.Windows.Forms.ComboBox();
this.btnMap = new System.Windows.Forms.Button();
this.gbImport = new System.Windows.Forms.GroupBox();
this.cbFixNames = new System.Windows.Forms.CheckBox();
this.cbReplaceAll = new System.Windows.Forms.CheckBox();
this.btnImport = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.btnClose = new System.Windows.Forms.Button();
this.ttInfo = new System.Windows.Forms.ToolTip(this.components);
this.gbExport.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nudCount)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.nudStart)).BeginInit();
this.gbImport.SuspendLayout();
this.SuspendLayout();
//
// gbExport
//
this.gbExport.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbExport.Controls.Add(this.label3);
this.gbExport.Controls.Add(this.label2);
this.gbExport.Controls.Add(this.label1);
this.gbExport.Controls.Add(this.btnExport);
this.gbExport.Controls.Add(this.rbAllItems);
this.gbExport.Controls.Add(this.rbRange);
this.gbExport.Controls.Add(this.nudCount);
this.gbExport.Controls.Add(this.nudStart);
this.gbExport.Controls.Add(this.cbItem);
this.gbExport.Controls.Add(this.btnMap);
this.gbExport.Location = new System.Drawing.Point(12, 12);
this.gbExport.Name = "gbExport";
this.gbExport.Size = new System.Drawing.Size(468, 100);
this.gbExport.TabIndex = 0;
this.gbExport.TabStop = false;
this.gbExport.Text = "Export";
//
// 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(305, 16);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(35, 13);
this.label3.TabIndex = 17;
this.label3.Text = "Offset";
this.ttInfo.SetToolTip(this.label3, "Start of range (starts at 1)");
//
// 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(382, 16);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(35, 13);
this.label2.TabIndex = 19;
this.label2.Text = "Count";
this.ttInfo.SetToolTip(this.label2, "Number of items");
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 12;
this.label1.Text = "Object";
this.ttInfo.SetToolTip(this.label1, "The object to export");
//
// btnExport
//
this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnExport.Location = new System.Drawing.Point(385, 64);
this.btnExport.Name = "btnExport";
this.btnExport.Size = new System.Drawing.Size(71, 23);
this.btnExport.TabIndex = 22;
this.btnExport.Text = "&Export";
this.ttInfo.SetToolTip(this.btnExport, "Export the given items to the clipboard");
this.btnExport.UseVisualStyleBackColor = true;
this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
//
// rbAllItems
//
this.rbAllItems.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.rbAllItems.AutoSize = true;
this.rbAllItems.Location = new System.Drawing.Point(287, 64);
this.rbAllItems.Name = "rbAllItems";
this.rbAllItems.Size = new System.Drawing.Size(36, 17);
this.rbAllItems.TabIndex = 16;
this.rbAllItems.Text = "All";
this.ttInfo.SetToolTip(this.rbAllItems, "Export all items");
this.rbAllItems.UseVisualStyleBackColor = true;
//
// rbRange
//
this.rbRange.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.rbRange.AutoSize = true;
this.rbRange.Checked = true;
this.rbRange.Location = new System.Drawing.Point(287, 42);
this.rbRange.Name = "rbRange";
this.rbRange.Size = new System.Drawing.Size(14, 13);
this.rbRange.TabIndex = 15;
this.rbRange.TabStop = true;
this.ttInfo.SetToolTip(this.rbRange, "Export the given range");
this.rbRange.UseVisualStyleBackColor = true;
//
// nudCount
//
this.nudCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudCount.Location = new System.Drawing.Point(385, 38);
this.nudCount.Name = "nudCount";
this.nudCount.Size = new System.Drawing.Size(71, 20);
this.nudCount.TabIndex = 20;
//
// nudStart
//
this.nudStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.nudStart.Location = new System.Drawing.Point(308, 38);
this.nudStart.Name = "nudStart";
this.nudStart.Size = new System.Drawing.Size(71, 20);
this.nudStart.TabIndex = 18;
//
// cbItem
//
this.cbItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cbItem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbItem.FormattingEnabled = true;
this.cbItem.Location = new System.Drawing.Point(6, 38);
this.cbItem.Name = "cbItem";
this.cbItem.Size = new System.Drawing.Size(246, 21);
this.cbItem.TabIndex = 13;
this.cbItem.SelectedIndexChanged += new System.EventHandler(this.cbItem_SelectedIndexChanged);
//
// btnMap
//
this.btnMap.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnMap.Location = new System.Drawing.Point(258, 37);
this.btnMap.Name = "btnMap";
this.btnMap.Size = new System.Drawing.Size(23, 23);
this.btnMap.TabIndex = 14;
this.btnMap.Text = "M";
this.ttInfo.SetToolTip(this.btnMap, "Renders the currently selected objects into the main window map");
this.btnMap.UseVisualStyleBackColor = true;
this.btnMap.Click += new System.EventHandler(this.btnMap_Click);
//
// gbImport
//
this.gbImport.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.gbImport.Controls.Add(this.cbFixNames);
this.gbImport.Controls.Add(this.cbReplaceAll);
this.gbImport.Controls.Add(this.btnImport);
this.gbImport.Location = new System.Drawing.Point(12, 118);
this.gbImport.Name = "gbImport";
this.gbImport.Size = new System.Drawing.Size(468, 58);
this.gbImport.TabIndex = 0;
this.gbImport.TabStop = false;
this.gbImport.Text = "Import";
//
// cbFixNames
//
this.cbFixNames.AutoSize = true;
this.cbFixNames.Checked = true;
this.cbFixNames.CheckState = System.Windows.Forms.CheckState.Checked;
this.cbFixNames.Location = new System.Drawing.Point(189, 23);
this.cbFixNames.Name = "cbFixNames";
this.cbFixNames.Size = new System.Drawing.Size(110, 17);
this.cbFixNames.TabIndex = 24;
this.cbFixNames.Text = "Fix internal names";
this.ttInfo.SetToolTip(this.cbFixNames, "This fixes the \"InternalName\" property of imported items.\r\nThis name is supposed " +
"to be unique across your entire save file.\r\n\r\nIt will only fix names where neces" +
"sary.");
this.cbFixNames.UseVisualStyleBackColor = true;
//
// cbReplaceAll
//
this.cbReplaceAll.AutoSize = true;
this.cbReplaceAll.Location = new System.Drawing.Point(9, 23);
this.cbReplaceAll.Name = "cbReplaceAll";
this.cbReplaceAll.Size = new System.Drawing.Size(174, 17);
this.cbReplaceAll.TabIndex = 24;
this.cbReplaceAll.Text = "&Remove identical existing types";
this.ttInfo.SetToolTip(this.cbReplaceAll, "Setting this option will first remove all entries of the same type. For example i" +
"t would delete all your foundations before importing new ones.");
this.cbReplaceAll.UseVisualStyleBackColor = true;
//
// btnImport
//
this.btnImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnImport.Location = new System.Drawing.Point(385, 19);
this.btnImport.Name = "btnImport";
this.btnImport.Size = new System.Drawing.Size(71, 23);
this.btnImport.TabIndex = 23;
this.btnImport.Text = "&Import";
this.ttInfo.SetToolTip(this.btnImport, "Imports the given items from the clipboard");
this.btnImport.UseVisualStyleBackColor = true;
this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoEllipsis = true;
this.label4.Location = new System.Drawing.Point(12, 203);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(391, 18);
this.label4.TabIndex = 21;
this.label4.Text = "Hover over a text label to see the description";
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.Location = new System.Drawing.Point(409, 198);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(71, 23);
this.btnClose.TabIndex = 23;
this.btnClose.Text = "&Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// ttInfo
//
this.ttInfo.AutoPopDelay = 60000;
this.ttInfo.InitialDelay = 500;
this.ttInfo.ReshowDelay = 100;
this.ttInfo.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
this.ttInfo.ToolTipreplacedle = "Export/Import Info";
//
// frmExport
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(492, 233);
this.Controls.Add(this.label4);
this.Controls.Add(this.gbImport);
this.Controls.Add(this.gbExport);
this.Controls.Add(this.btnClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(500, 260);
this.Name = "frmExport";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Export/Import entries";
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.frmExport_HelpRequested);
this.gbExport.ResumeLayout(false);
this.gbExport.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudCount)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.nudStart)).EndInit();
this.gbImport.ResumeLayout(false);
this.gbImport.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : frmErrorHandler.designer.cs
License : MIT License
Project Creator : AyrA
License : MIT License
Project Creator : AyrA
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmErrorHandler));
this.btnClose = new System.Windows.Forms.Button();
this.lblreplacedle = new System.Windows.Forms.Label();
this.tbReport = new System.Windows.Forms.TextBox();
this.btnReport = new System.Windows.Forms.Button();
this.ttMain = new System.Windows.Forms.ToolTip(this.components);
this.SuspendLayout();
//
// 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(316, 335);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 2;
this.btnClose.Text = "&Close";
this.ttMain.SetToolTip(this.btnClose, "Close this message and terminate the Application");
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// lblreplacedle
//
this.lblreplacedle.AutoSize = true;
this.lblreplacedle.Font = new System.Drawing.Font("Microsoft Sans Serif", 22F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblreplacedle.Location = new System.Drawing.Point(12, 9);
this.lblreplacedle.Name = "lblreplacedle";
this.lblreplacedle.Size = new System.Drawing.Size(401, 36);
this.lblreplacedle.TabIndex = 0;
this.lblreplacedle.Text = "An unexpected error occured";
//
// tbReport
//
this.tbReport.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.tbReport.BackColor = System.Drawing.SystemColors.Window;
this.tbReport.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.tbReport.Location = new System.Drawing.Point(18, 63);
this.tbReport.Multiline = true;
this.tbReport.Name = "tbReport";
this.tbReport.ReadOnly = true;
this.tbReport.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.tbReport.Size = new System.Drawing.Size(454, 258);
this.tbReport.TabIndex = 1;
//
// btnReport
//
this.btnReport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnReport.Location = new System.Drawing.Point(397, 335);
this.btnReport.Name = "btnReport";
this.btnReport.Size = new System.Drawing.Size(75, 23);
this.btnReport.TabIndex = 3;
this.btnReport.Text = "&Send";
this.ttMain.SetToolTip(this.btnReport, "Try to report the error automatically");
this.btnReport.UseVisualStyleBackColor = true;
this.btnReport.Click += new System.EventHandler(this.btnReport_Click);
//
// frmErrorHandler
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(492, 373);
this.Controls.Add(this.tbReport);
this.Controls.Add(this.lblreplacedle);
this.Controls.Add(this.btnReport);
this.Controls.Add(this.btnClose);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimumSize = new System.Drawing.Size(500, 400);
this.Name = "frmErrorHandler";
this.Text = "Unexpected error occured";
this.ResumeLayout(false);
this.PerformLayout();
}
19
View Source File : FrmConnect.Designer.cs
License : Apache License 2.0
Project Creator : azanov
License : Apache License 2.0
Project Creator : azanov
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmConnect));
this.pnlTop = new System.Windows.Forms.Panel();
this.picYahoo = new System.Windows.Forms.PictureBox();
this.picOutlook = new System.Windows.Forms.PictureBox();
this.btnDefaultAuth = new System.Windows.Forms.Button();
this.picGMailLogin = new System.Windows.Forms.PictureBox();
this.picLogo = new System.Windows.Forms.PictureBox();
this.pnlLogin = new System.Windows.Forms.Panel();
this.cmbServer = new System.Windows.Forms.ComboBox();
this.chkValidateCertificate = new System.Windows.Forms.CheckBox();
this.btnSignIn = new System.Windows.Forms.Button();
this.lblPreplacedword = new System.Windows.Forms.Label();
this.txtPreplacedword = new System.Windows.Forms.TextBox();
this.cmbEncryption = new System.Windows.Forms.ComboBox();
this.lblPort = new System.Windows.Forms.Label();
this.cmbPort = new System.Windows.Forms.ComboBox();
this.lblLogin = new System.Windows.Forms.Label();
this.txtLogin = new System.Windows.Forms.TextBox();
this.lblServer = new System.Windows.Forms.Label();
this.lblWait = new System.Windows.Forms.Label();
this.wbrMain = new System.Windows.Forms.WebBrowser();
this.lblreplacedle = new System.Windows.Forms.Label();
this.tltMain = new System.Windows.Forms.ToolTip(this.components);
this.pnlTop.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picYahoo)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picOutlook)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picGMailLogin)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
this.pnlLogin.SuspendLayout();
this.SuspendLayout();
//
// pnlTop
//
this.pnlTop.BackColor = System.Drawing.Color.White;
this.pnlTop.Controls.Add(this.picYahoo);
this.pnlTop.Controls.Add(this.picOutlook);
this.pnlTop.Controls.Add(this.btnDefaultAuth);
this.pnlTop.Controls.Add(this.picGMailLogin);
this.pnlTop.Controls.Add(this.picLogo);
this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
this.pnlTop.Location = new System.Drawing.Point(0, 0);
this.pnlTop.Name = "pnlTop";
this.pnlTop.Padding = new System.Windows.Forms.Padding(24, 12, 12, 12);
this.pnlTop.Size = new System.Drawing.Size(627, 84);
this.pnlTop.TabIndex = 1;
//
// picYahoo
//
this.picYahoo.Cursor = System.Windows.Forms.Cursors.Hand;
this.picYahoo.Image = global::ImapX.Sample.Properties.Resources.yahoo;
this.picYahoo.Location = new System.Drawing.Point(316, 26);
this.picYahoo.Name = "picYahoo";
this.picYahoo.Size = new System.Drawing.Size(32, 32);
this.picYahoo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picYahoo.TabIndex = 4;
this.picYahoo.TabStop = false;
this.picYahoo.Click += new System.EventHandler(this.picYahoo_Click);
//
// picOutlook
//
this.picOutlook.Cursor = System.Windows.Forms.Cursors.Hand;
this.picOutlook.Image = global::ImapX.Sample.Properties.Resources.outlook;
this.picOutlook.Location = new System.Drawing.Point(367, 26);
this.picOutlook.Name = "picOutlook";
this.picOutlook.Size = new System.Drawing.Size(32, 32);
this.picOutlook.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.picOutlook.TabIndex = 3;
this.picOutlook.TabStop = false;
this.tltMain.SetToolTip(this.picOutlook, "Sign in using Outlook.com");
this.picOutlook.Click += new System.EventHandler(this.picOutlook_Click);
//
// btnDefaultAuth
//
this.btnDefaultAuth.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(74)))), ((int)(((byte)(50)))));
this.btnDefaultAuth.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnDefaultAuth.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnDefaultAuth.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(247)))), ((int)(((byte)(246)))));
this.btnDefaultAuth.Location = new System.Drawing.Point(374, 22);
this.btnDefaultAuth.Name = "btnDefaultAuth";
this.btnDefaultAuth.Size = new System.Drawing.Size(228, 40);
this.btnDefaultAuth.TabIndex = 2;
this.btnDefaultAuth.Text = "Other authentication method";
this.btnDefaultAuth.UseVisualStyleBackColor = false;
this.btnDefaultAuth.Visible = false;
this.btnDefaultAuth.Click += new System.EventHandler(this.btnDefaultAuth_Click);
//
// picGMailLogin
//
this.picGMailLogin.Cursor = System.Windows.Forms.Cursors.Hand;
this.picGMailLogin.Image = global::ImapX.Sample.Properties.Resources.sign_in_with_google;
this.picGMailLogin.Location = new System.Drawing.Point(420, 22);
this.picGMailLogin.Name = "picGMailLogin";
this.picGMailLogin.Size = new System.Drawing.Size(182, 40);
this.picGMailLogin.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.picGMailLogin.TabIndex = 1;
this.picGMailLogin.TabStop = false;
this.picGMailLogin.Click += new System.EventHandler(this.picGMailLogin_Click);
//
// picLogo
//
this.picLogo.Cursor = System.Windows.Forms.Cursors.Hand;
this.picLogo.Dock = System.Windows.Forms.DockStyle.Left;
this.picLogo.Image = global::ImapX.Sample.Properties.Resources.logo;
this.picLogo.Location = new System.Drawing.Point(24, 12);
this.picLogo.Name = "picLogo";
this.picLogo.Size = new System.Drawing.Size(180, 60);
this.picLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.picLogo.TabIndex = 0;
this.picLogo.TabStop = false;
this.picLogo.Click += new System.EventHandler(this.picLogo_Click);
//
// pnlLogin
//
this.pnlLogin.BackColor = System.Drawing.Color.Transparent;
this.pnlLogin.Controls.Add(this.cmbServer);
this.pnlLogin.Controls.Add(this.chkValidateCertificate);
this.pnlLogin.Controls.Add(this.btnSignIn);
this.pnlLogin.Controls.Add(this.lblPreplacedword);
this.pnlLogin.Controls.Add(this.txtPreplacedword);
this.pnlLogin.Controls.Add(this.cmbEncryption);
this.pnlLogin.Controls.Add(this.lblPort);
this.pnlLogin.Controls.Add(this.cmbPort);
this.pnlLogin.Controls.Add(this.lblLogin);
this.pnlLogin.Controls.Add(this.txtLogin);
this.pnlLogin.Controls.Add(this.lblServer);
this.pnlLogin.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlLogin.Location = new System.Drawing.Point(0, 133);
this.pnlLogin.Name = "pnlLogin";
this.pnlLogin.Size = new System.Drawing.Size(627, 412);
this.pnlLogin.TabIndex = 2;
//
// cmbServer
//
this.cmbServer.FormattingEnabled = true;
this.cmbServer.Items.AddRange(new object[] {
"imap.gmail.com",
"imap-mail.outlook.com",
"imap.yandex.ru",
"imap.mail.yahoo.com",
"imap.aol.com"});
this.cmbServer.Location = new System.Drawing.Point(240, 94);
this.cmbServer.Name = "cmbServer";
this.cmbServer.Size = new System.Drawing.Size(210, 25);
this.cmbServer.TabIndex = 13;
this.cmbServer.Text = "imap.gmail.com";
//
// chkValidateCertificate
//
this.chkValidateCertificate.AutoSize = true;
this.chkValidateCertificate.Checked = true;
this.chkValidateCertificate.CheckState = System.Windows.Forms.CheckState.Checked;
this.chkValidateCertificate.Location = new System.Drawing.Point(435, 131);
this.chkValidateCertificate.Name = "chkValidateCertificate";
this.chkValidateCertificate.Size = new System.Drawing.Size(15, 14);
this.chkValidateCertificate.TabIndex = 3;
this.tltMain.SetToolTip(this.chkValidateCertificate, "Validate server certificate");
this.chkValidateCertificate.UseVisualStyleBackColor = true;
this.chkValidateCertificate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmLogin_KeyDown);
//
// btnSignIn
//
this.btnSignIn.Location = new System.Drawing.Point(240, 218);
this.btnSignIn.Name = "btnSignIn";
this.btnSignIn.Size = new System.Drawing.Size(210, 30);
this.btnSignIn.TabIndex = 6;
this.btnSignIn.Text = "Sign in";
this.btnSignIn.UseVisualStyleBackColor = true;
this.btnSignIn.Click += new System.EventHandler(this.btnSignIn_Click);
//
// lblPreplacedword
//
this.lblPreplacedword.AutoSize = true;
this.lblPreplacedword.Location = new System.Drawing.Point(146, 190);
this.lblPreplacedword.Name = "lblPreplacedword";
this.lblPreplacedword.Size = new System.Drawing.Size(64, 17);
this.lblPreplacedword.TabIndex = 12;
this.lblPreplacedword.Text = "Preplacedword";
//
// txtPreplacedword
//
this.txtPreplacedword.Location = new System.Drawing.Point(240, 187);
this.txtPreplacedword.Name = "txtPreplacedword";
this.txtPreplacedword.PreplacedwordChar = '●';
this.txtPreplacedword.Size = new System.Drawing.Size(210, 25);
this.txtPreplacedword.TabIndex = 5;
this.txtPreplacedword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmLogin_KeyDown);
//
// cmbEncryption
//
this.cmbEncryption.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbEncryption.FormattingEnabled = true;
this.cmbEncryption.Items.AddRange(new object[] {
"None",
"SSL",
"TLS"});
this.cmbEncryption.Location = new System.Drawing.Point(348, 125);
this.cmbEncryption.Name = "cmbEncryption";
this.cmbEncryption.Size = new System.Drawing.Size(79, 25);
this.cmbEncryption.TabIndex = 2;
this.cmbEncryption.SelectedIndexChanged += new System.EventHandler(this.cmbEncryption_SelectedIndexChanged);
this.cmbEncryption.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmLogin_KeyDown);
//
// lblPort
//
this.lblPort.AutoSize = true;
this.lblPort.Location = new System.Drawing.Point(146, 128);
this.lblPort.Name = "lblPort";
this.lblPort.Size = new System.Drawing.Size(32, 17);
this.lblPort.TabIndex = 9;
this.lblPort.Text = "Port";
//
// cmbPort
//
this.cmbPort.FormattingEnabled = true;
this.cmbPort.Items.AddRange(new object[] {
"143",
"993"});
this.cmbPort.Location = new System.Drawing.Point(240, 125);
this.cmbPort.Name = "cmbPort";
this.cmbPort.Size = new System.Drawing.Size(102, 25);
this.cmbPort.TabIndex = 1;
this.cmbPort.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cmbPort_KeyDown);
//
// lblLogin
//
this.lblLogin.AutoSize = true;
this.lblLogin.Location = new System.Drawing.Point(146, 159);
this.lblLogin.Name = "lblLogin";
this.lblLogin.Size = new System.Drawing.Size(40, 17);
this.lblLogin.TabIndex = 7;
this.lblLogin.Text = "Login";
//
// txtLogin
//
this.txtLogin.Location = new System.Drawing.Point(240, 156);
this.txtLogin.Name = "txtLogin";
this.txtLogin.Size = new System.Drawing.Size(210, 25);
this.txtLogin.TabIndex = 4;
this.txtLogin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmLogin_KeyDown);
//
// lblServer
//
this.lblServer.AutoSize = true;
this.lblServer.Location = new System.Drawing.Point(146, 97);
this.lblServer.Name = "lblServer";
this.lblServer.Size = new System.Drawing.Size(45, 17);
this.lblServer.TabIndex = 3;
this.lblServer.Text = "Server";
//
// lblWait
//
this.lblWait.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(74)))), ((int)(((byte)(50)))));
this.lblWait.ForeColor = System.Drawing.Color.White;
this.lblWait.Location = new System.Drawing.Point(200, 255);
this.lblWait.Name = "lblWait";
this.lblWait.Padding = new System.Windows.Forms.Padding(15, 10, 15, 10);
this.lblWait.Size = new System.Drawing.Size(212, 37);
this.lblWait.TabIndex = 15;
this.lblWait.Text = "Connecting...";
this.lblWait.TextAlign = System.Drawing.ContentAlignment.TopCenter;
this.lblWait.Visible = false;
//
// wbrMain
//
this.wbrMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.wbrMain.Location = new System.Drawing.Point(0, 133);
this.wbrMain.Margin = new System.Windows.Forms.Padding(3, 49, 3, 3);
this.wbrMain.MinimumSize = new System.Drawing.Size(20, 20);
this.wbrMain.Name = "wbrMain";
this.wbrMain.Size = new System.Drawing.Size(627, 412);
this.wbrMain.TabIndex = 14;
this.wbrMain.Visible = false;
this.wbrMain.DoreplacedentCompleted += new System.Windows.Forms.WebBrowserDoreplacedentCompletedEventHandler(this.wbrMain_DoreplacedentCompleted);
//
// lblreplacedle
//
this.lblreplacedle.BackColor = System.Drawing.Color.WhiteSmoke;
this.lblreplacedle.Dock = System.Windows.Forms.DockStyle.Top;
this.lblreplacedle.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblreplacedle.Location = new System.Drawing.Point(0, 84);
this.lblreplacedle.Name = "lblreplacedle";
this.lblreplacedle.Padding = new System.Windows.Forms.Padding(12);
this.lblreplacedle.Size = new System.Drawing.Size(627, 49);
this.lblreplacedle.TabIndex = 3;
this.lblreplacedle.Text = "Sign in";
//
// FrmConnect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(627, 545);
this.Controls.Add(this.lblWait);
this.Controls.Add(this.pnlLogin);
this.Controls.Add(this.wbrMain);
this.Controls.Add(this.lblreplacedle);
this.Controls.Add(this.pnlTop);
this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.Name = "FrmConnect";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ImapX";
this.pnlTop.ResumeLayout(false);
this.pnlTop.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.picYahoo)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picOutlook)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picGMailLogin)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
this.pnlLogin.ResumeLayout(false);
this.pnlLogin.PerformLayout();
this.ResumeLayout(false);
}
19
View Source File : ToolTipBuilder.cs
License : GNU General Public License v3.0
Project Creator : az64
License : GNU General Public License v3.0
Project Creator : az64
public static void SetTooltip(Control control, string text)
{
var tooltip = new ToolTip();
// Set up the delays for the ToolTip.
tooltip.InitialDelay = 1000;
tooltip.ReshowDelay = 500;
// Force the ToolTip text to be displayed whether or not the form is active.
tooltip.ShowAlways = true;
tooltip.SetToolTip(control, text);
}
19
View Source File : BSONTestForm.cs
License : MIT License
Project Creator : azist
License : MIT License
Project Creator : azist
private void button1_Click(object sender, EventArgs e)
{
var toolTip = new ToolTip();
toolTip.SetToolTip(sender as Button, "{} (empty doreplacedent)");
using (var stream = File.Create("test.bson"))
{
var root = new BSONDoreplacedent();
root.WriteAsBSON(stream);
}
Process.Start(AppDomain.CurrentDomain.BaseDirectory);
}
19
View Source File : BSONTestForm.cs
License : MIT License
Project Creator : azist
License : MIT License
Project Creator : azist
private void button2_Click(object sender, EventArgs e)
{
var toolTip = new ToolTip();
toolTip.SetToolTip(sender as Button, "{ greetings: \"Hello World!\" }");
using (var stream = File.Create("test.bson"))
{
var root = new BSONDoreplacedent();
root.Set(new BSONDoubleElement("pi", Math.PI));
root.WriteAsBSON(stream);
}
Process.Start(AppDomain.CurrentDomain.BaseDirectory);
}
See More Examples