System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[])

Here are the examples of the csharp api System.Windows.Forms.ToolStripItemCollection.AddRange(System.Windows.Forms.ToolStripItem[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1657 Examples 7

19 Source : Form1.Designer.cs
with GNU General Public License v3.0
from 00000vish

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label1 = new System.Windows.Forms.Label();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.button3 = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.groupBox1.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(212)))), ((int)(((byte)(231)))));
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(323, 85);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Current HWID";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.ContextMenuStrip = this.contextMenuStrip1;
            this.label1.Font = new System.Drawing.Font("Consolas", 9.25F);
            this.label1.Location = new System.Drawing.Point(25, 37);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(0, 15);
            this.label1.TabIndex = 0;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(103, 26);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(102, 22);
            this.copyToolStripMenuItem.Text = "Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
            // 
            // button1
            // 
            this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
            this.button1.FlatAppearance.BorderSize = 0;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button1.Location = new System.Drawing.Point(260, 103);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "Change";
            this.button1.UseVisualStyleBackColor = false;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
            this.button2.FlatAppearance.BorderSize = 0;
            this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button2.Location = new System.Drawing.Point(179, 103);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 2;
            this.button2.Text = "Randomize";
            this.button2.UseVisualStyleBackColor = false;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // textBox1
            // 
            this.textBox1.Location = new System.Drawing.Point(12, 105);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(242, 20);
            this.textBox1.TabIndex = 3;
            this.textBox1.Visible = false;
            // 
            // button3
            // 
            this.button3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(112)))), ((int)(((byte)(116)))));
            this.button3.FlatAppearance.BorderSize = 0;
            this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button3.Location = new System.Drawing.Point(260, 79);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(75, 23);
            this.button3.TabIndex = 4;
            this.button3.Text = "Cancel";
            this.button3.UseVisualStyleBackColor = false;
            this.button3.Visible = false;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(45)))), ((int)(((byte)(45)))), ((int)(((byte)(42)))));
            this.ClientSize = new System.Drawing.Size(347, 141);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.textBox1);
            this.Font = new System.Drawing.Font("Consolas", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(189)))), ((int)(((byte)(212)))), ((int)(((byte)(231)))));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
            this.Name = "Form1";
            this.Text = "HWID_CHNGER";
            this.TopMost = true;
            this.Load += new System.EventHandler(this.Form1_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : IceMonitorForm.Designer.cs
with Apache License 2.0
from 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 Source : MonitorForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MonitorForm));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tab_terminal = new System.Windows.Forms.TabPage();
            this.listBox1 = new System.Windows.Forms.ListBox();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.tstb_shell = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStrip_more_sh = new System.Windows.Forms.ToolStripDropDownButton();
            this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
            this.newQuickConmandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.quickShellManageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.rtb_log = new System.Windows.Forms.RichTextBox();
            this.shellMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.粘贴ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.copyPasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fullScreenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tab_sftp = new System.Windows.Forms.TabPage();
            this.rtb_sftp_log = new System.Windows.Forms.RichTextBox();
            this.toolStrip2 = new System.Windows.Forms.ToolStrip();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.tstb_sftp = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripDropDownButton2 = new System.Windows.Forms.ToolStripDropDownButton();
            this.getserverFilepathlocalFilepathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.putlocalFilepathserverFilepathToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolbtn_opensftp = new System.Windows.Forms.ToolStripButton();
            this.tab_monitor = new System.Windows.Forms.TabPage();
            this.right_panel = new System.Windows.Forms.Panel();
            this.left_panel = new System.Windows.Forms.Panel();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.treeConMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newItemToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.springBootAppToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.tomcatToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.nginxToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.iceSrvToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.treeNodeConMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.newItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.springBootAppToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tomcatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.nginxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.edireplacedemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.tabControl1.SuspendLayout();
            this.tab_terminal.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.shellMenu.SuspendLayout();
            this.tab_sftp.SuspendLayout();
            this.toolStrip2.SuspendLayout();
            this.tab_monitor.SuspendLayout();
            this.left_panel.SuspendLayout();
            this.treeConMenu.SuspendLayout();
            this.treeNodeConMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
            this.tabControl1.Controls.Add(this.tab_terminal);
            this.tabControl1.Controls.Add(this.tab_sftp);
            this.tabControl1.Controls.Add(this.tab_monitor);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Multiline = true;
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(930, 601);
            this.tabControl1.TabIndex = 0;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            this.tabControl1.SizeChanged += new System.EventHandler(this.tabControl1_SizeChanged);
            this.tabControl1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tabControl1_KeyUp);
            // 
            // tab_terminal
            // 
            this.tab_terminal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tab_terminal.Controls.Add(this.listBox1);
            this.tab_terminal.Controls.Add(this.toolStrip1);
            this.tab_terminal.Controls.Add(this.rtb_log);
            this.tab_terminal.Location = new System.Drawing.Point(4, 25);
            this.tab_terminal.Name = "tab_terminal";
            this.tab_terminal.Padding = new System.Windows.Forms.Padding(3);
            this.tab_terminal.Size = new System.Drawing.Size(922, 572);
            this.tab_terminal.TabIndex = 1;
            this.tab_terminal.Text = "Terminal";
            this.tab_terminal.UseVisualStyleBackColor = true;
            // 
            // listBox1
            // 
            this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.listBox1.Font = new System.Drawing.Font("宋体", 10F);
            this.listBox1.FormattingEnabled = true;
            this.listBox1.Location = new System.Drawing.Point(5, 383);
            this.listBox1.Name = "listBox1";
            this.listBox1.Size = new System.Drawing.Size(198, 160);
            this.listBox1.TabIndex = 3;
            this.listBox1.Visible = false;
            this.listBox1.DoubleClick += new System.EventHandler(this.listBox1_DoubleClick);
            this.listBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listBox1_KeyUp);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.toolStrip1.BackColor = System.Drawing.Color.White;
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator1,
            this.tstb_shell,
            this.toolStripSeparator2,
            this.toolStrip_more_sh,
            this.toolStripDropDownButton1});
            this.toolStrip1.Location = new System.Drawing.Point(3, 542);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.toolStrip1.Size = new System.Drawing.Size(885, 25);
            this.toolStrip1.TabIndex = 2;
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // tstb_shell
            // 
            this.tstb_shell.AutoSize = false;
            this.tstb_shell.BackColor = System.Drawing.Color.White;
            this.tstb_shell.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.tstb_shell.Enabled = false;
            this.tstb_shell.Font = new System.Drawing.Font("Courier New", 14F);
            this.tstb_shell.ForeColor = System.Drawing.Color.DimGray;
            this.tstb_shell.HideSelection = false;
            this.tstb_shell.Name = "tstb_shell";
            this.tstb_shell.Size = new System.Drawing.Size(810, 22);
            this.tstb_shell.Text = "在此输入Shell指令";
            this.tstb_shell.Enter += new System.EventHandler(this.tstb_shell_Enter);
            this.tstb_shell.Leave += new System.EventHandler(this.tstb_shell_Leave);
            this.tstb_shell.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tstb_shell_KeyDown);
            this.tstb_shell.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tstb_shell_KeyUp);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStrip_more_sh
            // 
            this.toolStrip_more_sh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStrip_more_sh.Image = global::AppMonitor.Properties.Resources.Terminal_24px;
            this.toolStrip_more_sh.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStrip_more_sh.Name = "toolStrip_more_sh";
            this.toolStrip_more_sh.Size = new System.Drawing.Size(29, 22);
            this.toolStrip_more_sh.Text = "toolStripDropDownButton1";
            // 
            // toolStripDropDownButton1
            // 
            this.toolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripDropDownButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newQuickConmandToolStripMenuItem,
            this.quickShellManageToolStripMenuItem});
            this.toolStripDropDownButton1.Image = global::AppMonitor.Properties.Resources.custom_24px;
            this.toolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripDropDownButton1.Name = "toolStripDropDownButton1";
            this.toolStripDropDownButton1.Size = new System.Drawing.Size(29, 22);
            this.toolStripDropDownButton1.Text = "toolStripDropDownButton1";
            // 
            // newQuickConmandToolStripMenuItem
            // 
            this.newQuickConmandToolStripMenuItem.Name = "newQuickConmandToolStripMenuItem";
            this.newQuickConmandToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
            this.newQuickConmandToolStripMenuItem.Text = "New Quick Conmand";
            this.newQuickConmandToolStripMenuItem.Click += new System.EventHandler(this.newQuickConmandToolStripMenuItem_Click);
            // 
            // quickShellManageToolStripMenuItem
            // 
            this.quickShellManageToolStripMenuItem.Name = "quickShellManageToolStripMenuItem";
            this.quickShellManageToolStripMenuItem.Size = new System.Drawing.Size(225, 22);
            this.quickShellManageToolStripMenuItem.Text = "Quick Command Manage";
            this.quickShellManageToolStripMenuItem.Click += new System.EventHandler(this.quickShellManageToolStripMenuItem_Click);
            // 
            // rtb_log
            // 
            this.rtb_log.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.rtb_log.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
            this.rtb_log.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.rtb_log.ContextMenuStrip = this.shellMenu;
            this.rtb_log.Font = new System.Drawing.Font("Courier New", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rtb_log.ForeColor = System.Drawing.Color.CadetBlue;
            this.rtb_log.Location = new System.Drawing.Point(3, 3);
            this.rtb_log.Name = "rtb_log";
            this.rtb_log.ReadOnly = true;
            this.rtb_log.Size = new System.Drawing.Size(914, 533);
            this.rtb_log.TabIndex = 1;
            this.rtb_log.Text = "";
            this.rtb_log.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtb_log_KeyDown);
            this.rtb_log.KeyUp += new System.Windows.Forms.KeyEventHandler(this.rtb_log_KeyUp);
            this.rtb_log.MouseDown += new System.Windows.Forms.MouseEventHandler(this.rtb_log_MouseDown);
            // 
            // shellMenu
            // 
            this.shellMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.复制ToolStripMenuItem,
            this.粘贴ToolStripMenuItem,
            this.copyPasteToolStripMenuItem,
            this.findToolStripMenuItem,
            this.selectAllToolStripMenuItem,
            this.fullScreenToolStripMenuItem});
            this.shellMenu.Name = "shellMenu";
            this.shellMenu.Size = new System.Drawing.Size(161, 136);
            // 
            // 复制ToolStripMenuItem
            // 
            this.复制ToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.copy;
            this.复制ToolStripMenuItem.Name = "复制ToolStripMenuItem";
            this.复制ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.复制ToolStripMenuItem.Text = "&Copy";
            this.复制ToolStripMenuItem.Click += new System.EventHandler(this.复制ToolStripMenuItem_Click);
            // 
            // 粘贴ToolStripMenuItem
            // 
            this.粘贴ToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.paste;
            this.粘贴ToolStripMenuItem.Name = "粘贴ToolStripMenuItem";
            this.粘贴ToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.粘贴ToolStripMenuItem.Text = "&Paste";
            this.粘贴ToolStripMenuItem.Click += new System.EventHandler(this.粘贴ToolStripMenuItem_Click);
            // 
            // copyPasteToolStripMenuItem
            // 
            this.copyPasteToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.view_16px;
            this.copyPasteToolStripMenuItem.Name = "copyPasteToolStripMenuItem";
            this.copyPasteToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.copyPasteToolStripMenuItem.Text = "&CopyAndPaste";
            this.copyPasteToolStripMenuItem.Click += new System.EventHandler(this.copyPasteToolStripMenuItem_Click);
            // 
            // findToolStripMenuItem
            // 
            this.findToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.find;
            this.findToolStripMenuItem.Name = "findToolStripMenuItem";
            this.findToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.findToolStripMenuItem.Text = "&Find";
            this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.selectAllToolStripMenuItem.Text = "&Select All";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
            // 
            // fullScreenToolStripMenuItem
            // 
            this.fullScreenToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.fullScreen;
            this.fullScreenToolStripMenuItem.Name = "fullScreenToolStripMenuItem";
            this.fullScreenToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
            this.fullScreenToolStripMenuItem.Text = "&Full Screen";
            this.fullScreenToolStripMenuItem.Click += new System.EventHandler(this.fullScreenToolStripMenuItem_Click);
            // 
            // tab_sftp
            // 
            this.tab_sftp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tab_sftp.Controls.Add(this.rtb_sftp_log);
            this.tab_sftp.Controls.Add(this.toolStrip2);
            this.tab_sftp.Location = new System.Drawing.Point(4, 25);
            this.tab_sftp.Name = "tab_sftp";
            this.tab_sftp.Padding = new System.Windows.Forms.Padding(3);
            this.tab_sftp.Size = new System.Drawing.Size(922, 572);
            this.tab_sftp.TabIndex = 2;
            this.tab_sftp.Text = "Sftp";
            this.tab_sftp.UseVisualStyleBackColor = true;
            // 
            // rtb_sftp_log
            // 
            this.rtb_sftp_log.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.rtb_sftp_log.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
            this.rtb_sftp_log.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.rtb_sftp_log.ContextMenuStrip = this.shellMenu;
            this.rtb_sftp_log.Font = new System.Drawing.Font("Courier New", 14.25F);
            this.rtb_sftp_log.ForeColor = System.Drawing.Color.CadetBlue;
            this.rtb_sftp_log.Location = new System.Drawing.Point(3, 3);
            this.rtb_sftp_log.Name = "rtb_sftp_log";
            this.rtb_sftp_log.ReadOnly = true;
            this.rtb_sftp_log.Size = new System.Drawing.Size(915, 536);
            this.rtb_sftp_log.TabIndex = 4;
            this.rtb_sftp_log.Text = "";
            this.rtb_sftp_log.KeyDown += new System.Windows.Forms.KeyEventHandler(this.rtb_sftp_log_KeyDown);
            this.rtb_sftp_log.KeyUp += new System.Windows.Forms.KeyEventHandler(this.rtb_sftp_log_KeyUp);
            this.rtb_sftp_log.MouseDown += new System.Windows.Forms.MouseEventHandler(this.rtb_sftp_log_MouseDown);
            // 
            // toolStrip2
            // 
            this.toolStrip2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.toolStrip2.BackColor = System.Drawing.Color.White;
            this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripSeparator3,
            this.tstb_sftp,
            this.toolStripSeparator4,
            this.toolStripDropDownButton2,
            this.toolbtn_opensftp});
            this.toolStrip2.Location = new System.Drawing.Point(2, 542);
            this.toolStrip2.Name = "toolStrip2";
            this.toolStrip2.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.toolStrip2.Size = new System.Drawing.Size(879, 25);
            this.toolStrip2.TabIndex = 3;
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
            // 
            // tstb_sftp
            // 
            this.tstb_sftp.AutoSize = false;
            this.tstb_sftp.BackColor = System.Drawing.Color.White;
            this.tstb_sftp.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.tstb_sftp.Enabled = false;
            this.tstb_sftp.Font = new System.Drawing.Font("Courier New", 14F);
            this.tstb_sftp.ForeColor = System.Drawing.Color.DimGray;
            this.tstb_sftp.HideSelection = false;
            this.tstb_sftp.Name = "tstb_sftp";
            this.tstb_sftp.Size = new System.Drawing.Size(810, 22);
            this.tstb_sftp.Text = "在此输入Sftp指令";
            this.tstb_sftp.Enter += new System.EventHandler(this.sftp_text_enter);
            this.tstb_sftp.Leave += new System.EventHandler(this.sftp_text_leave);
            this.tstb_sftp.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tstb_sftp_KeyUp);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripDropDownButton2
            // 
            this.toolStripDropDownButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripDropDownButton2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.getserverFilepathlocalFilepathToolStripMenuItem,
            this.putlocalFilepathserverFilepathToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.toolStripDropDownButton2.Image = global::AppMonitor.Properties.Resources.Terminal_24px;
            this.toolStripDropDownButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripDropDownButton2.Name = "toolStripDropDownButton2";
            this.toolStripDropDownButton2.Size = new System.Drawing.Size(29, 22);
            this.toolStripDropDownButton2.Text = "toolStripDropDownButton1";
            // 
            // getserverFilepathlocalFilepathToolStripMenuItem
            // 
            this.getserverFilepathlocalFilepathToolStripMenuItem.Name = "getserverFilepathlocalFilepathToolStripMenuItem";
            this.getserverFilepathlocalFilepathToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
            this.getserverFilepathlocalFilepathToolStripMenuItem.Text = "get [server filepath] [local filepath]";
            this.getserverFilepathlocalFilepathToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
            // 
            // putlocalFilepathserverFilepathToolStripMenuItem
            // 
            this.putlocalFilepathserverFilepathToolStripMenuItem.Name = "putlocalFilepathserverFilepathToolStripMenuItem";
            this.putlocalFilepathserverFilepathToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
            this.putlocalFilepathserverFilepathToolStripMenuItem.Text = "put [local filepath] [server filepath]";
            this.putlocalFilepathserverFilepathToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
            // 
            // helpToolStripMenuItem
            // 
            this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
            this.helpToolStripMenuItem.Size = new System.Drawing.Size(276, 22);
            this.helpToolStripMenuItem.Text = "help&";
            this.helpToolStripMenuItem.Click += new System.EventHandler(this.sftp_quick_click);
            // 
            // toolbtn_opensftp
            // 
            this.toolbtn_opensftp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolbtn_opensftp.Image = global::AppMonitor.Properties.Resources.ftp;
            this.toolbtn_opensftp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolbtn_opensftp.Name = "toolbtn_opensftp";
            this.toolbtn_opensftp.Size = new System.Drawing.Size(23, 22);
            this.toolbtn_opensftp.Text = "toolStripButton1";
            this.toolbtn_opensftp.Click += new System.EventHandler(this.toolbtn_opensftp_Click);
            // 
            // tab_monitor
            // 
            this.tab_monitor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.tab_monitor.Controls.Add(this.right_panel);
            this.tab_monitor.Controls.Add(this.left_panel);
            this.tab_monitor.Location = new System.Drawing.Point(4, 25);
            this.tab_monitor.Name = "tab_monitor";
            this.tab_monitor.Padding = new System.Windows.Forms.Padding(3);
            this.tab_monitor.Size = new System.Drawing.Size(922, 572);
            this.tab_monitor.TabIndex = 0;
            this.tab_monitor.Text = "Monitor";
            this.tab_monitor.UseVisualStyleBackColor = true;
            // 
            // right_panel
            // 
            this.right_panel.BackColor = System.Drawing.SystemColors.Control;
            this.right_panel.Location = new System.Drawing.Point(250, 0);
            this.right_panel.Name = "right_panel";
            this.right_panel.Size = new System.Drawing.Size(670, 570);
            this.right_panel.TabIndex = 2;
            // 
            // left_panel
            // 
            this.left_panel.Controls.Add(this.treeView1);
            this.left_panel.Location = new System.Drawing.Point(0, 0);
            this.left_panel.Name = "left_panel";
            this.left_panel.Size = new System.Drawing.Size(245, 570);
            this.left_panel.TabIndex = 1;
            // 
            // treeView1
            // 
            this.treeView1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(230)))), ((int)(((byte)(235)))));
            this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.treeView1.ContextMenuStrip = this.treeConMenu;
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Font = new System.Drawing.Font("微软雅黑", 10F);
            this.treeView1.FullRowSelect = true;
            this.treeView1.ImageIndex = 0;
            this.treeView1.ImageList = this.imageList1;
            this.treeView1.Indent = 12;
            this.treeView1.ItemHeight = 30;
            this.treeView1.Location = new System.Drawing.Point(0, 0);
            this.treeView1.Name = "treeView1";
            this.treeView1.SelectedImageIndex = 0;
            this.treeView1.Size = new System.Drawing.Size(245, 570);
            this.treeView1.TabIndex = 0;
            this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
            this.treeView1.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView1_NodeMouseClick);
            // 
            // treeConMenu
            // 
            this.treeConMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newItemToolStripMenuItem1});
            this.treeConMenu.Name = "treeConMenu";
            this.treeConMenu.Size = new System.Drawing.Size(133, 26);
            // 
            // newItemToolStripMenuItem1
            // 
            this.newItemToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.springBootAppToolStripMenuItem2,
            this.tomcatToolStripMenuItem1,
            this.nginxToolStripMenuItem1,
            this.iceSrvToolStripMenuItem});
            this.newItemToolStripMenuItem1.Name = "newItemToolStripMenuItem1";
            this.newItemToolStripMenuItem1.Size = new System.Drawing.Size(132, 22);
            this.newItemToolStripMenuItem1.Text = "New Item";
            // 
            // springBootAppToolStripMenuItem2
            // 
            this.springBootAppToolStripMenuItem2.Name = "springBootAppToolStripMenuItem2";
            this.springBootAppToolStripMenuItem2.Size = new System.Drawing.Size(170, 22);
            this.springBootAppToolStripMenuItem2.Text = "SpringBoot App";
            this.springBootAppToolStripMenuItem2.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // tomcatToolStripMenuItem1
            // 
            this.tomcatToolStripMenuItem1.Name = "tomcatToolStripMenuItem1";
            this.tomcatToolStripMenuItem1.Size = new System.Drawing.Size(170, 22);
            this.tomcatToolStripMenuItem1.Text = "Tomcat";
            this.tomcatToolStripMenuItem1.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // nginxToolStripMenuItem1
            // 
            this.nginxToolStripMenuItem1.Name = "nginxToolStripMenuItem1";
            this.nginxToolStripMenuItem1.Size = new System.Drawing.Size(170, 22);
            this.nginxToolStripMenuItem1.Text = "Nginx";
            this.nginxToolStripMenuItem1.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // iceSrvToolStripMenuItem
            // 
            this.iceSrvToolStripMenuItem.Name = "iceSrvToolStripMenuItem";
            this.iceSrvToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
            this.iceSrvToolStripMenuItem.Text = "IceSrv";
            this.iceSrvToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "gray_light_48.png");
            this.imageList1.Images.SetKeyName(1, "green_light_48.png");
            this.imageList1.Images.SetKeyName(2, "org_light_48.png");
            this.imageList1.Images.SetKeyName(3, "Terminal_24px.png");
            // 
            // treeNodeConMenu
            // 
            this.treeNodeConMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newItemToolStripMenuItem,
            this.edireplacedemToolStripMenuItem,
            this.removeItemToolStripMenuItem});
            this.treeNodeConMenu.Name = "contextMenuStrip1";
            this.treeNodeConMenu.Size = new System.Drawing.Size(154, 70);
            // 
            // newItemToolStripMenuItem
            // 
            this.newItemToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.springBootAppToolStripMenuItem,
            this.tomcatToolStripMenuItem,
            this.nginxToolStripMenuItem});
            this.newItemToolStripMenuItem.Name = "newItemToolStripMenuItem";
            this.newItemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
            this.newItemToolStripMenuItem.Text = "New Item";
            // 
            // springBootAppToolStripMenuItem
            // 
            this.springBootAppToolStripMenuItem.Name = "springBootAppToolStripMenuItem";
            this.springBootAppToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
            this.springBootAppToolStripMenuItem.Text = "SpringBoot App";
            this.springBootAppToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // tomcatToolStripMenuItem
            // 
            this.tomcatToolStripMenuItem.Name = "tomcatToolStripMenuItem";
            this.tomcatToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
            this.tomcatToolStripMenuItem.Text = "Tomcat";
            this.tomcatToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // nginxToolStripMenuItem
            // 
            this.nginxToolStripMenuItem.Name = "nginxToolStripMenuItem";
            this.nginxToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
            this.nginxToolStripMenuItem.Text = "Nginx";
            this.nginxToolStripMenuItem.Click += new System.EventHandler(this.NewItemMenuItemClick);
            // 
            // edireplacedemToolStripMenuItem
            // 
            this.edireplacedemToolStripMenuItem.Name = "edireplacedemToolStripMenuItem";
            this.edireplacedemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
            this.edireplacedemToolStripMenuItem.Text = "Edit Item";
            this.edireplacedemToolStripMenuItem.Click += new System.EventHandler(this.edireplacedemToolStripMenuItem_Click);
            // 
            // removeItemToolStripMenuItem
            // 
            this.removeItemToolStripMenuItem.Name = "removeItemToolStripMenuItem";
            this.removeItemToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
            this.removeItemToolStripMenuItem.Text = "Remove Item";
            this.removeItemToolStripMenuItem.Click += new System.EventHandler(this.removeItemToolStripMenuItem_Click);
            // 
            // timer1
            // 
            this.timer1.Interval = 300;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // MonitorForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(930, 601);
            this.Controls.Add(this.tabControl1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "MonitorForm";
            this.ShowInTaskbar = false;
            this.Text = "MonitorForm";
            this.Load += new System.EventHandler(this.MonitorForm_Load);
            this.SizeChanged += new System.EventHandler(this.MonitorForm_SizeChanged);
            this.tabControl1.ResumeLayout(false);
            this.tab_terminal.ResumeLayout(false);
            this.tab_terminal.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.shellMenu.ResumeLayout(false);
            this.tab_sftp.ResumeLayout(false);
            this.tab_sftp.PerformLayout();
            this.toolStrip2.ResumeLayout(false);
            this.toolStrip2.PerformLayout();
            this.tab_monitor.ResumeLayout(false);
            this.left_panel.ResumeLayout(false);
            this.treeConMenu.ResumeLayout(false);
            this.treeNodeConMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : ConditionTaskForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConditionTaskForm));
            this.scb_condition1 = new CCWin.SkinControl.SkinComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.customShellListView = new CCWin.SkinControl.SkinListView();
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.deleteItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.upToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.downToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.task_name = new CCWin.SkinControl.SkinTextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.scb_status3 = new CCWin.SkinControl.SkinComboBox();
            this.btn_di3 = new System.Windows.Forms.Button();
            this.scb_condition3 = new CCWin.SkinControl.SkinComboBox();
            this.rb_q2 = new System.Windows.Forms.RadioButton();
            this.rb_h2 = new System.Windows.Forms.RadioButton();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.scb_status2 = new CCWin.SkinControl.SkinComboBox();
            this.scb_status1 = new CCWin.SkinControl.SkinComboBox();
            this.btn_di2 = new System.Windows.Forms.Button();
            this.rb_q1 = new System.Windows.Forms.RadioButton();
            this.rb_h1 = new System.Windows.Forms.RadioButton();
            this.scb_condition2 = new CCWin.SkinControl.SkinComboBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.linkLabel2 = new System.Windows.Forms.LinkLabel();
            this.linkLabel1 = new System.Windows.Forms.LinkLabel();
            this.button1 = new System.Windows.Forms.Button();
            this.shell = new CCWin.SkinControl.SkinTextBox();
            this.shell_name = new CCWin.SkinControl.SkinTextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.label7 = new System.Windows.Forms.Label();
            this.scb_template = new CCWin.SkinControl.SkinListView();
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.var_list = new CCWin.SkinControl.SkinListView();
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.SuspendLayout();
            // 
            // scb_condition1
            // 
            this.scb_condition1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition1.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_condition1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_condition1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_condition1.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_condition1.FormattingEnabled = true;
            this.scb_condition1.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition1.ItemHeight = 18;
            this.scb_condition1.Location = new System.Drawing.Point(98, 19);
            this.scb_condition1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_condition1.MouseColor = System.Drawing.Color.Orange;
            this.scb_condition1.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_condition1.Name = "scb_condition1";
            this.scb_condition1.Size = new System.Drawing.Size(192, 24);
            this.scb_condition1.TabIndex = 1;
            this.scb_condition1.WaterText = "";
            this.scb_condition1.SelectedIndexChanged += new System.EventHandler(this.scb_condition1_SelectedIndexChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.Location = new System.Drawing.Point(68, 22);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(22, 19);
            this.label1.TabIndex = 2;
            this.label1.Text = "当";
            // 
            // customShellListView
            // 
            this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
            this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2,
            this.columnHeader3});
            this.customShellListView.ContextMenuStrip = this.contextMenuStrip1;
            this.customShellListView.FullRowSelect = true;
            this.customShellListView.GridLines = true;
            this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.customShellListView.Location = new System.Drawing.Point(20, 290);
            this.customShellListView.MultiSelect = false;
            this.customShellListView.Name = "customShellListView";
            this.customShellListView.OwnerDraw = true;
            this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
            this.customShellListView.SelectedColor = System.Drawing.Color.LightSkyBlue;
            this.customShellListView.Size = new System.Drawing.Size(955, 367);
            this.customShellListView.TabIndex = 11;
            this.customShellListView.UseCompatibleStateImageBehavior = false;
            this.customShellListView.View = System.Windows.Forms.View.Details;
            this.customShellListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AllKeyUp);
            this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "命令名称";
            this.columnHeader2.Width = 200;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Shell脚本";
            this.columnHeader3.Width = 750;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deleteItemToolStripMenuItem,
            this.upToolStripMenuItem,
            this.downToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
            // 
            // deleteItemToolStripMenuItem
            // 
            this.deleteItemToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.remove_16px;
            this.deleteItemToolStripMenuItem.Name = "deleteItemToolStripMenuItem";
            this.deleteItemToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.deleteItemToolStripMenuItem.Text = "Delete Item";
            this.deleteItemToolStripMenuItem.Click += new System.EventHandler(this.deleteItemToolStripMenuItem_Click);
            // 
            // upToolStripMenuItem
            // 
            this.upToolStripMenuItem.Name = "upToolStripMenuItem";
            this.upToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.upToolStripMenuItem.Text = "Up";
            this.upToolStripMenuItem.Click += new System.EventHandler(this.upToolStripMenuItem_Click);
            // 
            // downToolStripMenuItem
            // 
            this.downToolStripMenuItem.Name = "downToolStripMenuItem";
            this.downToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.downToolStripMenuItem.Text = "Down";
            this.downToolStripMenuItem.Click += new System.EventHandler(this.downToolStripMenuItem_Click);
            // 
            // task_name
            // 
            this.task_name.BackColor = System.Drawing.Color.Transparent;
            this.task_name.DownBack = null;
            this.task_name.Icon = null;
            this.task_name.IconIsButton = false;
            this.task_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.task_name.IsPreplacedwordChat = '\0';
            this.task_name.IsSystemPreplacedwordChar = false;
            this.task_name.Lines = new string[0];
            this.task_name.Location = new System.Drawing.Point(93, 19);
            this.task_name.Margin = new System.Windows.Forms.Padding(0);
            this.task_name.MaxLength = 32767;
            this.task_name.MinimumSize = new System.Drawing.Size(28, 28);
            this.task_name.MouseBack = null;
            this.task_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.task_name.Multiline = false;
            this.task_name.Name = "task_name";
            this.task_name.NormlBack = null;
            this.task_name.Padding = new System.Windows.Forms.Padding(5);
            this.task_name.ReadOnly = false;
            this.task_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.task_name.Size = new System.Drawing.Size(433, 28);
            // 
            // 
            // 
            this.task_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.task_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.task_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.task_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.task_name.SkinTxt.Name = "BaseText";
            this.task_name.SkinTxt.Size = new System.Drawing.Size(423, 18);
            this.task_name.SkinTxt.TabIndex = 0;
            this.task_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.task_name.SkinTxt.WaterText = "任务名称";
            this.task_name.TabIndex = 12;
            this.task_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.task_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.task_name.WaterText = "任务名称";
            this.task_name.WordWrap = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.Location = new System.Drawing.Point(12, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(74, 19);
            this.label2.TabIndex = 13;
            this.label2.Text = "任务名称:";
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.groupBox5);
            this.groupBox1.Controls.Add(this.groupBox4);
            this.groupBox1.Location = new System.Drawing.Point(20, 110);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(427, 172);
            this.groupBox1.TabIndex = 14;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "执行条件";
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.scb_status3);
            this.groupBox5.Controls.Add(this.btn_di3);
            this.groupBox5.Controls.Add(this.scb_condition3);
            this.groupBox5.Controls.Add(this.rb_q2);
            this.groupBox5.Controls.Add(this.rb_h2);
            this.groupBox5.Location = new System.Drawing.Point(6, 108);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(415, 54);
            this.groupBox5.TabIndex = 26;
            this.groupBox5.TabStop = false;
            // 
            // scb_status3
            // 
            this.scb_status3.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status3.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_status3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_status3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_status3.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_status3.FormattingEnabled = true;
            this.scb_status3.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status3.ItemHeight = 18;
            this.scb_status3.Location = new System.Drawing.Point(295, 20);
            this.scb_status3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_status3.MouseColor = System.Drawing.Color.Orange;
            this.scb_status3.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_status3.Name = "scb_status3";
            this.scb_status3.Size = new System.Drawing.Size(90, 24);
            this.scb_status3.TabIndex = 24;
            this.scb_status3.WaterText = "";
            // 
            // btn_di3
            // 
            this.btn_di3.Enabled = false;
            this.btn_di3.Image = global::AppMonitor.Properties.Resources.remove_16px;
            this.btn_di3.Location = new System.Drawing.Point(391, 22);
            this.btn_di3.Name = "btn_di3";
            this.btn_di3.Size = new System.Drawing.Size(20, 20);
            this.btn_di3.TabIndex = 22;
            this.btn_di3.UseVisualStyleBackColor = true;
            this.btn_di3.Click += new System.EventHandler(this.btn_di3_Click);
            // 
            // scb_condition3
            // 
            this.scb_condition3.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition3.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_condition3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_condition3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_condition3.Enabled = false;
            this.scb_condition3.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_condition3.FormattingEnabled = true;
            this.scb_condition3.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition3.ItemHeight = 18;
            this.scb_condition3.Location = new System.Drawing.Point(98, 19);
            this.scb_condition3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_condition3.MouseColor = System.Drawing.Color.Orange;
            this.scb_condition3.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_condition3.Name = "scb_condition3";
            this.scb_condition3.Size = new System.Drawing.Size(192, 24);
            this.scb_condition3.TabIndex = 23;
            this.scb_condition3.WaterText = "";
            this.scb_condition3.SelectedIndexChanged += new System.EventHandler(this.scb_condition3_SelectedIndexChanged);
            // 
            // rb_q2
            // 
            this.rb_q2.AutoSize = true;
            this.rb_q2.Enabled = false;
            this.rb_q2.Location = new System.Drawing.Point(8, 21);
            this.rb_q2.Name = "rb_q2";
            this.rb_q2.Size = new System.Drawing.Size(38, 21);
            this.rb_q2.TabIndex = 21;
            this.rb_q2.TabStop = true;
            this.rb_q2.Text = "且";
            this.rb_q2.UseVisualStyleBackColor = true;
            this.rb_q2.CheckedChanged += new System.EventHandler(this.CheckBoxGroup2_CheckedChange);
            // 
            // rb_h2
            // 
            this.rb_h2.AutoSize = true;
            this.rb_h2.Enabled = false;
            this.rb_h2.Location = new System.Drawing.Point(52, 21);
            this.rb_h2.Name = "rb_h2";
            this.rb_h2.Size = new System.Drawing.Size(38, 21);
            this.rb_h2.TabIndex = 22;
            this.rb_h2.TabStop = true;
            this.rb_h2.Text = "或";
            this.rb_h2.UseVisualStyleBackColor = true;
            this.rb_h2.CheckedChanged += new System.EventHandler(this.CheckBoxGroup2_CheckedChange);
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.scb_status2);
            this.groupBox4.Controls.Add(this.scb_status1);
            this.groupBox4.Controls.Add(this.btn_di2);
            this.groupBox4.Controls.Add(this.scb_condition1);
            this.groupBox4.Controls.Add(this.label1);
            this.groupBox4.Controls.Add(this.rb_q1);
            this.groupBox4.Controls.Add(this.rb_h1);
            this.groupBox4.Controls.Add(this.scb_condition2);
            this.groupBox4.Location = new System.Drawing.Point(6, 17);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(415, 92);
            this.groupBox4.TabIndex = 25;
            this.groupBox4.TabStop = false;
            // 
            // scb_status2
            // 
            this.scb_status2.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status2.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_status2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_status2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_status2.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_status2.FormattingEnabled = true;
            this.scb_status2.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status2.ItemHeight = 18;
            this.scb_status2.Location = new System.Drawing.Point(296, 57);
            this.scb_status2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_status2.MouseColor = System.Drawing.Color.Orange;
            this.scb_status2.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_status2.Name = "scb_status2";
            this.scb_status2.Size = new System.Drawing.Size(90, 24);
            this.scb_status2.TabIndex = 23;
            this.scb_status2.WaterText = "";
            // 
            // scb_status1
            // 
            this.scb_status1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status1.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_status1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_status1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_status1.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_status1.FormattingEnabled = true;
            this.scb_status1.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_status1.ItemHeight = 18;
            this.scb_status1.Location = new System.Drawing.Point(296, 19);
            this.scb_status1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_status1.MouseColor = System.Drawing.Color.Orange;
            this.scb_status1.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_status1.Name = "scb_status1";
            this.scb_status1.Size = new System.Drawing.Size(90, 24);
            this.scb_status1.TabIndex = 22;
            this.scb_status1.WaterText = "";
            // 
            // btn_di2
            // 
            this.btn_di2.Enabled = false;
            this.btn_di2.Image = global::AppMonitor.Properties.Resources.remove_16px;
            this.btn_di2.Location = new System.Drawing.Point(391, 59);
            this.btn_di2.Name = "btn_di2";
            this.btn_di2.Size = new System.Drawing.Size(20, 20);
            this.btn_di2.TabIndex = 21;
            this.btn_di2.UseVisualStyleBackColor = true;
            this.btn_di2.Click += new System.EventHandler(this.btn_di2_Click);
            // 
            // rb_q1
            // 
            this.rb_q1.AutoSize = true;
            this.rb_q1.Enabled = false;
            this.rb_q1.Location = new System.Drawing.Point(8, 58);
            this.rb_q1.Name = "rb_q1";
            this.rb_q1.Size = new System.Drawing.Size(38, 21);
            this.rb_q1.TabIndex = 17;
            this.rb_q1.TabStop = true;
            this.rb_q1.Text = "且";
            this.rb_q1.UseVisualStyleBackColor = true;
            this.rb_q1.CheckedChanged += new System.EventHandler(this.CheckBoxGroup1_CheckedChange);
            // 
            // rb_h1
            // 
            this.rb_h1.AutoSize = true;
            this.rb_h1.Enabled = false;
            this.rb_h1.Location = new System.Drawing.Point(52, 58);
            this.rb_h1.Name = "rb_h1";
            this.rb_h1.Size = new System.Drawing.Size(38, 21);
            this.rb_h1.TabIndex = 18;
            this.rb_h1.TabStop = true;
            this.rb_h1.Text = "或";
            this.rb_h1.UseVisualStyleBackColor = true;
            this.rb_h1.CheckedChanged += new System.EventHandler(this.CheckBoxGroup1_CheckedChange);
            // 
            // scb_condition2
            // 
            this.scb_condition2.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition2.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_condition2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_condition2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_condition2.Enabled = false;
            this.scb_condition2.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_condition2.FormattingEnabled = true;
            this.scb_condition2.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_condition2.ItemHeight = 18;
            this.scb_condition2.Location = new System.Drawing.Point(98, 56);
            this.scb_condition2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_condition2.MouseColor = System.Drawing.Color.Orange;
            this.scb_condition2.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_condition2.Name = "scb_condition2";
            this.scb_condition2.Size = new System.Drawing.Size(192, 24);
            this.scb_condition2.TabIndex = 19;
            this.scb_condition2.WaterText = "";
            this.scb_condition2.SelectedIndexChanged += new System.EventHandler(this.scb_condition2_SelectedIndexChanged);
            // 
            // groupBox2
            // 
            this.groupBox2.BackColor = System.Drawing.Color.Transparent;
            this.groupBox2.Controls.Add(this.task_name);
            this.groupBox2.Controls.Add(this.label2);
            this.groupBox2.Location = new System.Drawing.Point(20, 35);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(788, 61);
            this.groupBox2.TabIndex = 15;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "任务信息";
            // 
            // groupBox3
            // 
            this.groupBox3.BackColor = System.Drawing.Color.Transparent;
            this.groupBox3.Controls.Add(this.linkLabel2);
            this.groupBox3.Controls.Add(this.linkLabel1);
            this.groupBox3.Controls.Add(this.button1);
            this.groupBox3.Controls.Add(this.shell);
            this.groupBox3.Controls.Add(this.shell_name);
            this.groupBox3.Controls.Add(this.label5);
            this.groupBox3.Controls.Add(this.label6);
            this.groupBox3.Location = new System.Drawing.Point(453, 111);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(522, 172);
            this.groupBox3.TabIndex = 18;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "任务命令";
            // 
            // linkLabel2
            // 
            this.linkLabel2.AutoSize = true;
            this.linkLabel2.Location = new System.Drawing.Point(457, 68);
            this.linkLabel2.Name = "linkLabel2";
            this.linkLabel2.Size = new System.Drawing.Size(56, 17);
            this.linkLabel2.TabIndex = 20;
            this.linkLabel2.TabStop = true;
            this.linkLabel2.Text = "插入变量";
            this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
            // 
            // linkLabel1
            // 
            this.linkLabel1.AutoSize = true;
            this.linkLabel1.Location = new System.Drawing.Point(456, 26);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(56, 17);
            this.linkLabel1.TabIndex = 16;
            this.linkLabel1.TabStop = true;
            this.linkLabel1.Text = "选择模版";
            this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(456, 128);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(60, 38);
            this.button1.TabIndex = 19;
            this.button1.Text = "新增↓";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // shell
            // 
            this.shell.BackColor = System.Drawing.Color.Transparent;
            this.shell.DownBack = null;
            this.shell.Icon = null;
            this.shell.IconIsButton = false;
            this.shell.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell.IsPreplacedwordChat = '\0';
            this.shell.IsSystemPreplacedwordChar = false;
            this.shell.Lines = new string[0];
            this.shell.Location = new System.Drawing.Point(78, 56);
            this.shell.Margin = new System.Windows.Forms.Padding(0);
            this.shell.MaxLength = 32767;
            this.shell.MinimumSize = new System.Drawing.Size(28, 28);
            this.shell.MouseBack = null;
            this.shell.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell.Multiline = true;
            this.shell.Name = "shell";
            this.shell.NormlBack = null;
            this.shell.Padding = new System.Windows.Forms.Padding(5);
            this.shell.ReadOnly = false;
            this.shell.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.shell.Size = new System.Drawing.Size(372, 111);
            // 
            // 
            // 
            this.shell.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.shell.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.shell.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.shell.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.shell.SkinTxt.Multiline = true;
            this.shell.SkinTxt.Name = "BaseText";
            this.shell.SkinTxt.Size = new System.Drawing.Size(362, 101);
            this.shell.SkinTxt.TabIndex = 0;
            this.shell.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell.SkinTxt.WaterText = "shell脚本";
            this.shell.TabIndex = 14;
            this.shell.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.shell.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell.WaterText = "shell脚本";
            this.shell.WordWrap = true;
            this.shell.Enter += new System.EventHandler(this.shell_Enter);
            // 
            // shell_name
            // 
            this.shell_name.BackColor = System.Drawing.Color.Transparent;
            this.shell_name.DownBack = null;
            this.shell_name.Icon = null;
            this.shell_name.IconIsButton = false;
            this.shell_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell_name.IsPreplacedwordChat = '\0';
            this.shell_name.IsSystemPreplacedwordChar = false;
            this.shell_name.Lines = new string[0];
            this.shell_name.Location = new System.Drawing.Point(78, 19);
            this.shell_name.Margin = new System.Windows.Forms.Padding(0);
            this.shell_name.MaxLength = 32767;
            this.shell_name.MinimumSize = new System.Drawing.Size(28, 28);
            this.shell_name.MouseBack = null;
            this.shell_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell_name.Multiline = false;
            this.shell_name.Name = "shell_name";
            this.shell_name.NormlBack = null;
            this.shell_name.Padding = new System.Windows.Forms.Padding(5);
            this.shell_name.ReadOnly = false;
            this.shell_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.shell_name.Size = new System.Drawing.Size(372, 28);
            // 
            // 
            // 
            this.shell_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.shell_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.shell_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.shell_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.shell_name.SkinTxt.Name = "BaseText";
            this.shell_name.SkinTxt.Size = new System.Drawing.Size(362, 18);
            this.shell_name.SkinTxt.TabIndex = 0;
            this.shell_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell_name.SkinTxt.WaterText = "命令/脚本名称";
            this.shell_name.TabIndex = 13;
            this.shell_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.shell_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell_name.WaterText = "命令/脚本名称";
            this.shell_name.WordWrap = true;
            this.shell_name.Enter += new System.EventHandler(this.shell_name_Enter);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label5.Location = new System.Drawing.Point(27, 23);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(48, 19);
            this.label5.TabIndex = 15;
            this.label5.Text = "名称:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label6.Location = new System.Drawing.Point(27, 57);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(48, 19);
            this.label6.TabIndex = 14;
            this.label6.Text = "脚本:";
            // 
            // button2
            // 
            this.button2.Font = new System.Drawing.Font("微软雅黑", 12F);
            this.button2.Location = new System.Drawing.Point(814, 44);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(161, 52);
            this.button2.TabIndex = 18;
            this.button2.Text = "保存 Ctrl+S";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.label7.Location = new System.Drawing.Point(9, 101);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(980, 5);
            this.label7.TabIndex = 19;
            // 
            // scb_template
            // 
            this.scb_template.BorderColor = System.Drawing.Color.LightGray;
            this.scb_template.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader4,
            this.columnHeader5});
            this.scb_template.FullRowSelect = true;
            this.scb_template.GridLines = true;
            this.scb_template.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_template.Location = new System.Drawing.Point(484, 5);
            this.scb_template.MultiSelect = false;
            this.scb_template.Name = "scb_template";
            this.scb_template.OwnerDraw = true;
            this.scb_template.RowBackColor2 = System.Drawing.Color.White;
            this.scb_template.SelectedColor = System.Drawing.Color.LightSteelBlue;
            this.scb_template.Size = new System.Drawing.Size(370, 182);
            this.scb_template.TabIndex = 21;
            this.scb_template.UseCompatibleStateImageBehavior = false;
            this.scb_template.View = System.Windows.Forms.View.Details;
            this.scb_template.Visible = false;
            this.scb_template.MouseClick += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseClick);
            this.scb_template.MouseUp += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseUp);
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "命令名称";
            this.columnHeader4.Width = 120;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Shell脚本";
            this.columnHeader5.Width = 245;
            // 
            // var_list
            // 
            this.var_list.BorderColor = System.Drawing.Color.LightGray;
            this.var_list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader6,
            this.columnHeader7});
            this.var_list.FullRowSelect = true;
            this.var_list.GridLines = true;
            this.var_list.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.var_list.Location = new System.Drawing.Point(539, 5);
            this.var_list.MultiSelect = false;
            this.var_list.Name = "var_list";
            this.var_list.OwnerDraw = true;
            this.var_list.RowBackColor2 = System.Drawing.Color.White;
            this.var_list.SelectedColor = System.Drawing.Color.LightSteelBlue;
            this.var_list.Size = new System.Drawing.Size(370, 182);
            this.var_list.TabIndex = 22;
            this.var_list.UseCompatibleStateImageBehavior = false;
            this.var_list.View = System.Windows.Forms.View.Details;
            this.var_list.Visible = false;
            this.var_list.MouseClick += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseClick);
            this.var_list.MouseUp += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseUp);
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "变量";
            this.columnHeader6.Width = 180;
            // 
            // columnHeader7
            // 
            this.columnHeader7.Text = "描述";
            this.columnHeader7.Width = 185;
            // 
            // ConditionTaskForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(997, 670);
            this.Controls.Add(this.var_list);
            this.Controls.Add(this.scb_template);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.customShellListView);
            this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(718, 528);
            this.Name = "ConditionTaskForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "条件任务";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.Load += new System.EventHandler(this.ConditionTaskForm_Load);
            this.contextMenuStrip1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : NginxMonitorForm.Designer.cs
with Apache License 2.0
from 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 Source : SessionManageForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SessionManageForm));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.saveAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.largeIconToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.listToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.detailToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.button2 = new System.Windows.Forms.Button();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolNewSession = new System.Windows.Forms.ToolStripButton();
            this.toolSaveAll = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolCopy = new System.Windows.Forms.ToolStripButton();
            this.toolPaste = new System.Windows.Forms.ToolStripButton();
            this.toolDelete = new System.Windows.Forms.ToolStripButton();
            this.toolProperties = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
            this.iconListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.listToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.detailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.button_conn = new System.Windows.Forms.Button();
            this.checkBox_onstart = new System.Windows.Forms.CheckBox();
            this.largeImageList = new System.Windows.Forms.ImageList(this.components);
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.listView = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.connectToolStripMenuItem,
            this.newSessionToolStripMenuItem,
            this.toolStripSeparator5,
            this.saveAllToolStripMenuItem,
            this.copyToolStripMenuItem,
            this.pasteToolStripMenuItem,
            this.toolStripSeparator3,
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem,
            this.toolStripSeparator4,
            this.viewToolStripMenuItem,
            this.propertiesToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(151, 220);
            // 
            // connectToolStripMenuItem
            // 
            this.connectToolStripMenuItem.Enabled = false;
            this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
            this.connectToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.connectToolStripMenuItem.Text = "Connect";
            this.connectToolStripMenuItem.Click += new System.EventHandler(this.button_conn_Click);
            // 
            // newSessionToolStripMenuItem
            // 
            this.newSessionToolStripMenuItem.Name = "newSessionToolStripMenuItem";
            this.newSessionToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.newSessionToolStripMenuItem.Text = "New Session";
            this.newSessionToolStripMenuItem.Click += new System.EventHandler(this.newSessionToolStripMenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(147, 6);
            // 
            // saveAllToolStripMenuItem
            // 
            this.saveAllToolStripMenuItem.Enabled = false;
            this.saveAllToolStripMenuItem.Name = "saveAllToolStripMenuItem";
            this.saveAllToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.saveAllToolStripMenuItem.Text = "Save All";
            this.saveAllToolStripMenuItem.Click += new System.EventHandler(this.SaveAll_Click);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Enabled = false;
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.copyToolStripMenuItem.Text = "Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.toolCopy_Click);
            // 
            // pasteToolStripMenuItem
            // 
            this.pasteToolStripMenuItem.Enabled = false;
            this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
            this.pasteToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.pasteToolStripMenuItem.Text = "Paste";
            this.pasteToolStripMenuItem.Click += new System.EventHandler(this.toolPaste_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(147, 6);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Enabled = false;
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.renameToolStripMenuItem.Text = "Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Enabled = false;
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.deleteToolStripMenuItem.Text = "Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.toolDelete_Click);
            // 
            // toolStripSeparator4
            // 
            this.toolStripSeparator4.Name = "toolStripSeparator4";
            this.toolStripSeparator4.Size = new System.Drawing.Size(147, 6);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.largeIconToolStripMenuItem,
            this.listToolStripMenuItem1,
            this.detailToolStripMenuItem1});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.viewToolStripMenuItem.Text = "View";
            // 
            // largeIconToolStripMenuItem
            // 
            this.largeIconToolStripMenuItem.Name = "largeIconToolStripMenuItem";
            this.largeIconToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.largeIconToolStripMenuItem.Text = "Large Icon";
            this.largeIconToolStripMenuItem.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // listToolStripMenuItem1
            // 
            this.listToolStripMenuItem1.Name = "listToolStripMenuItem1";
            this.listToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
            this.listToolStripMenuItem1.Text = "List";
            this.listToolStripMenuItem1.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // detailToolStripMenuItem1
            // 
            this.detailToolStripMenuItem1.Checked = true;
            this.detailToolStripMenuItem1.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailToolStripMenuItem1.Name = "detailToolStripMenuItem1";
            this.detailToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
            this.detailToolStripMenuItem1.Text = "Detail";
            this.detailToolStripMenuItem1.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // propertiesToolStripMenuItem
            // 
            this.propertiesToolStripMenuItem.Enabled = false;
            this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
            this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(150, 22);
            this.propertiesToolStripMenuItem.Text = "Properties";
            this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.toolProperties_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(627, 415);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(70, 25);
            this.button2.TabIndex = 4;
            this.button2.Text = "关闭";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNewSession,
            this.toolSaveAll,
            this.toolStripSeparator1,
            this.toolCopy,
            this.toolPaste,
            this.toolDelete,
            this.toolProperties,
            this.toolStripSeparator2,
            this.toolStripSplitButton1});
            this.toolStrip1.Location = new System.Drawing.Point(8, 30);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(696, 25);
            this.toolStrip1.TabIndex = 5;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolNewSession
            // 
            this.toolNewSession.Image = global::AppMonitor.Properties.Resources.newSession;
            this.toolNewSession.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewSession.Name = "toolNewSession";
            this.toolNewSession.Size = new System.Drawing.Size(54, 22);
            this.toolNewSession.Text = "New";
            this.toolNewSession.ToolTipText = "New Session";
            this.toolNewSession.Click += new System.EventHandler(this.newSessionToolStripMenuItem_Click);
            // 
            // toolSaveAll
            // 
            this.toolSaveAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolSaveAll.Enabled = false;
            this.toolSaveAll.Image = global::AppMonitor.Properties.Resources.Save_all_16px;
            this.toolSaveAll.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolSaveAll.Name = "toolSaveAll";
            this.toolSaveAll.Size = new System.Drawing.Size(23, 22);
            this.toolSaveAll.Text = "Save All";
            this.toolSaveAll.Click += new System.EventHandler(this.SaveAll_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // toolCopy
            // 
            this.toolCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolCopy.Enabled = false;
            this.toolCopy.Image = global::AppMonitor.Properties.Resources.copy;
            this.toolCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolCopy.Name = "toolCopy";
            this.toolCopy.Size = new System.Drawing.Size(23, 22);
            this.toolCopy.Text = "Copy Session";
            this.toolCopy.Click += new System.EventHandler(this.toolCopy_Click);
            // 
            // toolPaste
            // 
            this.toolPaste.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolPaste.Enabled = false;
            this.toolPaste.Image = global::AppMonitor.Properties.Resources.paste;
            this.toolPaste.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolPaste.Name = "toolPaste";
            this.toolPaste.Size = new System.Drawing.Size(23, 22);
            this.toolPaste.Text = "Paste Session";
            this.toolPaste.Click += new System.EventHandler(this.toolPaste_Click);
            // 
            // toolDelete
            // 
            this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolDelete.Enabled = false;
            this.toolDelete.Image = global::AppMonitor.Properties.Resources.remove_16px;
            this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolDelete.Name = "toolDelete";
            this.toolDelete.Size = new System.Drawing.Size(23, 22);
            this.toolDelete.Text = "Remove Session";
            this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
            // 
            // toolProperties
            // 
            this.toolProperties.Enabled = false;
            this.toolProperties.Image = global::AppMonitor.Properties.Resources.lookAttr;
            this.toolProperties.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolProperties.Name = "toolProperties";
            this.toolProperties.Size = new System.Drawing.Size(88, 22);
            this.toolProperties.Text = "Properties";
            this.toolProperties.ToolTipText = "Edit Properties";
            this.toolProperties.Click += new System.EventHandler(this.toolProperties_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripSplitButton1
            // 
            this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.iconListToolStripMenuItem,
            this.listToolStripMenuItem,
            this.detailToolStripMenuItem});
            this.toolStripSplitButton1.Image = global::AppMonitor.Properties.Resources.view_16px;
            this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButton1.Name = "toolStripSplitButton1";
            this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
            this.toolStripSplitButton1.Text = "View";
            // 
            // iconListToolStripMenuItem
            // 
            this.iconListToolStripMenuItem.Name = "iconListToolStripMenuItem";
            this.iconListToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.iconListToolStripMenuItem.Tag = "large";
            this.iconListToolStripMenuItem.Text = "Large Icon";
            this.iconListToolStripMenuItem.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // listToolStripMenuItem
            // 
            this.listToolStripMenuItem.Name = "listToolStripMenuItem";
            this.listToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.listToolStripMenuItem.Tag = "list";
            this.listToolStripMenuItem.Text = "List";
            this.listToolStripMenuItem.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // detailToolStripMenuItem
            // 
            this.detailToolStripMenuItem.Checked = true;
            this.detailToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailToolStripMenuItem.Name = "detailToolStripMenuItem";
            this.detailToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
            this.detailToolStripMenuItem.Tag = "detail";
            this.detailToolStripMenuItem.Text = "Detail";
            this.detailToolStripMenuItem.Click += new System.EventHandler(this.ViewToolMenuItem_Click);
            // 
            // button_conn
            // 
            this.button_conn.Enabled = false;
            this.button_conn.Location = new System.Drawing.Point(532, 415);
            this.button_conn.Name = "button_conn";
            this.button_conn.Size = new System.Drawing.Size(89, 25);
            this.button_conn.TabIndex = 6;
            this.button_conn.Text = "连接";
            this.button_conn.UseVisualStyleBackColor = true;
            this.button_conn.Click += new System.EventHandler(this.button_conn_Click);
            // 
            // checkBox_onstart
            // 
            this.checkBox_onstart.AutoSize = true;
            this.checkBox_onstart.BackColor = System.Drawing.Color.Transparent;
            this.checkBox_onstart.ForeColor = System.Drawing.Color.Teal;
            this.checkBox_onstart.Location = new System.Drawing.Point(16, 418);
            this.checkBox_onstart.Name = "checkBox_onstart";
            this.checkBox_onstart.Size = new System.Drawing.Size(144, 16);
            this.checkBox_onstart.TabIndex = 7;
            this.checkBox_onstart.Text = "程序运行时显示此窗口";
            this.checkBox_onstart.UseVisualStyleBackColor = false;
            this.checkBox_onstart.CheckedChanged += new System.EventHandler(this.checkBox_onstart_CheckedChanged);
            // 
            // largeImageList
            // 
            this.largeImageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("largeImageList.ImageStream")));
            this.largeImageList.TransparentColor = System.Drawing.Color.Transparent;
            this.largeImageList.Images.SetKeyName(0, "monitor48.png");
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "monitor.png");
            // 
            // listView
            // 
            this.listView.BackColor = System.Drawing.Color.White;
            this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5});
            this.listView.ContextMenuStrip = this.contextMenuStrip1;
            this.listView.Font = new System.Drawing.Font("宋体", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.listView.FullRowSelect = true;
            this.listView.LabelEdit = true;
            this.listView.LabelWrap = false;
            this.listView.LargeImageList = this.largeImageList;
            this.listView.Location = new System.Drawing.Point(9, 58);
            this.listView.MultiSelect = false;
            this.listView.Name = "listView";
            this.listView.Size = new System.Drawing.Size(693, 345);
            this.listView.SmallImageList = this.imageList1;
            this.listView.TabIndex = 10;
            this.listView.UseCompatibleStateImageBehavior = false;
            this.listView.View = System.Windows.Forms.View.Details;
            this.listView.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.listView_AfterLabelEdit);
            this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged_1);
            this.listView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.listView_KeyUp);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 250;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Host";
            this.columnHeader2.Width = 130;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Port";
            this.columnHeader3.Width = 80;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Protocol";
            this.columnHeader4.Width = 100;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "UserName";
            this.columnHeader5.Width = 120;
            // 
            // SessionManageForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 10F);
            this.ClientSize = new System.Drawing.Size(712, 455);
            this.Controls.Add(this.listView);
            this.Controls.Add(this.checkBox_onstart);
            this.Controls.Add(this.button_conn);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(this.button2);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(712, 455);
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(712, 455);
            this.Name = "SessionManageForm";
            this.Text = "Sessions";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SessionManageForm_FormClosing);
            this.Load += new System.EventHandler(this.SessionManageForm_Load);
            this.contextMenuStrip1.ResumeLayout(false);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : QuickCommandManageForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(QuickCommandManageForm));
            this.skinDataGridView1 = new CCWin.SkinControl.SkinDataGridView();
            this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Column4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.Column3 = new System.Windows.Forms.DataGridViewButtonColumn();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.skinDataGridView1)).BeginInit();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // skinDataGridView1
            // 
            this.skinDataGridView1.AllowUserToAddRows = false;
            this.skinDataGridView1.AllowUserToDeleteRows = false;
            this.skinDataGridView1.AllowUserToResizeColumns = false;
            this.skinDataGridView1.AllowUserToResizeRows = false;
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(246)))), ((int)(((byte)(253)))));
            this.skinDataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
            this.skinDataGridView1.BackgroundColor = System.Drawing.SystemColors.Window;
            this.skinDataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.skinDataGridView1.ColumnFont = null;
            this.skinDataGridView1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(246)))), ((int)(((byte)(239)))));
            dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 10F);
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.skinDataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
            this.skinDataGridView1.ColumnHeadersHeight = 24;
            this.skinDataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.skinDataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Column2,
            this.Column1,
            this.Column4,
            this.Column3});
            this.skinDataGridView1.ColumnSelectForeColor = System.Drawing.SystemColors.HighlightText;
            this.skinDataGridView1.ContextMenuStrip = this.contextMenuStrip1;
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.BackColor = System.Drawing.Color.White;
            dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(188)))), ((int)(((byte)(240)))));
            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.White;
            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.skinDataGridView1.DefaultCellStyle = dataGridViewCellStyle3;
            this.skinDataGridView1.EnableHeadersVisualStyles = false;
            this.skinDataGridView1.GridColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.skinDataGridView1.HeadFont = new System.Drawing.Font("宋体", 10F);
            this.skinDataGridView1.HeadSelectForeColor = System.Drawing.SystemColors.HighlightText;
            this.skinDataGridView1.Location = new System.Drawing.Point(12, 36);
            this.skinDataGridView1.MultiSelect = false;
            this.skinDataGridView1.Name = "skinDataGridView1";
            this.skinDataGridView1.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
            this.skinDataGridView1.RowHeadersVisible = false;
            this.skinDataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            this.skinDataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle4;
            this.skinDataGridView1.RowTemplate.Height = 23;
            this.skinDataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.skinDataGridView1.Size = new System.Drawing.Size(804, 413);
            this.skinDataGridView1.TabIndex = 0;
            this.skinDataGridView1.replacedleBack = null;
            this.skinDataGridView1.replacedleBackColorBegin = System.Drawing.SystemColors.Control;
            this.skinDataGridView1.replacedleBackColorEnd = System.Drawing.SystemColors.Control;
            this.skinDataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.skinDataGridView1_CellClick);
            this.skinDataGridView1.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.skinDataGridView1_CellMouseDown);
            this.skinDataGridView1.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.skinDataGridView1_CellValueChanged);
            // 
            // Column2
            // 
            this.Column2.HeaderText = "Index";
            this.Column2.Name = "Column2";
            this.Column2.ReadOnly = true;
            // 
            // Column1
            // 
            this.Column1.HeaderText = "Shell";
            this.Column1.Name = "Column1";
            this.Column1.Width = 540;
            // 
            // Column4
            // 
            this.Column4.HeaderText = "Append CR";
            this.Column4.Name = "Column4";
            // 
            // Column3
            // 
            this.Column3.HeaderText = "Del";
            this.Column3.Name = "Column3";
            this.Column3.ReadOnly = true;
            this.Column3.Width = 60;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(12, 457);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(136, 25);
            this.button1.TabIndex = 1;
            this.button1.Text = "New Quick Command";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(748, 457);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(70, 25);
            this.button2.TabIndex = 2;
            this.button2.Text = "Close";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.editToolStripMenuItem,
            this.removeToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(124, 70);
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.editToolStripMenuItem.Text = "Edit";
            this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
            // 
            // removeToolStripMenuItem
            // 
            this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
            this.removeToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.removeToolStripMenuItem.Text = "Remove";
            this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
            // 
            // newToolStripMenuItem
            // 
            this.newToolStripMenuItem.Name = "newToolStripMenuItem";
            this.newToolStripMenuItem.Size = new System.Drawing.Size(123, 22);
            this.newToolStripMenuItem.Text = "New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
            // 
            // QuickCommandManageForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(830, 496);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.skinDataGridView1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "QuickCommandManageForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Quick Command Manage";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.Load += new System.EventHandler(this.QuickCommandManageForm_Load);
            ((System.ComponentModel.ISupportInitialize)(this.skinDataGridView1)).EndInit();
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : SpringBootMonitorForm.Designer.cs
with Apache License 2.0
from 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 Source : CentralServerConfigForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CentralServerConfigForm));
            System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer treeListViewItemCollectionComparer1 = new System.Windows.Forms.TreeListViewItemCollection.TreeListViewItemCollectionComparer();
            this.listView1 = new CCWin.SkinControl.SkinListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.imageList1 = new System.Windows.Forms.ImageList(this.components);
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.skinPanel2 = new CCWin.SkinControl.SkinPanel();
            this._treeView = new System.Windows.Forms.TreeListView();
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.编辑节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.添加子节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.添加同级节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.添加顶级节点ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.升级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.降级ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.删除节点ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.imageList2 = new System.Windows.Forms.ImageList(this.components);
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.skinPanel1 = new CCWin.SkinControl.SkinPanel();
            this.ymlEditor = new System.Windows.Forms.RichTextBox();
            this.contextMenuStrip3 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.复制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.粘贴ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.剪切ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.删除行ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.行注释ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.btn_reload = new System.Windows.Forms.Button();
            this.btn_new = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.校验ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.下载到本地ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.上传到服务器ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.更改文件名ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.删除文件ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.label4 = new System.Windows.Forms.Label();
            this.pictureBox3 = new System.Windows.Forms.PictureBox();
            this.label5 = new System.Windows.Forms.Label();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.btn_save = new System.Windows.Forms.Button();
            this.btn_meihua = new System.Windows.Forms.Button();
            this.btn_tree = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.file_label = new System.Windows.Forms.ToolStripStatusLabel();
            this.pos_label = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.btn_show = new System.Windows.Forms.Button();
            this.stb_remote_dir = new CCWin.SkinControl.SkinTextBox();
            this.panel2 = new System.Windows.Forms.Panel();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btn_ok = new System.Windows.Forms.Button();
            this.打开本地临时目录ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.skinPanel2.SuspendLayout();
            this.contextMenuStrip2.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.skinPanel1.SuspendLayout();
            this.contextMenuStrip3.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            this.panel1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // listView1
            // 
            this.listView1.AllowDrop = true;
            this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1});
            this.listView1.Font = new System.Drawing.Font("宋体", 10F);
            this.listView1.FullRowSelect = true;
            this.listView1.GridLines = true;
            this.listView1.Location = new System.Drawing.Point(15, 66);
            this.listView1.MultiSelect = false;
            this.listView1.Name = "listView1";
            this.listView1.OwnerDraw = true;
            this.listView1.RowBackColor2 = System.Drawing.Color.WhiteSmoke;
            this.listView1.SelectedColor = System.Drawing.Color.DarkOrange;
            this.listView1.Size = new System.Drawing.Size(230, 588);
            this.listView1.SmallImageList = this.imageList1;
            this.listView1.StateImageList = this.imageList1;
            this.listView1.TabIndex = 2;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
            this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "YML 文件";
            this.columnHeader1.Width = 220;
            // 
            // imageList1
            // 
            this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
            this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList1.Images.SetKeyName(0, "gray_light_16px.png");
            this.imageList1.Images.SetKeyName(1, "green_light_16px.png");
            this.imageList1.Images.SetKeyName(2, "MB_light_16px.png");
            this.imageList1.Images.SetKeyName(3, "yellow_light_16px.png");
            // 
            // tabControl1
            // 
            this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Location = new System.Drawing.Point(247, 39);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(914, 720);
            this.tabControl1.TabIndex = 3;
            this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.skinPanel2);
            this.tabPage1.Location = new System.Drawing.Point(4, 25);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(906, 691);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "YML 树形视图";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // skinPanel2
            // 
            this.skinPanel2.BackColor = System.Drawing.Color.Transparent;
            this.skinPanel2.BorderColor = System.Drawing.SystemColors.ActiveCaption;
            this.skinPanel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.skinPanel2.Controls.Add(this._treeView);
            this.skinPanel2.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
            this.skinPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.skinPanel2.DownBack = null;
            this.skinPanel2.Location = new System.Drawing.Point(3, 3);
            this.skinPanel2.MouseBack = null;
            this.skinPanel2.Name = "skinPanel2";
            this.skinPanel2.NormlBack = null;
            this.skinPanel2.Size = new System.Drawing.Size(900, 685);
            this.skinPanel2.TabIndex = 0;
            // 
            // _treeView
            // 
            this._treeView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5});
            treeListViewItemCollectionComparer1.Column = 0;
            treeListViewItemCollectionComparer1.SortOrder = System.Windows.Forms.SortOrder.None;
            this._treeView.Comparer = treeListViewItemCollectionComparer1;
            this._treeView.ContextMenuStrip = this.contextMenuStrip2;
            this._treeView.Dock = System.Windows.Forms.DockStyle.Fill;
            this._treeView.GridLines = true;
            this._treeView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this._treeView.LabelWrap = false;
            this._treeView.Location = new System.Drawing.Point(0, 0);
            this._treeView.MultiSelect = false;
            this._treeView.Name = "_treeView";
            this._treeView.PlusMinusLineColor = System.Drawing.Color.Teal;
            this._treeView.Size = new System.Drawing.Size(898, 683);
            this._treeView.SmallImageList = this.imageList2;
            this._treeView.Sorting = System.Windows.Forms.SortOrder.None;
            this._treeView.TabIndex = 0;
            this._treeView.UseCompatibleStateImageBehavior = false;
            this._treeView.AfterExpand += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterExpand);
            this._treeView.AfterCollapse += new System.Windows.Forms.TreeListViewEventHandler(this._treeView_AfterCollapse);
            this._treeView.MouseUp += new System.Windows.Forms.MouseEventHandler(this._treeView_MouseUp);
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "属性";
            this.columnHeader2.Width = 240;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "值";
            this.columnHeader3.Width = 280;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "层级";
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "描述";
            this.columnHeader5.Width = 280;
            // 
            // contextMenuStrip2
            // 
            this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.编辑节点ToolStripMenuItem,
            this.添加子节点ToolStripMenuItem,
            this.添加同级节点ToolStripMenuItem,
            this.添加顶级节点ToolStripMenuItem1,
            this.升级ToolStripMenuItem,
            this.降级ToolStripMenuItem,
            this.删除节点ToolStripMenuItem});
            this.contextMenuStrip2.Name = "contextMenuStrip2";
            this.contextMenuStrip2.Size = new System.Drawing.Size(149, 158);
            // 
            // 编辑节点ToolStripMenuItem
            // 
            this.编辑节点ToolStripMenuItem.Name = "编辑节点ToolStripMenuItem";
            this.编辑节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.编辑节点ToolStripMenuItem.Text = "编辑节点";
            this.编辑节点ToolStripMenuItem.Click += new System.EventHandler(this.编辑节点ToolStripMenuItem_Click);
            // 
            // 添加子节点ToolStripMenuItem
            // 
            this.添加子节点ToolStripMenuItem.Name = "添加子节点ToolStripMenuItem";
            this.添加子节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.添加子节点ToolStripMenuItem.Text = "添加子节点";
            this.添加子节点ToolStripMenuItem.Click += new System.EventHandler(this.添加子节点ToolStripMenuItem_Click);
            // 
            // 添加同级节点ToolStripMenuItem
            // 
            this.添加同级节点ToolStripMenuItem.Name = "添加同级节点ToolStripMenuItem";
            this.添加同级节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.添加同级节点ToolStripMenuItem.Text = "添加同级节点";
            this.添加同级节点ToolStripMenuItem.Click += new System.EventHandler(this.添加同级节点ToolStripMenuItem_Click);
            // 
            // 添加顶级节点ToolStripMenuItem1
            // 
            this.添加顶级节点ToolStripMenuItem1.Name = "添加顶级节点ToolStripMenuItem1";
            this.添加顶级节点ToolStripMenuItem1.Size = new System.Drawing.Size(148, 22);
            this.添加顶级节点ToolStripMenuItem1.Text = "添加顶级节点";
            this.添加顶级节点ToolStripMenuItem1.Click += new System.EventHandler(this.添加顶级节点ToolStripMenuItem1_Click);
            // 
            // 升级ToolStripMenuItem
            // 
            this.升级ToolStripMenuItem.Name = "升级ToolStripMenuItem";
            this.升级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.升级ToolStripMenuItem.Text = "升级";
            this.升级ToolStripMenuItem.Click += new System.EventHandler(this.升级ToolStripMenuItem_Click);
            // 
            // 降级ToolStripMenuItem
            // 
            this.降级ToolStripMenuItem.Name = "降级ToolStripMenuItem";
            this.降级ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.降级ToolStripMenuItem.Text = "降级";
            this.降级ToolStripMenuItem.Click += new System.EventHandler(this.降级ToolStripMenuItem_Click);
            // 
            // 删除节点ToolStripMenuItem
            // 
            this.删除节点ToolStripMenuItem.Name = "删除节点ToolStripMenuItem";
            this.删除节点ToolStripMenuItem.Size = new System.Drawing.Size(148, 22);
            this.删除节点ToolStripMenuItem.Text = "删除节点";
            this.删除节点ToolStripMenuItem.Click += new System.EventHandler(this.删除节点ToolStripMenuItem_Click);
            // 
            // imageList2
            // 
            this.imageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));
            this.imageList2.TransparentColor = System.Drawing.Color.Transparent;
            this.imageList2.Images.SetKeyName(0, "Folder_open_16px.png");
            this.imageList2.Images.SetKeyName(1, "item_16px.png");
            this.imageList2.Images.SetKeyName(2, "gray_light_16px.png");
            this.imageList2.Images.SetKeyName(3, "openSession.png");
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.skinPanel1);
            this.tabPage2.Location = new System.Drawing.Point(4, 25);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(906, 691);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "YML 编辑器";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // skinPanel1
            // 
            this.skinPanel1.BackColor = System.Drawing.Color.Transparent;
            this.skinPanel1.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.skinPanel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.skinPanel1.Controls.Add(this.ymlEditor);
            this.skinPanel1.ControlState = CCWin.SkinClreplaced.ControlState.Normal;
            this.skinPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.skinPanel1.DownBack = null;
            this.skinPanel1.Location = new System.Drawing.Point(3, 3);
            this.skinPanel1.MouseBack = null;
            this.skinPanel1.Name = "skinPanel1";
            this.skinPanel1.NormlBack = null;
            this.skinPanel1.Size = new System.Drawing.Size(900, 685);
            this.skinPanel1.TabIndex = 0;
            // 
            // ymlEditor
            // 
            this.ymlEditor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
            this.ymlEditor.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.ymlEditor.ContextMenuStrip = this.contextMenuStrip3;
            this.ymlEditor.DetectUrls = false;
            this.ymlEditor.Dock = System.Windows.Forms.DockStyle.Fill;
            this.ymlEditor.Font = new System.Drawing.Font("新宋体", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.ymlEditor.ForeColor = System.Drawing.Color.White;
            this.ymlEditor.Location = new System.Drawing.Point(0, 0);
            this.ymlEditor.Name = "ymlEditor";
            this.ymlEditor.Size = new System.Drawing.Size(898, 683);
            this.ymlEditor.TabIndex = 0;
            this.ymlEditor.Text = "";
            this.ymlEditor.WordWrap = false;
            this.ymlEditor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ymlEditor_KeyUp);
            this.ymlEditor.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ymlEditor_MouseDown);
            // 
            // contextMenuStrip3
            // 
            this.contextMenuStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.复制ToolStripMenuItem,
            this.粘贴ToolStripMenuItem,
            this.剪切ToolStripMenuItem,
            this.删除行ToolStripMenuItem,
            this.行注释ToolStripMenuItem});
            this.contextMenuStrip3.Name = "contextMenuStrip3";
            this.contextMenuStrip3.Size = new System.Drawing.Size(215, 114);
            // 
            // 复制ToolStripMenuItem
            // 
            this.复制ToolStripMenuItem.Name = "复制ToolStripMenuItem";
            this.复制ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
            this.复制ToolStripMenuItem.Text = "复制";
            this.复制ToolStripMenuItem.Click += new System.EventHandler(this.复制ToolStripMenuItem_Click);
            // 
            // 粘贴ToolStripMenuItem
            // 
            this.粘贴ToolStripMenuItem.Name = "粘贴ToolStripMenuItem";
            this.粘贴ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
            this.粘贴ToolStripMenuItem.Text = "粘贴";
            this.粘贴ToolStripMenuItem.Click += new System.EventHandler(this.粘贴ToolStripMenuItem_Click);
            // 
            // 剪切ToolStripMenuItem
            // 
            this.剪切ToolStripMenuItem.Name = "剪切ToolStripMenuItem";
            this.剪切ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
            this.剪切ToolStripMenuItem.Text = "剪切";
            this.剪切ToolStripMenuItem.Click += new System.EventHandler(this.剪切ToolStripMenuItem_Click);
            // 
            // 删除行ToolStripMenuItem
            // 
            this.删除行ToolStripMenuItem.Name = "删除行ToolStripMenuItem";
            this.删除行ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
            this.删除行ToolStripMenuItem.ShowShortcutKeys = false;
            this.删除行ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
            this.删除行ToolStripMenuItem.Text = "删除行                Ctrl + D";
            this.删除行ToolStripMenuItem.Click += new System.EventHandler(this.删除行ToolStripMenuItem_Click);
            // 
            // 行注释ToolStripMenuItem
            // 
            this.行注释ToolStripMenuItem.Name = "行注释ToolStripMenuItem";
            this.行注释ToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.OemQuestion)));
            this.行注释ToolStripMenuItem.ShowShortcutKeys = false;
            this.行注释ToolStripMenuItem.Size = new System.Drawing.Size(214, 22);
            this.行注释ToolStripMenuItem.Text = "行注释/取消注释   Ctrl + /";
            this.行注释ToolStripMenuItem.Click += new System.EventHandler(this.行注释ToolStripMenuItem_Click);
            // 
            // btn_reload
            // 
            this.btn_reload.Location = new System.Drawing.Point(15, 35);
            this.btn_reload.Name = "btn_reload";
            this.btn_reload.Size = new System.Drawing.Size(75, 27);
            this.btn_reload.TabIndex = 3;
            this.btn_reload.Text = "重新加载";
            this.btn_reload.UseVisualStyleBackColor = true;
            this.btn_reload.Click += new System.EventHandler(this.btn_reload_Click);
            // 
            // btn_new
            // 
            this.btn_new.Location = new System.Drawing.Point(156, 36);
            this.btn_new.Name = "btn_new";
            this.btn_new.Size = new System.Drawing.Size(90, 27);
            this.btn_new.TabIndex = 4;
            this.btn_new.Text = "新建YML文件";
            this.btn_new.UseVisualStyleBackColor = true;
            this.btn_new.Click += new System.EventHandler(this.btn_new_Click);
            // 
            // label1
            // 
            this.label1.BackColor = System.Drawing.Color.Red;
            this.label1.Font = new System.Drawing.Font("宋体", 11F);
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(30, 137);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(201, 52);
            this.label1.TabIndex = 3;
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.label1.Visible = false;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.校验ToolStripMenuItem,
            this.下载到本地ToolStripMenuItem,
            this.上传到服务器ToolStripMenuItem,
            this.更改文件名ToolStripMenuItem,
            this.删除文件ToolStripMenuItem,
            this.打开本地临时目录ToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(173, 158);
            // 
            // 校验ToolStripMenuItem
            // 
            this.校验ToolStripMenuItem.Name = "校验ToolStripMenuItem";
            this.校验ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.校验ToolStripMenuItem.Text = "格式校验";
            this.校验ToolStripMenuItem.Click += new System.EventHandler(this.校验ToolStripMenuItem_Click);
            // 
            // 下载到本地ToolStripMenuItem
            // 
            this.下载到本地ToolStripMenuItem.Name = "下载到本地ToolStripMenuItem";
            this.下载到本地ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.下载到本地ToolStripMenuItem.Text = "重新获取文件";
            this.下载到本地ToolStripMenuItem.Click += new System.EventHandler(this.下载到本地ToolStripMenuItem_Click);
            // 
            // 上传到服务器ToolStripMenuItem
            // 
            this.上传到服务器ToolStripMenuItem.Name = "上传到服务器ToolStripMenuItem";
            this.上传到服务器ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.上传到服务器ToolStripMenuItem.Text = "上传到服务器";
            this.上传到服务器ToolStripMenuItem.Click += new System.EventHandler(this.上传到服务器ToolStripMenuItem_Click);
            // 
            // 更改文件名ToolStripMenuItem
            // 
            this.更改文件名ToolStripMenuItem.Name = "更改文件名ToolStripMenuItem";
            this.更改文件名ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.更改文件名ToolStripMenuItem.Text = "更改文件名";
            this.更改文件名ToolStripMenuItem.Click += new System.EventHandler(this.更改文件名ToolStripMenuItem_Click);
            // 
            // 删除文件ToolStripMenuItem
            // 
            this.删除文件ToolStripMenuItem.Name = "删除文件ToolStripMenuItem";
            this.删除文件ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.删除文件ToolStripMenuItem.Text = "删除文件";
            this.删除文件ToolStripMenuItem.Click += new System.EventHandler(this.删除文件ToolStripMenuItem_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox1.BackgroundImage = global::AppMonitor.Properties.Resources.green_light_16px;
            this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.pictureBox1.Location = new System.Drawing.Point(9, 26);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(16, 16);
            this.pictureBox1.TabIndex = 6;
            this.pictureBox1.TabStop = false;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Location = new System.Drawing.Point(31, 28);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(161, 12);
            this.label2.TabIndex = 7;
            this.label2.Text = "格式正确,与服务器保持同步";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.BackColor = System.Drawing.Color.Transparent;
            this.label3.Location = new System.Drawing.Point(31, 52);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(161, 12);
            this.label3.TabIndex = 9;
            this.label3.Text = "内容已修改,未与服务器同步";
            // 
            // pictureBox2
            // 
            this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox2.BackgroundImage = global::AppMonitor.Properties.Resources.MB_light_16px;
            this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.pictureBox2.Location = new System.Drawing.Point(9, 50);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(16, 16);
            this.pictureBox2.TabIndex = 8;
            this.pictureBox2.TabStop = false;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.BackColor = System.Drawing.Color.Transparent;
            this.label4.Location = new System.Drawing.Point(31, 76);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(65, 12);
            this.label4.TabIndex = 11;
            this.label4.Text = "格式有错误";
            // 
            // pictureBox3
            // 
            this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox3.BackgroundImage = global::AppMonitor.Properties.Resources.yellow_light_16px;
            this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.pictureBox3.Location = new System.Drawing.Point(9, 74);
            this.pictureBox3.Name = "pictureBox3";
            this.pictureBox3.Size = new System.Drawing.Size(16, 16);
            this.pictureBox3.TabIndex = 10;
            this.pictureBox3.TabStop = false;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.BackColor = System.Drawing.Color.Transparent;
            this.label5.Location = new System.Drawing.Point(31, 5);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(161, 12);
            this.label5.TabIndex = 13;
            this.label5.Text = "只存在本地,未同步到服务器";
            // 
            // pictureBox4
            // 
            this.pictureBox4.BackColor = System.Drawing.Color.Transparent;
            this.pictureBox4.BackgroundImage = global::AppMonitor.Properties.Resources.gray_light_16px;
            this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.pictureBox4.Location = new System.Drawing.Point(9, 3);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(16, 16);
            this.pictureBox4.TabIndex = 12;
            this.pictureBox4.TabStop = false;
            // 
            // btn_save
            // 
            this.btn_save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn_save.Enabled = false;
            this.btn_save.Location = new System.Drawing.Point(1075, 33);
            this.btn_save.Name = "btn_save";
            this.btn_save.Size = new System.Drawing.Size(78, 27);
            this.btn_save.TabIndex = 14;
            this.btn_save.Text = "保存";
            this.btn_save.UseVisualStyleBackColor = true;
            this.btn_save.Click += new System.EventHandler(this.button1_Click);
            // 
            // btn_meihua
            // 
            this.btn_meihua.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btn_meihua.Location = new System.Drawing.Point(949, 33);
            this.btn_meihua.Name = "btn_meihua";
            this.btn_meihua.Size = new System.Drawing.Size(78, 27);
            this.btn_meihua.TabIndex = 15;
            this.btn_meihua.Text = "美化";
            this.btn_meihua.UseVisualStyleBackColor = true;
            this.btn_meihua.Visible = false;
            this.btn_meihua.Click += new System.EventHandler(this.btn_meihua_Click);
            // 
            // btn_tree
            // 
            this.btn_tree.Location = new System.Drawing.Point(474, 33);
            this.btn_tree.Name = "btn_tree";
            this.btn_tree.Size = new System.Drawing.Size(108, 27);
            this.btn_tree.TabIndex = 16;
            this.btn_tree.Text = "展开全部节点";
            this.btn_tree.UseVisualStyleBackColor = true;
            this.btn_tree.Click += new System.EventHandler(this.btn_tree_Click);
            // 
            // panel1
            // 
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.BackColor = System.Drawing.Color.Transparent;
            this.panel1.Controls.Add(this.pictureBox4);
            this.panel1.Controls.Add(this.pictureBox1);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.pictureBox2);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.pictureBox3);
            this.panel1.Controls.Add(this.label4);
            this.panel1.Controls.Add(this.label5);
            this.panel1.Location = new System.Drawing.Point(14, 660);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(230, 94);
            this.panel1.TabIndex = 17;
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.file_label,
            this.pos_label,
            this.toolStripStatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(8, 759);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1156, 22);
            this.statusStrip1.TabIndex = 18;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // file_label
            // 
            this.file_label.AutoSize = false;
            this.file_label.BackColor = System.Drawing.Color.Transparent;
            this.file_label.Name = "file_label";
            this.file_label.Size = new System.Drawing.Size(800, 17);
            this.file_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // pos_label
            // 
            this.pos_label.AutoSize = false;
            this.pos_label.BackColor = System.Drawing.Color.Transparent;
            this.pos_label.Name = "pos_label";
            this.pos_label.Size = new System.Drawing.Size(150, 17);
            this.pos_label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.BackColor = System.Drawing.Color.Transparent;
            this.toolStripStatusLabel1.ForeColor = System.Drawing.Color.Gray;
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(116, 17);
            this.toolStripStatusLabel1.Text = "支持文件拖拽到窗口";
            // 
            // btn_show
            // 
            this.btn_show.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
            this.btn_show.Location = new System.Drawing.Point(89, 35);
            this.btn_show.Name = "btn_show";
            this.btn_show.Size = new System.Drawing.Size(22, 27);
            this.btn_show.TabIndex = 19;
            this.btn_show.Text = "↓";
            this.btn_show.UseVisualStyleBackColor = true;
            this.btn_show.Click += new System.EventHandler(this.btn_show_Click);
            // 
            // stb_remote_dir
            // 
            this.stb_remote_dir.BackColor = System.Drawing.Color.Transparent;
            this.stb_remote_dir.DownBack = null;
            this.stb_remote_dir.Icon = null;
            this.stb_remote_dir.IconIsButton = false;
            this.stb_remote_dir.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.stb_remote_dir.IsPreplacedwordChat = '\0';
            this.stb_remote_dir.IsSystemPreplacedwordChar = false;
            this.stb_remote_dir.Lines = new string[0];
            this.stb_remote_dir.Location = new System.Drawing.Point(10, 24);
            this.stb_remote_dir.Margin = new System.Windows.Forms.Padding(0);
            this.stb_remote_dir.MaxLength = 32767;
            this.stb_remote_dir.MinimumSize = new System.Drawing.Size(28, 28);
            this.stb_remote_dir.MouseBack = null;
            this.stb_remote_dir.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.stb_remote_dir.Multiline = false;
            this.stb_remote_dir.Name = "stb_remote_dir";
            this.stb_remote_dir.NormlBack = null;
            this.stb_remote_dir.Padding = new System.Windows.Forms.Padding(5);
            this.stb_remote_dir.ReadOnly = false;
            this.stb_remote_dir.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.stb_remote_dir.Size = new System.Drawing.Size(425, 28);
            // 
            // 
            // 
            this.stb_remote_dir.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.stb_remote_dir.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.stb_remote_dir.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.stb_remote_dir.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.stb_remote_dir.SkinTxt.Name = "BaseText";
            this.stb_remote_dir.SkinTxt.Size = new System.Drawing.Size(415, 18);
            this.stb_remote_dir.SkinTxt.TabIndex = 0;
            this.stb_remote_dir.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.stb_remote_dir.SkinTxt.WaterText = "远程服务器YML配置文件所在目录";
            this.stb_remote_dir.TabIndex = 20;
            this.stb_remote_dir.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.stb_remote_dir.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.stb_remote_dir.WaterText = "远程服务器YML配置文件所在目录";
            this.stb_remote_dir.WordWrap = true;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel2.Controls.Add(this.groupBox1);
            this.panel2.Location = new System.Drawing.Point(15, 62);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(456, 109);
            this.panel2.TabIndex = 21;
            this.panel2.Visible = false;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.stb_remote_dir);
            this.groupBox1.Controls.Add(this.btn_ok);
            this.groupBox1.Location = new System.Drawing.Point(8, 6);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(442, 94);
            this.groupBox1.TabIndex = 23;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "YML配置目录:";
            // 
            // btn_ok
            // 
            this.btn_ok.Location = new System.Drawing.Point(370, 60);
            this.btn_ok.Name = "btn_ok";
            this.btn_ok.Size = new System.Drawing.Size(65, 29);
            this.btn_ok.TabIndex = 22;
            this.btn_ok.Text = "确定";
            this.btn_ok.UseVisualStyleBackColor = true;
            this.btn_ok.Click += new System.EventHandler(this.btn_ok_Click);
            // 
            // 打开本地临时目录ToolStripMenuItem
            // 
            this.打开本地临时目录ToolStripMenuItem.Name = "打开本地临时目录ToolStripMenuItem";
            this.打开本地临时目录ToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.打开本地临时目录ToolStripMenuItem.Text = "打开本地临时目录";
            this.打开本地临时目录ToolStripMenuItem.Click += new System.EventHandler(this.打开本地临时目录ToolStripMenuItem_Click);
            // 
            // CentralServerConfigForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(1172, 789);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.btn_show);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.btn_tree);
            this.Controls.Add(this.btn_meihua);
            this.Controls.Add(this.btn_save);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.btn_new);
            this.Controls.Add(this.btn_reload);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.listView1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "CentralServerConfigForm";
            this.Text = "Docker公共配置";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.Load += new System.EventHandler(this.CentralServerConfigForm_Load);
            this.DragDrop += new System.Windows.Forms.DragEventHandler(this.CentralServerConfigForm_DragDrop);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.skinPanel2.ResumeLayout(false);
            this.contextMenuStrip2.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.skinPanel1.ResumeLayout(false);
            this.contextMenuStrip3.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : TextEditorForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextEditorForm));
            this.cmMain = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.cutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
            this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.replaceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editor = new System.Windows.Forms.RichTextBox();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.cmMain.SuspendLayout();
            this.SuspendLayout();
            // 
            // cmMain
            // 
            this.cmMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cutToolStripMenuItem,
            this.copyToolStripMenuItem,
            this.pasteToolStripMenuItem,
            this.selectAllToolStripMenuItem,
            this.toolStripMenuItem2,
            this.undoToolStripMenuItem,
            this.redoToolStripMenuItem,
            this.toolStripMenuItem3,
            this.findToolStripMenuItem,
            this.replaceToolStripMenuItem});
            this.cmMain.Name = "cmMain";
            this.cmMain.Size = new System.Drawing.Size(125, 192);
            // 
            // cutToolStripMenuItem
            // 
            this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
            this.cutToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.cutToolStripMenuItem.Text = "剪切";
            this.cutToolStripMenuItem.Click += new System.EventHandler(this.cutToolStripMenuItem_Click);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.copyToolStripMenuItem.Text = "复制";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
            // 
            // pasteToolStripMenuItem
            // 
            this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
            this.pasteToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.pasteToolStripMenuItem.Text = "粘贴";
            this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.selectAllToolStripMenuItem.Text = "选择全部";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(121, 6);
            // 
            // undoToolStripMenuItem
            // 
            this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
            this.undoToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.undoToolStripMenuItem.Text = "撤销";
            this.undoToolStripMenuItem.Click += new System.EventHandler(this.undoToolStripMenuItem_Click);
            // 
            // redoToolStripMenuItem
            // 
            this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
            this.redoToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.redoToolStripMenuItem.Text = "重做";
            this.redoToolStripMenuItem.Click += new System.EventHandler(this.redoToolStripMenuItem_Click);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(121, 6);
            // 
            // findToolStripMenuItem
            // 
            this.findToolStripMenuItem.Name = "findToolStripMenuItem";
            this.findToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.findToolStripMenuItem.Text = "查找";
            this.findToolStripMenuItem.Click += new System.EventHandler(this.findToolStripMenuItem_Click);
            // 
            // replaceToolStripMenuItem
            // 
            this.replaceToolStripMenuItem.Name = "replaceToolStripMenuItem";
            this.replaceToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
            this.replaceToolStripMenuItem.Text = "替换";
            this.replaceToolStripMenuItem.Click += new System.EventHandler(this.replaceToolStripMenuItem_Click);
            // 
            // editor
            // 
            this.editor.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
            this.editor.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.editor.ContextMenuStrip = this.cmMain;
            this.editor.Dock = System.Windows.Forms.DockStyle.Fill;
            this.editor.Font = new System.Drawing.Font("宋体", 11F);
            this.editor.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
            this.editor.Location = new System.Drawing.Point(8, 30);
            this.editor.Name = "editor";
            this.editor.Size = new System.Drawing.Size(906, 560);
            this.editor.TabIndex = 1;
            this.editor.Text = "";
            this.editor.TextChanged += new System.EventHandler(this.editor_TextChanged);
            this.editor.KeyDown += new System.Windows.Forms.KeyEventHandler(this.editor_KeyDown);
            this.editor.KeyUp += new System.Windows.Forms.KeyEventHandler(this.editor_KeyUp);
            // 
            // TextEditorForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(922, 598);
            this.Controls.Add(this.editor);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "TextEditorForm";
            this.Text = "TextEditor";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TextEditorForm_FormClosing);
            this.Load += new System.EventHandler(this.TextEditorForm_Load);
            this.cmMain.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : SftpForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SftpForm));
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.status_info = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStrip2 = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.text_host = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.text_username = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
            this.text_preplaced = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
            this.text_port = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.listView3 = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.removeAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
            this.restartFailedsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.restartTransfersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.logtext = new System.Windows.Forms.RichTextBox();
            this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.selectAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.statusStrip1.SuspendLayout();
            this.toolStrip2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
            this.splitContainer2.Panel1.SuspendLayout();
            this.splitContainer2.Panel2.SuspendLayout();
            this.splitContainer2.SuspendLayout();
            this.tabControl1.SuspendLayout();
            this.tabPage1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.contextMenuStrip2.SuspendLayout();
            this.SuspendLayout();
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.status_info});
            this.statusStrip1.Location = new System.Drawing.Point(8, 733);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(1125, 22);
            this.statusStrip1.TabIndex = 2;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // status_info
            // 
            this.status_info.AutoSize = false;
            this.status_info.Name = "status_info";
            this.status_info.Size = new System.Drawing.Size(200, 17);
            this.status_info.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // toolStrip2
            // 
            this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.text_host,
            this.toolStripSeparator1,
            this.toolStripLabel2,
            this.text_username,
            this.toolStripSeparator2,
            this.toolStripLabel3,
            this.text_preplaced,
            this.toolStripLabel4,
            this.text_port,
            this.toolStripButton7});
            this.toolStrip2.Location = new System.Drawing.Point(8, 30);
            this.toolStrip2.Name = "toolStrip2";
            this.toolStrip2.Size = new System.Drawing.Size(1125, 25);
            this.toolStrip2.TabIndex = 3;
            this.toolStrip2.Text = "toolStrip2";
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(47, 22);
            this.toolStripLabel1.Text = "Host:";
            // 
            // text_host
            // 
            this.text_host.Name = "text_host";
            this.text_host.Size = new System.Drawing.Size(200, 25);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(82, 22);
            this.toolStripLabel2.Text = "UserName:";
            // 
            // text_username
            // 
            this.text_username.Name = "text_username";
            this.text_username.Size = new System.Drawing.Size(160, 25);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripLabel3
            // 
            this.toolStripLabel3.Name = "toolStripLabel3";
            this.toolStripLabel3.Size = new System.Drawing.Size(76, 22);
            this.toolStripLabel3.Text = "Preplacedword:";
            // 
            // text_preplaced
            // 
            this.text_preplaced.Name = "text_preplaced";
            this.text_preplaced.Size = new System.Drawing.Size(160, 25);
            // 
            // toolStripLabel4
            // 
            this.toolStripLabel4.Name = "toolStripLabel4";
            this.toolStripLabel4.Size = new System.Drawing.Size(44, 22);
            this.toolStripLabel4.Text = "Port:";
            // 
            // text_port
            // 
            this.text_port.Name = "text_port";
            this.text_port.Size = new System.Drawing.Size(60, 25);
            this.text_port.Text = "22";
            // 
            // toolStripButton7
            // 
            this.toolStripButton7.Image = global::AppMonitor.Properties.Resources.reConn;
            this.toolStripButton7.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton7.Name = "toolStripButton7";
            this.toolStripButton7.Size = new System.Drawing.Size(75, 22);
            this.toolStripButton7.Text = "Connect";
            this.toolStripButton7.Click += new System.EventHandler(this.toolStripButton7_Click);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(8, 55);
            this.splitContainer1.Name = "splitContainer1";
            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
            this.splitContainer1.Size = new System.Drawing.Size(1125, 678);
            this.splitContainer1.SplitterDistance = 520;
            this.splitContainer1.TabIndex = 4;
            // 
            // splitContainer2
            // 
            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer2.Location = new System.Drawing.Point(0, 0);
            this.splitContainer2.Name = "splitContainer2";
            // 
            // splitContainer2.Panel1
            // 
            this.splitContainer2.Panel1.Controls.Add(this.panel1);
            // 
            // splitContainer2.Panel2
            // 
            this.splitContainer2.Panel2.Controls.Add(this.panel2);
            this.splitContainer2.Size = new System.Drawing.Size(1125, 520);
            this.splitContainer2.SplitterDistance = 501;
            this.splitContainer2.TabIndex = 0;
            // 
            // panel1
            // 
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(501, 520);
            this.panel1.TabIndex = 0;
            // 
            // panel2
            // 
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(620, 520);
            this.panel2.TabIndex = 1;
            // 
            // tabControl1
            // 
            this.tabControl1.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
            this.tabControl1.Controls.Add(this.tabPage1);
            this.tabControl1.Controls.Add(this.tabPage2);
            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabControl1.Location = new System.Drawing.Point(0, 0);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(1125, 154);
            this.tabControl1.TabIndex = 0;
            // 
            // tabPage1
            // 
            this.tabPage1.Controls.Add(this.listView3);
            this.tabPage1.Location = new System.Drawing.Point(4, 25);
            this.tabPage1.Name = "tabPage1";
            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage1.Size = new System.Drawing.Size(1117, 125);
            this.tabPage1.TabIndex = 0;
            this.tabPage1.Text = "Transfers";
            this.tabPage1.UseVisualStyleBackColor = true;
            // 
            // listView3
            // 
            this.listView3.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5,
            this.columnHeader6,
            this.columnHeader7,
            this.columnHeader8});
            this.listView3.ContextMenuStrip = this.contextMenuStrip1;
            this.listView3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView3.FullRowSelect = true;
            this.listView3.Location = new System.Drawing.Point(3, 3);
            this.listView3.Name = "listView3";
            this.listView3.Size = new System.Drawing.Size(1111, 119);
            this.listView3.TabIndex = 0;
            this.listView3.UseCompatibleStateImageBehavior = false;
            this.listView3.View = System.Windows.Forms.View.Details;
            this.listView3.SelectedIndexChanged += new System.EventHandler(this.listView3_SelectedIndexChanged);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 270;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Status";
            this.columnHeader2.Width = 70;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Progress";
            this.columnHeader3.Width = 80;
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Size";
            this.columnHeader4.Width = 70;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Local Path";
            this.columnHeader5.Width = 220;
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "Remote Path";
            this.columnHeader6.Width = 220;
            // 
            // columnHeader7
            // 
            this.columnHeader7.Text = "Speed";
            // 
            // columnHeader8
            // 
            this.columnHeader8.Text = "Time Left";
            this.columnHeader8.Width = 70;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.removeToolStripMenuItem,
            this.removeAllToolStripMenuItem,
            this.toolStripSeparator5,
            this.restartFailedsToolStripMenuItem,
            this.restartTransfersToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(176, 98);
            // 
            // removeToolStripMenuItem
            // 
            this.removeToolStripMenuItem.Enabled = false;
            this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
            this.removeToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.removeToolStripMenuItem.Text = "Remove";
            this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
            // 
            // removeAllToolStripMenuItem
            // 
            this.removeAllToolStripMenuItem.Enabled = false;
            this.removeAllToolStripMenuItem.Name = "removeAllToolStripMenuItem";
            this.removeAllToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.removeAllToolStripMenuItem.Text = "Remove All";
            this.removeAllToolStripMenuItem.Click += new System.EventHandler(this.removeAllToolStripMenuItem_Click);
            // 
            // toolStripSeparator5
            // 
            this.toolStripSeparator5.Name = "toolStripSeparator5";
            this.toolStripSeparator5.Size = new System.Drawing.Size(172, 6);
            // 
            // restartFailedsToolStripMenuItem
            // 
            this.restartFailedsToolStripMenuItem.Enabled = false;
            this.restartFailedsToolStripMenuItem.Name = "restartFailedsToolStripMenuItem";
            this.restartFailedsToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.restartFailedsToolStripMenuItem.Text = "Restart All Failed";
            this.restartFailedsToolStripMenuItem.Click += new System.EventHandler(this.restartFailedsToolStripMenuItem_Click);
            // 
            // restartTransfersToolStripMenuItem
            // 
            this.restartTransfersToolStripMenuItem.Enabled = false;
            this.restartTransfersToolStripMenuItem.Name = "restartTransfersToolStripMenuItem";
            this.restartTransfersToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
            this.restartTransfersToolStripMenuItem.Text = "Restart Transfers";
            this.restartTransfersToolStripMenuItem.Click += new System.EventHandler(this.restartTransfersToolStripMenuItem_Click);
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.logtext);
            this.tabPage2.Location = new System.Drawing.Point(4, 25);
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
            this.tabPage2.Size = new System.Drawing.Size(1117, 125);
            this.tabPage2.TabIndex = 1;
            this.tabPage2.Text = "Logs";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // logtext
            // 
            this.logtext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(30)))), ((int)(((byte)(30)))));
            this.logtext.ContextMenuStrip = this.contextMenuStrip2;
            this.logtext.Dock = System.Windows.Forms.DockStyle.Fill;
            this.logtext.ForeColor = System.Drawing.Color.White;
            this.logtext.Location = new System.Drawing.Point(3, 3);
            this.logtext.Name = "logtext";
            this.logtext.ReadOnly = true;
            this.logtext.Size = new System.Drawing.Size(1111, 119);
            this.logtext.TabIndex = 0;
            this.logtext.Text = "";
            // 
            // contextMenuStrip2
            // 
            this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyToolStripMenuItem,
            this.clearToolStripMenuItem,
            this.selectAllToolStripMenuItem});
            this.contextMenuStrip2.Name = "contextMenuStrip2";
            this.contextMenuStrip2.Size = new System.Drawing.Size(129, 70);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
            this.copyToolStripMenuItem.Text = "&Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
            // 
            // clearToolStripMenuItem
            // 
            this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
            this.clearToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
            this.clearToolStripMenuItem.Text = "&Clear";
            this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click);
            // 
            // selectAllToolStripMenuItem
            // 
            this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
            this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(128, 22);
            this.selectAllToolStripMenuItem.Text = "&Select All";
            this.selectAllToolStripMenuItem.Click += new System.EventHandler(this.selectAllToolStripMenuItem_Click);
            // 
            // SftpForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Control;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(1141, 763);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.toolStrip2);
            this.Controls.Add(this.statusStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "SftpForm";
            this.Text = "AMSftp";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.SftpForm_FormClosing);
            this.Load += new System.EventHandler(this.SftpForm_Load);
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.toolStrip2.ResumeLayout(false);
            this.toolStrip2.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.splitContainer2.Panel1.ResumeLayout(false);
            this.splitContainer2.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
            this.splitContainer2.ResumeLayout(false);
            this.tabControl1.ResumeLayout(false);
            this.tabPage1.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.contextMenuStrip2.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : SftpLinuxForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.text_adress = new System.Windows.Forms.ToolStripTextBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.listView2 = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.viewTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.largeIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.smallIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.listTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.detailTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.transferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.LargeImages = new System.Windows.Forms.ImageList(this.components);
            this.SmallImages = new System.Windows.Forms.ImageList(this.components);
            this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
            this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
            this.largeIconTool = new System.Windows.Forms.ToolStripMenuItem();
            this.smallIconTool = new System.Windows.Forms.ToolStripMenuItem();
            this.listTool = new System.Windows.Forms.ToolStripMenuItem();
            this.detailTool = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.text_adress,
            this.toolStripButton2,
            this.toolStripButton3,
            this.toolStripSplitButton1});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(622, 25);
            this.toolStrip1.TabIndex = 0;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // text_adress
            // 
            this.text_adress.Name = "text_adress";
            this.text_adress.Size = new System.Drawing.Size(400, 25);
            this.text_adress.KeyUp += new System.Windows.Forms.KeyEventHandler(this.text_adress_KeyUp);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.treeView1);
            this.splitContainer1.Panel1MinSize = 0;
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.listView2);
            this.splitContainer1.Size = new System.Drawing.Size(622, 511);
            this.splitContainer1.SplitterDistance = 25;
            this.splitContainer1.TabIndex = 1;
            this.splitContainer1.Resize += new System.EventHandler(this.splitContainer1_Resize);
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Location = new System.Drawing.Point(0, 0);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(25, 511);
            this.treeView1.TabIndex = 0;
            // 
            // listView2
            // 
            this.listView2.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4,
            this.columnHeader5,
            this.columnHeader6});
            this.listView2.ContextMenuStrip = this.contextMenuStrip1;
            this.listView2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView2.LargeImageList = this.LargeImages;
            this.listView2.Location = new System.Drawing.Point(0, 0);
            this.listView2.Name = "listView2";
            this.listView2.Size = new System.Drawing.Size(593, 511);
            this.listView2.SmallImageList = this.SmallImages;
            this.listView2.TabIndex = 0;
            this.listView2.UseCompatibleStateImageBehavior = false;
            this.listView2.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
            this.listView2.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView2_MouseDoubleClick);
            this.listView2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView2_MouseUp);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 200;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Size";
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Type";
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Modified";
            this.columnHeader4.Width = 150;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Attributes";
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "Owner";
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewTool2,
            this.refreshToolStripMenuItem,
            this.transferToolStripMenuItem,
            this.openToolStripMenuItem,
            this.editToolStripMenuItem,
            this.toolStripSeparator1,
            this.copyToolStripMenuItem,
            this.pasteToolStripMenuItem,
            this.toolStripSeparator2,
            this.newFolderToolStripMenuItem,
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem,
            this.toolStripSeparator3,
            this.propertiesToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(144, 264);
            // 
            // viewTool2
            // 
            this.viewTool2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.largeIconTool2,
            this.smallIconTool2,
            this.listTool2,
            this.detailTool2});
            this.viewTool2.Name = "viewTool2";
            this.viewTool2.Size = new System.Drawing.Size(143, 22);
            this.viewTool2.Text = "View";
            // 
            // largeIconTool2
            // 
            this.largeIconTool2.Name = "largeIconTool2";
            this.largeIconTool2.Size = new System.Drawing.Size(138, 22);
            this.largeIconTool2.Tag = "Large";
            this.largeIconTool2.Text = "Large Icon";
            this.largeIconTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // smallIconTool2
            // 
            this.smallIconTool2.Name = "smallIconTool2";
            this.smallIconTool2.Size = new System.Drawing.Size(138, 22);
            this.smallIconTool2.Tag = "Small";
            this.smallIconTool2.Text = "Small Icon";
            this.smallIconTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // listTool2
            // 
            this.listTool2.Name = "listTool2";
            this.listTool2.Size = new System.Drawing.Size(138, 22);
            this.listTool2.Tag = "List";
            this.listTool2.Text = "List";
            this.listTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // detailTool2
            // 
            this.detailTool2.Checked = true;
            this.detailTool2.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailTool2.Name = "detailTool2";
            this.detailTool2.Size = new System.Drawing.Size(138, 22);
            this.detailTool2.Tag = "Detail";
            this.detailTool2.Text = "Detail";
            this.detailTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // refreshToolStripMenuItem
            // 
            this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
            this.refreshToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.refreshToolStripMenuItem.Text = "&Refresh";
            this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
            // 
            // transferToolStripMenuItem
            // 
            this.transferToolStripMenuItem.Name = "transferToolStripMenuItem";
            this.transferToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.transferToolStripMenuItem.Text = "&Transfer";
            this.transferToolStripMenuItem.Click += new System.EventHandler(this.transferToolStripMenuItem_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.openToolStripMenuItem.Text = "&Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // editToolStripMenuItem
            // 
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.editToolStripMenuItem.Text = "&Edit";
            this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(140, 6);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.copyToolStripMenuItem.Text = "&Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
            // 
            // pasteToolStripMenuItem
            // 
            this.pasteToolStripMenuItem.Enabled = false;
            this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
            this.pasteToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.pasteToolStripMenuItem.Text = "&Paste";
            this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(140, 6);
            // 
            // newFolderToolStripMenuItem
            // 
            this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
            this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.newFolderToolStripMenuItem.Text = "&New Folder";
            this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.renameToolStripMenuItem.Text = "&Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.deleteToolStripMenuItem.Text = "&Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(140, 6);
            // 
            // propertiesToolStripMenuItem
            // 
            this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
            this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.propertiesToolStripMenuItem.Text = "&Properties";
            this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
            // 
            // LargeImages
            // 
            this.LargeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.LargeImages.ImageSize = new System.Drawing.Size(64, 64);
            this.LargeImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // SmallImages
            // 
            this.SmallImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.SmallImages.ImageSize = new System.Drawing.Size(16, 16);
            this.SmallImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // toolStripButton2
            // 
            this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButton2.Image = global::AppMonitor.Properties.Resources.parent_24px;
            this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton2.Name = "toolStripButton2";
            this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
            this.toolStripButton2.Text = "toolStripButton2";
            this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
            // 
            // toolStripButton3
            // 
            this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButton3.Image = global::AppMonitor.Properties.Resources.refresh_24px;
            this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton3.Name = "toolStripButton3";
            this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
            this.toolStripButton3.Text = "toolStripButton3";
            this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
            // 
            // toolStripSplitButton1
            // 
            this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.largeIconTool,
            this.smallIconTool,
            this.listTool,
            this.detailTool});
            this.toolStripSplitButton1.Image = global::AppMonitor.Properties.Resources.view_16px;
            this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButton1.Name = "toolStripSplitButton1";
            this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
            this.toolStripSplitButton1.Text = "toolStripSplitButton1";
            this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
            // 
            // largeIconTool
            // 
            this.largeIconTool.Name = "largeIconTool";
            this.largeIconTool.Size = new System.Drawing.Size(138, 22);
            this.largeIconTool.Tag = "Large";
            this.largeIconTool.Text = "Large Icon";
            this.largeIconTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // smallIconTool
            // 
            this.smallIconTool.Name = "smallIconTool";
            this.smallIconTool.Size = new System.Drawing.Size(138, 22);
            this.smallIconTool.Tag = "Small";
            this.smallIconTool.Text = "Small Icon";
            this.smallIconTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // listTool
            // 
            this.listTool.Name = "listTool";
            this.listTool.Size = new System.Drawing.Size(138, 22);
            this.listTool.Tag = "List";
            this.listTool.Text = "List";
            this.listTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // detailTool
            // 
            this.detailTool.Checked = true;
            this.detailTool.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailTool.Name = "detailTool";
            this.detailTool.Size = new System.Drawing.Size(138, 22);
            this.detailTool.Tag = "Detail";
            this.detailTool.Text = "Detail";
            this.detailTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // SftpLinuxForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(622, 536);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.toolStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "SftpLinuxForm";
            this.ShowInTaskbar = false;
            this.Text = "SftpLinuxForm";
            this.Load += new System.EventHandler(this.sftpLinuxForm_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : sftpWinForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.text_adress = new System.Windows.Forms.ToolStripTextBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.treeView1 = new System.Windows.Forms.TreeView();
            this.listView1 = new System.Windows.Forms.ListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.largeIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.smallIconTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.listTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.detailTool2 = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.transferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.renameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.LargeImages = new System.Windows.Forms.ImageList(this.components);
            this.SmallImages = new System.Windows.Forms.ImageList(this.components);
            this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
            this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
            this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
            this.detailTool = new System.Windows.Forms.ToolStripMenuItem();
            this.listTool = new System.Windows.Forms.ToolStripMenuItem();
            this.largeIconTool = new System.Windows.Forms.ToolStripMenuItem();
            this.smallIconTool = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.contextMenuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.text_adress,
            this.toolStripButton2,
            this.toolStripButton3,
            this.toolStripSplitButton1});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(622, 25);
            this.toolStrip1.TabIndex = 0;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // text_adress
            // 
            this.text_adress.Name = "text_adress";
            this.text_adress.Size = new System.Drawing.Size(400, 25);
            this.text_adress.KeyUp += new System.Windows.Forms.KeyEventHandler(this.text_adress_KeyUp);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.treeView1);
            this.splitContainer1.Panel1MinSize = 0;
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.listView1);
            this.splitContainer1.Panel2.Resize += new System.EventHandler(this.splitContainer1_Panel2_Resize);
            this.splitContainer1.Size = new System.Drawing.Size(622, 511);
            this.splitContainer1.SplitterDistance = 25;
            this.splitContainer1.TabIndex = 1;
            // 
            // treeView1
            // 
            this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeView1.Location = new System.Drawing.Point(0, 0);
            this.treeView1.Name = "treeView1";
            this.treeView1.Size = new System.Drawing.Size(25, 511);
            this.treeView1.TabIndex = 0;
            // 
            // listView1
            // 
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3,
            this.columnHeader4});
            this.listView1.ContextMenuStrip = this.contextMenuStrip1;
            this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView1.LargeImageList = this.LargeImages;
            this.listView1.Location = new System.Drawing.Point(0, 0);
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(593, 511);
            this.listView1.SmallImageList = this.SmallImages;
            this.listView1.TabIndex = 0;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
            this.listView1.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseDoubleClick);
            this.listView1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.listView1_MouseUp);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Name";
            this.columnHeader1.Width = 200;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Size";
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Type";
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "Modified";
            this.columnHeader4.Width = 150;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewToolStripMenuItem,
            this.refreshToolStripMenuItem,
            this.transferToolStripMenuItem,
            this.openToolStripMenuItem,
            this.toolStripSeparator1,
            this.copyToolStripMenuItem,
            this.pasteToolStripMenuItem,
            this.toolStripSeparator2,
            this.newFolderToolStripMenuItem,
            this.renameToolStripMenuItem,
            this.deleteToolStripMenuItem,
            this.toolStripSeparator3,
            this.propertiesToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(144, 242);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.largeIconTool2,
            this.smallIconTool2,
            this.listTool2,
            this.detailTool2});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.viewToolStripMenuItem.Text = "View";
            // 
            // largeIconTool2
            // 
            this.largeIconTool2.Name = "largeIconTool2";
            this.largeIconTool2.Size = new System.Drawing.Size(152, 22);
            this.largeIconTool2.Tag = "Large";
            this.largeIconTool2.Text = "Large Icon";
            this.largeIconTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // smallIconTool2
            // 
            this.smallIconTool2.Name = "smallIconTool2";
            this.smallIconTool2.Size = new System.Drawing.Size(152, 22);
            this.smallIconTool2.Tag = "Small";
            this.smallIconTool2.Text = "Small Icon";
            this.smallIconTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // listTool2
            // 
            this.listTool2.Name = "listTool2";
            this.listTool2.Size = new System.Drawing.Size(152, 22);
            this.listTool2.Tag = "List";
            this.listTool2.Text = "List";
            this.listTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // detailTool2
            // 
            this.detailTool2.Checked = true;
            this.detailTool2.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailTool2.Name = "detailTool2";
            this.detailTool2.Size = new System.Drawing.Size(152, 22);
            this.detailTool2.Tag = "Detail";
            this.detailTool2.Text = "Detail";
            this.detailTool2.Click += new System.EventHandler(this.ChangeView);
            // 
            // refreshToolStripMenuItem
            // 
            this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
            this.refreshToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.refreshToolStripMenuItem.Text = "&Refresh";
            this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
            // 
            // transferToolStripMenuItem
            // 
            this.transferToolStripMenuItem.Name = "transferToolStripMenuItem";
            this.transferToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.transferToolStripMenuItem.Text = "&Transfer";
            this.transferToolStripMenuItem.Click += new System.EventHandler(this.transferToolStripMenuItem_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.openToolStripMenuItem.Text = "&Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
            // 
            // copyToolStripMenuItem
            // 
            this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
            this.copyToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.copyToolStripMenuItem.Text = "&Copy";
            this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
            // 
            // pasteToolStripMenuItem
            // 
            this.pasteToolStripMenuItem.Enabled = false;
            this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
            this.pasteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.pasteToolStripMenuItem.Text = "&Paste";
            this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6);
            // 
            // renameToolStripMenuItem
            // 
            this.renameToolStripMenuItem.Name = "renameToolStripMenuItem";
            this.renameToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.renameToolStripMenuItem.Text = "&Rename";
            this.renameToolStripMenuItem.Click += new System.EventHandler(this.renameToolStripMenuItem_Click);
            // 
            // newFolderToolStripMenuItem
            // 
            this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem";
            this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.newFolderToolStripMenuItem.Text = "&New Folder";
            this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click);
            // 
            // deleteToolStripMenuItem
            // 
            this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
            this.deleteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.deleteToolStripMenuItem.Text = "&Delete";
            this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6);
            // 
            // propertiesToolStripMenuItem
            // 
            this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem";
            this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.propertiesToolStripMenuItem.Text = "&Properties";
            this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click);
            // 
            // LargeImages
            // 
            this.LargeImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.LargeImages.ImageSize = new System.Drawing.Size(64, 64);
            this.LargeImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // SmallImages
            // 
            this.SmallImages.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
            this.SmallImages.ImageSize = new System.Drawing.Size(16, 16);
            this.SmallImages.TransparentColor = System.Drawing.Color.Transparent;
            // 
            // toolStripButton2
            // 
            this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButton2.Image = global::AppMonitor.Properties.Resources.parent_24px;
            this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton2.Name = "toolStripButton2";
            this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
            this.toolStripButton2.Text = "toolStripButton2";
            this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
            // 
            // toolStripButton3
            // 
            this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripButton3.Image = global::AppMonitor.Properties.Resources.refresh_24px;
            this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripButton3.Name = "toolStripButton3";
            this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
            this.toolStripButton3.Text = "toolStripButton3";
            this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
            // 
            // toolStripSplitButton1
            // 
            this.toolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSplitButton1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.largeIconTool,
            this.smallIconTool,
            this.listTool,
            this.detailTool});
            this.toolStripSplitButton1.Image = global::AppMonitor.Properties.Resources.view_16px;
            this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSplitButton1.Name = "toolStripSplitButton1";
            this.toolStripSplitButton1.Size = new System.Drawing.Size(32, 22);
            this.toolStripSplitButton1.Text = "toolStripSplitButton1";
            this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.toolStripSplitButton1_ButtonClick);
            // 
            // detailTool
            // 
            this.detailTool.Checked = true;
            this.detailTool.CheckState = System.Windows.Forms.CheckState.Checked;
            this.detailTool.Name = "detailTool";
            this.detailTool.Size = new System.Drawing.Size(152, 22);
            this.detailTool.Tag = "Detail";
            this.detailTool.Text = "Detail";
            this.detailTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // listTool
            // 
            this.listTool.Name = "listTool";
            this.listTool.Size = new System.Drawing.Size(152, 22);
            this.listTool.Tag = "List";
            this.listTool.Text = "List";
            this.listTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // largeIconTool
            // 
            this.largeIconTool.Name = "largeIconTool";
            this.largeIconTool.Size = new System.Drawing.Size(152, 22);
            this.largeIconTool.Tag = "Large";
            this.largeIconTool.Text = "Large Icon";
            this.largeIconTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // smallIconTool
            // 
            this.smallIconTool.Name = "smallIconTool";
            this.smallIconTool.Size = new System.Drawing.Size(152, 22);
            this.smallIconTool.Tag = "Small";
            this.smallIconTool.Text = "Small Icon";
            this.smallIconTool.Click += new System.EventHandler(this.ChangeView);
            // 
            // SftpWinForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(622, 536);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.toolStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "SftpWinForm";
            this.ShowInTaskbar = false;
            this.Text = "sftpWinForm";
            this.Load += new System.EventHandler(this.sftpWinForm_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            this.contextMenuStrip1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : TimedTaskForm.Designer.cs
with Apache License 2.0
from 214175590

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TimedTaskForm));
            this.scb_cycle = new CCWin.SkinControl.SkinComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.customShellListView = new CCWin.SkinControl.SkinListView();
            this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.deleteItemToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.upToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.downToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.task_name = new CCWin.SkinControl.SkinTextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.week_panel = new System.Windows.Forms.Panel();
            this.week6 = new System.Windows.Forms.CheckBox();
            this.week5 = new System.Windows.Forms.CheckBox();
            this.week4 = new System.Windows.Forms.CheckBox();
            this.week3 = new System.Windows.Forms.CheckBox();
            this.week2 = new System.Windows.Forms.CheckBox();
            this.week1 = new System.Windows.Forms.CheckBox();
            this.week0 = new System.Windows.Forms.CheckBox();
            this.time = new System.Windows.Forms.DateTimePicker();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.date = new System.Windows.Forms.DateTimePicker();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.linkLabel2 = new System.Windows.Forms.LinkLabel();
            this.linkLabel1 = new System.Windows.Forms.LinkLabel();
            this.button1 = new System.Windows.Forms.Button();
            this.shell = new CCWin.SkinControl.SkinTextBox();
            this.shell_name = new CCWin.SkinControl.SkinTextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.label7 = new System.Windows.Forms.Label();
            this.scb_template = new CCWin.SkinControl.SkinListView();
            this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.var_list = new CCWin.SkinControl.SkinListView();
            this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.contextMenuStrip1.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.week_panel.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.SuspendLayout();
            // 
            // scb_cycle
            // 
            this.scb_cycle.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_cycle.BorderColor = System.Drawing.Color.LightSteelBlue;
            this.scb_cycle.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.scb_cycle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.scb_cycle.Font = new System.Drawing.Font("宋体", 10F);
            this.scb_cycle.FormattingEnabled = true;
            this.scb_cycle.ItemBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_cycle.ItemHeight = 18;
            this.scb_cycle.Items.AddRange(new object[] {
            "仅一次",
            "每天",
            "每周",
            "每月",
            "每年"});
            this.scb_cycle.Location = new System.Drawing.Point(78, 23);
            this.scb_cycle.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.scb_cycle.MouseColor = System.Drawing.Color.Orange;
            this.scb_cycle.MouseGradientColor = System.Drawing.Color.Orange;
            this.scb_cycle.Name = "scb_cycle";
            this.scb_cycle.Size = new System.Drawing.Size(137, 24);
            this.scb_cycle.TabIndex = 1;
            this.scb_cycle.WaterText = "";
            this.scb_cycle.SelectedIndexChanged += new System.EventHandler(this.skinComboBox1_SelectedIndexChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label1.Location = new System.Drawing.Point(24, 25);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(48, 19);
            this.label1.TabIndex = 2;
            this.label1.Text = "周期:";
            // 
            // customShellListView
            // 
            this.customShellListView.BorderColor = System.Drawing.Color.LightGray;
            this.customShellListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2,
            this.columnHeader3});
            this.customShellListView.ContextMenuStrip = this.contextMenuStrip1;
            this.customShellListView.FullRowSelect = true;
            this.customShellListView.GridLines = true;
            this.customShellListView.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.customShellListView.Location = new System.Drawing.Point(20, 290);
            this.customShellListView.MultiSelect = false;
            this.customShellListView.Name = "customShellListView";
            this.customShellListView.OwnerDraw = true;
            this.customShellListView.RowBackColor2 = System.Drawing.Color.White;
            this.customShellListView.SelectedColor = System.Drawing.Color.LightSkyBlue;
            this.customShellListView.Size = new System.Drawing.Size(955, 367);
            this.customShellListView.TabIndex = 11;
            this.customShellListView.UseCompatibleStateImageBehavior = false;
            this.customShellListView.View = System.Windows.Forms.View.Details;
            this.customShellListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.AllKeyUp);
            this.customShellListView.MouseUp += new System.Windows.Forms.MouseEventHandler(this.customShellListView_MouseUp);
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "执行时间";
            this.columnHeader1.Width = 200;
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "命令名称";
            this.columnHeader2.Width = 150;
            // 
            // columnHeader3
            // 
            this.columnHeader3.Text = "Shell脚本";
            this.columnHeader3.Width = 600;
            // 
            // contextMenuStrip1
            // 
            this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.deleteItemToolStripMenuItem,
            this.upToolStripMenuItem,
            this.downToolStripMenuItem});
            this.contextMenuStrip1.Name = "contextMenuStrip1";
            this.contextMenuStrip1.Size = new System.Drawing.Size(144, 70);
            // 
            // deleteItemToolStripMenuItem
            // 
            this.deleteItemToolStripMenuItem.Image = global::AppMonitor.Properties.Resources.remove_16px;
            this.deleteItemToolStripMenuItem.Name = "deleteItemToolStripMenuItem";
            this.deleteItemToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.deleteItemToolStripMenuItem.Text = "Delete Item";
            this.deleteItemToolStripMenuItem.Click += new System.EventHandler(this.deleteItemToolStripMenuItem_Click);
            // 
            // upToolStripMenuItem
            // 
            this.upToolStripMenuItem.Name = "upToolStripMenuItem";
            this.upToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.upToolStripMenuItem.Text = "Up";
            this.upToolStripMenuItem.Click += new System.EventHandler(this.upToolStripMenuItem_Click);
            // 
            // downToolStripMenuItem
            // 
            this.downToolStripMenuItem.Name = "downToolStripMenuItem";
            this.downToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.downToolStripMenuItem.Text = "Down";
            this.downToolStripMenuItem.Click += new System.EventHandler(this.downToolStripMenuItem_Click);
            // 
            // task_name
            // 
            this.task_name.BackColor = System.Drawing.Color.Transparent;
            this.task_name.DownBack = null;
            this.task_name.Icon = null;
            this.task_name.IconIsButton = false;
            this.task_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.task_name.IsPreplacedwordChat = '\0';
            this.task_name.IsSystemPreplacedwordChar = false;
            this.task_name.Lines = new string[0];
            this.task_name.Location = new System.Drawing.Point(93, 19);
            this.task_name.Margin = new System.Windows.Forms.Padding(0);
            this.task_name.MaxLength = 32767;
            this.task_name.MinimumSize = new System.Drawing.Size(28, 28);
            this.task_name.MouseBack = null;
            this.task_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.task_name.Multiline = false;
            this.task_name.Name = "task_name";
            this.task_name.NormlBack = null;
            this.task_name.Padding = new System.Windows.Forms.Padding(5);
            this.task_name.ReadOnly = false;
            this.task_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.task_name.Size = new System.Drawing.Size(433, 28);
            // 
            // 
            // 
            this.task_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.task_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.task_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.task_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.task_name.SkinTxt.Name = "BaseText";
            this.task_name.SkinTxt.Size = new System.Drawing.Size(423, 18);
            this.task_name.SkinTxt.TabIndex = 0;
            this.task_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.task_name.SkinTxt.WaterText = "任务名称";
            this.task_name.TabIndex = 12;
            this.task_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.task_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.task_name.WaterText = "任务名称";
            this.task_name.WordWrap = true;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.BackColor = System.Drawing.Color.Transparent;
            this.label2.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label2.Location = new System.Drawing.Point(12, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(74, 19);
            this.label2.TabIndex = 13;
            this.label2.Text = "任务名称:";
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.Color.Transparent;
            this.groupBox1.Controls.Add(this.scb_cycle);
            this.groupBox1.Controls.Add(this.week_panel);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.time);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.date);
            this.groupBox1.Location = new System.Drawing.Point(20, 110);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(427, 172);
            this.groupBox1.TabIndex = 14;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "执行时间";
            // 
            // week_panel
            // 
            this.week_panel.Controls.Add(this.week6);
            this.week_panel.Controls.Add(this.week5);
            this.week_panel.Controls.Add(this.week4);
            this.week_panel.Controls.Add(this.week3);
            this.week_panel.Controls.Add(this.week2);
            this.week_panel.Controls.Add(this.week1);
            this.week_panel.Controls.Add(this.week0);
            this.week_panel.Location = new System.Drawing.Point(76, 57);
            this.week_panel.Name = "week_panel";
            this.week_panel.Size = new System.Drawing.Size(332, 29);
            this.week_panel.TabIndex = 18;
            this.week_panel.Visible = false;
            // 
            // week6
            // 
            this.week6.AutoSize = true;
            this.week6.Location = new System.Drawing.Point(266, 4);
            this.week6.Name = "week6";
            this.week6.Size = new System.Drawing.Size(39, 21);
            this.week6.TabIndex = 6;
            this.week6.Text = "六";
            this.week6.UseVisualStyleBackColor = true;
            // 
            // week5
            // 
            this.week5.AutoSize = true;
            this.week5.Location = new System.Drawing.Point(223, 4);
            this.week5.Name = "week5";
            this.week5.Size = new System.Drawing.Size(39, 21);
            this.week5.TabIndex = 5;
            this.week5.Text = "五";
            this.week5.UseVisualStyleBackColor = true;
            // 
            // week4
            // 
            this.week4.AutoSize = true;
            this.week4.Location = new System.Drawing.Point(180, 4);
            this.week4.Name = "week4";
            this.week4.Size = new System.Drawing.Size(39, 21);
            this.week4.TabIndex = 4;
            this.week4.Text = "四";
            this.week4.UseVisualStyleBackColor = true;
            // 
            // week3
            // 
            this.week3.AutoSize = true;
            this.week3.Location = new System.Drawing.Point(137, 4);
            this.week3.Name = "week3";
            this.week3.Size = new System.Drawing.Size(39, 21);
            this.week3.TabIndex = 3;
            this.week3.Text = "三";
            this.week3.UseVisualStyleBackColor = true;
            // 
            // week2
            // 
            this.week2.AutoSize = true;
            this.week2.Location = new System.Drawing.Point(94, 4);
            this.week2.Name = "week2";
            this.week2.Size = new System.Drawing.Size(39, 21);
            this.week2.TabIndex = 2;
            this.week2.Text = "二";
            this.week2.UseVisualStyleBackColor = true;
            // 
            // week1
            // 
            this.week1.AutoSize = true;
            this.week1.Location = new System.Drawing.Point(51, 4);
            this.week1.Name = "week1";
            this.week1.Size = new System.Drawing.Size(39, 21);
            this.week1.TabIndex = 1;
            this.week1.Text = "一";
            this.week1.UseVisualStyleBackColor = true;
            // 
            // week0
            // 
            this.week0.AutoSize = true;
            this.week0.Location = new System.Drawing.Point(4, 4);
            this.week0.Name = "week0";
            this.week0.Size = new System.Drawing.Size(43, 21);
            this.week0.TabIndex = 0;
            this.week0.Text = "日 ";
            this.week0.UseVisualStyleBackColor = true;
            // 
            // time
            // 
            this.time.Format = System.Windows.Forms.DateTimePickerFormat.Time;
            this.time.Location = new System.Drawing.Point(78, 94);
            this.time.MinDate = new System.DateTime(2017, 11, 20, 0, 0, 0, 0);
            this.time.Name = "time";
            this.time.ShowUpDown = true;
            this.time.Size = new System.Drawing.Size(137, 23);
            this.time.TabIndex = 17;
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label3.Location = new System.Drawing.Point(24, 59);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(48, 19);
            this.label3.TabIndex = 15;
            this.label3.Text = "日期:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label4.Location = new System.Drawing.Point(24, 95);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(48, 19);
            this.label4.TabIndex = 14;
            this.label4.Text = "时间:";
            // 
            // date
            // 
            this.date.CalendarTrailingForeColor = System.Drawing.Color.Olive;
            this.date.Location = new System.Drawing.Point(78, 57);
            this.date.MinDate = new System.DateTime(2017, 11, 20, 0, 0, 0, 0);
            this.date.Name = "date";
            this.date.ShowUpDown = true;
            this.date.Size = new System.Drawing.Size(137, 23);
            this.date.TabIndex = 16;
            // 
            // groupBox2
            // 
            this.groupBox2.BackColor = System.Drawing.Color.Transparent;
            this.groupBox2.Controls.Add(this.task_name);
            this.groupBox2.Controls.Add(this.label2);
            this.groupBox2.Location = new System.Drawing.Point(20, 35);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(788, 61);
            this.groupBox2.TabIndex = 15;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "任务信息";
            // 
            // groupBox3
            // 
            this.groupBox3.BackColor = System.Drawing.Color.Transparent;
            this.groupBox3.Controls.Add(this.linkLabel2);
            this.groupBox3.Controls.Add(this.linkLabel1);
            this.groupBox3.Controls.Add(this.button1);
            this.groupBox3.Controls.Add(this.shell);
            this.groupBox3.Controls.Add(this.shell_name);
            this.groupBox3.Controls.Add(this.label5);
            this.groupBox3.Controls.Add(this.label6);
            this.groupBox3.Location = new System.Drawing.Point(453, 111);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(522, 172);
            this.groupBox3.TabIndex = 18;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "任务命令";
            // 
            // linkLabel2
            // 
            this.linkLabel2.AutoSize = true;
            this.linkLabel2.Location = new System.Drawing.Point(457, 68);
            this.linkLabel2.Name = "linkLabel2";
            this.linkLabel2.Size = new System.Drawing.Size(56, 17);
            this.linkLabel2.TabIndex = 20;
            this.linkLabel2.TabStop = true;
            this.linkLabel2.Text = "插入变量";
            this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
            // 
            // linkLabel1
            // 
            this.linkLabel1.AutoSize = true;
            this.linkLabel1.Location = new System.Drawing.Point(456, 26);
            this.linkLabel1.Name = "linkLabel1";
            this.linkLabel1.Size = new System.Drawing.Size(56, 17);
            this.linkLabel1.TabIndex = 16;
            this.linkLabel1.TabStop = true;
            this.linkLabel1.Text = "选择模版";
            this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(456, 128);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(60, 38);
            this.button1.TabIndex = 19;
            this.button1.Text = "新增↓";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // shell
            // 
            this.shell.BackColor = System.Drawing.Color.Transparent;
            this.shell.DownBack = null;
            this.shell.Icon = null;
            this.shell.IconIsButton = false;
            this.shell.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell.IsPreplacedwordChat = '\0';
            this.shell.IsSystemPreplacedwordChar = false;
            this.shell.Lines = new string[0];
            this.shell.Location = new System.Drawing.Point(78, 56);
            this.shell.Margin = new System.Windows.Forms.Padding(0);
            this.shell.MaxLength = 32767;
            this.shell.MinimumSize = new System.Drawing.Size(28, 28);
            this.shell.MouseBack = null;
            this.shell.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell.Multiline = true;
            this.shell.Name = "shell";
            this.shell.NormlBack = null;
            this.shell.Padding = new System.Windows.Forms.Padding(5);
            this.shell.ReadOnly = false;
            this.shell.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.shell.Size = new System.Drawing.Size(372, 111);
            // 
            // 
            // 
            this.shell.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.shell.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.shell.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.shell.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.shell.SkinTxt.Multiline = true;
            this.shell.SkinTxt.Name = "BaseText";
            this.shell.SkinTxt.Size = new System.Drawing.Size(362, 101);
            this.shell.SkinTxt.TabIndex = 0;
            this.shell.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell.SkinTxt.WaterText = "shell脚本";
            this.shell.TabIndex = 14;
            this.shell.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.shell.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell.WaterText = "shell脚本";
            this.shell.WordWrap = true;
            this.shell.Enter += new System.EventHandler(this.shell_Enter);
            // 
            // shell_name
            // 
            this.shell_name.BackColor = System.Drawing.Color.Transparent;
            this.shell_name.DownBack = null;
            this.shell_name.Icon = null;
            this.shell_name.IconIsButton = false;
            this.shell_name.IconMouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell_name.IsPreplacedwordChat = '\0';
            this.shell_name.IsSystemPreplacedwordChar = false;
            this.shell_name.Lines = new string[0];
            this.shell_name.Location = new System.Drawing.Point(78, 19);
            this.shell_name.Margin = new System.Windows.Forms.Padding(0);
            this.shell_name.MaxLength = 32767;
            this.shell_name.MinimumSize = new System.Drawing.Size(28, 28);
            this.shell_name.MouseBack = null;
            this.shell_name.MouseState = CCWin.SkinClreplaced.ControlState.Normal;
            this.shell_name.Multiline = false;
            this.shell_name.Name = "shell_name";
            this.shell_name.NormlBack = null;
            this.shell_name.Padding = new System.Windows.Forms.Padding(5);
            this.shell_name.ReadOnly = false;
            this.shell_name.ScrollBars = System.Windows.Forms.ScrollBars.None;
            this.shell_name.Size = new System.Drawing.Size(372, 28);
            // 
            // 
            // 
            this.shell_name.SkinTxt.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.shell_name.SkinTxt.Dock = System.Windows.Forms.DockStyle.Fill;
            this.shell_name.SkinTxt.Font = new System.Drawing.Font("微软雅黑", 9.75F);
            this.shell_name.SkinTxt.Location = new System.Drawing.Point(5, 5);
            this.shell_name.SkinTxt.Name = "BaseText";
            this.shell_name.SkinTxt.Size = new System.Drawing.Size(362, 18);
            this.shell_name.SkinTxt.TabIndex = 0;
            this.shell_name.SkinTxt.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell_name.SkinTxt.WaterText = "命令/脚本名称";
            this.shell_name.TabIndex = 13;
            this.shell_name.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            this.shell_name.WaterColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
            this.shell_name.WaterText = "命令/脚本名称";
            this.shell_name.WordWrap = true;
            this.shell_name.Enter += new System.EventHandler(this.shell_name_Enter);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label5.Location = new System.Drawing.Point(27, 23);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(48, 19);
            this.label5.TabIndex = 15;
            this.label5.Text = "名称:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.label6.Location = new System.Drawing.Point(27, 57);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(48, 19);
            this.label6.TabIndex = 14;
            this.label6.Text = "脚本:";
            // 
            // button2
            // 
            this.button2.Font = new System.Drawing.Font("微软雅黑", 12F);
            this.button2.Location = new System.Drawing.Point(814, 44);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(161, 52);
            this.button2.TabIndex = 18;
            this.button2.Text = "保存 Ctrl+S";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.BackColor = System.Drawing.SystemColors.ActiveCaption;
            this.label7.Location = new System.Drawing.Point(9, 101);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(980, 5);
            this.label7.TabIndex = 19;
            // 
            // scb_template
            // 
            this.scb_template.BorderColor = System.Drawing.Color.LightGray;
            this.scb_template.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader4,
            this.columnHeader5});
            this.scb_template.FullRowSelect = true;
            this.scb_template.GridLines = true;
            this.scb_template.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.scb_template.Location = new System.Drawing.Point(158, 5);
            this.scb_template.MultiSelect = false;
            this.scb_template.Name = "scb_template";
            this.scb_template.OwnerDraw = true;
            this.scb_template.RowBackColor2 = System.Drawing.Color.White;
            this.scb_template.SelectedColor = System.Drawing.Color.LightSteelBlue;
            this.scb_template.Size = new System.Drawing.Size(370, 182);
            this.scb_template.TabIndex = 21;
            this.scb_template.UseCompatibleStateImageBehavior = false;
            this.scb_template.View = System.Windows.Forms.View.Details;
            this.scb_template.Visible = false;
            this.scb_template.MouseClick += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseClick);
            this.scb_template.MouseUp += new System.Windows.Forms.MouseEventHandler(this.scb_template_MouseUp);
            // 
            // columnHeader4
            // 
            this.columnHeader4.Text = "命令名称";
            this.columnHeader4.Width = 120;
            // 
            // columnHeader5
            // 
            this.columnHeader5.Text = "Shell脚本";
            this.columnHeader5.Width = 245;
            // 
            // var_list
            // 
            this.var_list.BorderColor = System.Drawing.Color.LightGray;
            this.var_list.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader6,
            this.columnHeader7});
            this.var_list.FullRowSelect = true;
            this.var_list.GridLines = true;
            this.var_list.HeadColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.var_list.Location = new System.Drawing.Point(539, 5);
            this.var_list.MultiSelect = false;
            this.var_list.Name = "var_list";
            this.var_list.OwnerDraw = true;
            this.var_list.RowBackColor2 = System.Drawing.Color.White;
            this.var_list.SelectedColor = System.Drawing.Color.LightSteelBlue;
            this.var_list.Size = new System.Drawing.Size(370, 182);
            this.var_list.TabIndex = 22;
            this.var_list.UseCompatibleStateImageBehavior = false;
            this.var_list.View = System.Windows.Forms.View.Details;
            this.var_list.Visible = false;
            this.var_list.MouseClick += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseClick);
            this.var_list.MouseUp += new System.Windows.Forms.MouseEventHandler(this.var_list_MouseUp);
            // 
            // columnHeader6
            // 
            this.columnHeader6.Text = "变量";
            this.columnHeader6.Width = 180;
            // 
            // columnHeader7
            // 
            this.columnHeader7.Text = "描述";
            this.columnHeader7.Width = 185;
            // 
            // TimedTaskForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = global::AppMonitor.Properties.Resources.skin_12;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.CaptionFont = new System.Drawing.Font("微软雅黑", 9F);
            this.ClientSize = new System.Drawing.Size(997, 670);
            this.Controls.Add(this.var_list);
            this.Controls.Add(this.scb_template);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.customShellListView);
            this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(718, 528);
            this.Name = "TimedTaskForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "定时任务";
            this.replacedleCenter = false;
            this.replacedleColor = System.Drawing.Color.White;
            this.Load += new System.EventHandler(this.TimedTaskForm_Load);
            this.contextMenuStrip1.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.week_panel.ResumeLayout(false);
            this.week_panel.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : TomcatMonitorForm.Designer.cs
with Apache License 2.0
from 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 Source : AddServerForm.Designer.cs
with GNU General Public License v3.0
from 2dust

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddServerForm));
            this.btnClose = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.btnGUID = new System.Windows.Forms.Button();
            this.label13 = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label25 = new System.Windows.Forms.Label();
            this.label24 = new System.Windows.Forms.Label();
            this.label23 = new System.Windows.Forms.Label();
            this.panTlsMore = new System.Windows.Forms.Panel();
            this.txtSNI = new System.Windows.Forms.TextBox();
            this.label22 = new System.Windows.Forms.Label();
            this.label21 = new System.Windows.Forms.Label();
            this.cmbAllowInsecure = new System.Windows.Forms.ComboBox();
            this.label9 = new System.Windows.Forms.Label();
            this.label20 = new System.Windows.Forms.Label();
            this.txtPath = new System.Windows.Forms.TextBox();
            this.cmbNetwork = new System.Windows.Forms.ComboBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label19 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.label17 = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.cmbStreamSecurity = new System.Windows.Forms.ComboBox();
            this.label12 = new System.Windows.Forms.Label();
            this.txtRequestHost = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.cmbHeaderType = new System.Windows.Forms.ComboBox();
            this.label8 = new System.Windows.Forms.Label();
            this.cmbSecurity = new System.Windows.Forms.ComboBox();
            this.txtRemarks = new System.Windows.Forms.TextBox();
            this.label6 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.txtAlterId = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.txtId = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtPort = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.txtAddress = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.btnOK = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.menuServer = new System.Windows.Forms.MenuStrip();
            this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.MenuItemImportClient = new System.Windows.Forms.ToolStripMenuItem();
            this.MenuItemImportServer = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.MenuItemImportClipboard = new System.Windows.Forms.ToolStripMenuItem();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.panTlsMore.SuspendLayout();
            this.panel2.SuspendLayout();
            this.menuServer.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnClose
            // 
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(this.btnClose, "btnClose");
            this.btnClose.Name = "btnClose";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.btnGUID);
            this.groupBox1.Controls.Add(this.label13);
            this.groupBox1.Controls.Add(this.groupBox2);
            this.groupBox1.Controls.Add(this.label8);
            this.groupBox1.Controls.Add(this.cmbSecurity);
            this.groupBox1.Controls.Add(this.txtRemarks);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.txtAlterId);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.txtId);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.txtPort);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.txtAddress);
            this.groupBox1.Controls.Add(this.label1);
            resources.ApplyResources(this.groupBox1, "groupBox1");
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.TabStop = false;
            // 
            // btnGUID
            // 
            resources.ApplyResources(this.btnGUID, "btnGUID");
            this.btnGUID.Name = "btnGUID";
            this.btnGUID.UseVisualStyleBackColor = true;
            this.btnGUID.Click += new System.EventHandler(this.btnGUID_Click);
            // 
            // label13
            // 
            resources.ApplyResources(this.label13, "label13");
            this.label13.Name = "label13";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.label25);
            this.groupBox2.Controls.Add(this.label24);
            this.groupBox2.Controls.Add(this.label23);
            this.groupBox2.Controls.Add(this.panTlsMore);
            this.groupBox2.Controls.Add(this.label9);
            this.groupBox2.Controls.Add(this.label20);
            this.groupBox2.Controls.Add(this.txtPath);
            this.groupBox2.Controls.Add(this.cmbNetwork);
            this.groupBox2.Controls.Add(this.label7);
            this.groupBox2.Controls.Add(this.label19);
            this.groupBox2.Controls.Add(this.label18);
            this.groupBox2.Controls.Add(this.label17);
            this.groupBox2.Controls.Add(this.label16);
            this.groupBox2.Controls.Add(this.label14);
            this.groupBox2.Controls.Add(this.label15);
            this.groupBox2.Controls.Add(this.cmbStreamSecurity);
            this.groupBox2.Controls.Add(this.label12);
            this.groupBox2.Controls.Add(this.txtRequestHost);
            this.groupBox2.Controls.Add(this.label11);
            this.groupBox2.Controls.Add(this.label10);
            this.groupBox2.Controls.Add(this.cmbHeaderType);
            resources.ApplyResources(this.groupBox2, "groupBox2");
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.TabStop = false;
            // 
            // label25
            // 
            resources.ApplyResources(this.label25, "label25");
            this.label25.Name = "label25";
            // 
            // label24
            // 
            resources.ApplyResources(this.label24, "label24");
            this.label24.Name = "label24";
            // 
            // label23
            // 
            resources.ApplyResources(this.label23, "label23");
            this.label23.Name = "label23";
            // 
            // panTlsMore
            // 
            this.panTlsMore.Controls.Add(this.txtSNI);
            this.panTlsMore.Controls.Add(this.label22);
            this.panTlsMore.Controls.Add(this.label21);
            this.panTlsMore.Controls.Add(this.cmbAllowInsecure);
            resources.ApplyResources(this.panTlsMore, "panTlsMore");
            this.panTlsMore.Name = "panTlsMore";
            // 
            // txtSNI
            // 
            resources.ApplyResources(this.txtSNI, "txtSNI");
            this.txtSNI.Name = "txtSNI";
            // 
            // label22
            // 
            resources.ApplyResources(this.label22, "label22");
            this.label22.Name = "label22";
            // 
            // label21
            // 
            resources.ApplyResources(this.label21, "label21");
            this.label21.Name = "label21";
            // 
            // cmbAllowInsecure
            // 
            this.cmbAllowInsecure.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbAllowInsecure.FormattingEnabled = true;
            this.cmbAllowInsecure.Items.AddRange(new object[] {
            resources.GetString("cmbAllowInsecure.Items"),
            resources.GetString("cmbAllowInsecure.Items1"),
            resources.GetString("cmbAllowInsecure.Items2")});
            resources.ApplyResources(this.cmbAllowInsecure, "cmbAllowInsecure");
            this.cmbAllowInsecure.Name = "cmbAllowInsecure";
            // 
            // label9
            // 
            resources.ApplyResources(this.label9, "label9");
            this.label9.Name = "label9";
            // 
            // label20
            // 
            resources.ApplyResources(this.label20, "label20");
            this.label20.Name = "label20";
            // 
            // txtPath
            // 
            resources.ApplyResources(this.txtPath, "txtPath");
            this.txtPath.Name = "txtPath";
            // 
            // cmbNetwork
            // 
            this.cmbNetwork.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbNetwork.FormattingEnabled = true;
            this.cmbNetwork.Items.AddRange(new object[] {
            resources.GetString("cmbNetwork.Items"),
            resources.GetString("cmbNetwork.Items1"),
            resources.GetString("cmbNetwork.Items2"),
            resources.GetString("cmbNetwork.Items3"),
            resources.GetString("cmbNetwork.Items4"),
            resources.GetString("cmbNetwork.Items5")});
            resources.ApplyResources(this.cmbNetwork, "cmbNetwork");
            this.cmbNetwork.Name = "cmbNetwork";
            this.cmbNetwork.SelectedIndexChanged += new System.EventHandler(this.cmbNetwork_SelectedIndexChanged);
            // 
            // label7
            // 
            resources.ApplyResources(this.label7, "label7");
            this.label7.Name = "label7";
            // 
            // label19
            // 
            resources.ApplyResources(this.label19, "label19");
            this.label19.Name = "label19";
            // 
            // label18
            // 
            resources.ApplyResources(this.label18, "label18");
            this.label18.Name = "label18";
            // 
            // label17
            // 
            resources.ApplyResources(this.label17, "label17");
            this.label17.Name = "label17";
            // 
            // label16
            // 
            resources.ApplyResources(this.label16, "label16");
            this.label16.Name = "label16";
            // 
            // label14
            // 
            resources.ApplyResources(this.label14, "label14");
            this.label14.Name = "label14";
            // 
            // label15
            // 
            resources.ApplyResources(this.label15, "label15");
            this.label15.Name = "label15";
            // 
            // cmbStreamSecurity
            // 
            this.cmbStreamSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbStreamSecurity.FormattingEnabled = true;
            this.cmbStreamSecurity.Items.AddRange(new object[] {
            resources.GetString("cmbStreamSecurity.Items"),
            resources.GetString("cmbStreamSecurity.Items1")});
            resources.ApplyResources(this.cmbStreamSecurity, "cmbStreamSecurity");
            this.cmbStreamSecurity.Name = "cmbStreamSecurity";
            this.cmbStreamSecurity.SelectedIndexChanged += new System.EventHandler(this.cmbStreamSecurity_SelectedIndexChanged);
            // 
            // label12
            // 
            resources.ApplyResources(this.label12, "label12");
            this.label12.Name = "label12";
            // 
            // txtRequestHost
            // 
            resources.ApplyResources(this.txtRequestHost, "txtRequestHost");
            this.txtRequestHost.Name = "txtRequestHost";
            // 
            // label11
            // 
            resources.ApplyResources(this.label11, "label11");
            this.label11.Name = "label11";
            // 
            // label10
            // 
            resources.ApplyResources(this.label10, "label10");
            this.label10.Name = "label10";
            // 
            // cmbHeaderType
            // 
            this.cmbHeaderType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbHeaderType.FormattingEnabled = true;
            this.cmbHeaderType.Items.AddRange(new object[] {
            resources.GetString("cmbHeaderType.Items"),
            resources.GetString("cmbHeaderType.Items1"),
            resources.GetString("cmbHeaderType.Items2"),
            resources.GetString("cmbHeaderType.Items3"),
            resources.GetString("cmbHeaderType.Items4"),
            resources.GetString("cmbHeaderType.Items5"),
            resources.GetString("cmbHeaderType.Items6")});
            resources.ApplyResources(this.cmbHeaderType, "cmbHeaderType");
            this.cmbHeaderType.Name = "cmbHeaderType";
            // 
            // label8
            // 
            resources.ApplyResources(this.label8, "label8");
            this.label8.Name = "label8";
            // 
            // cmbSecurity
            // 
            this.cmbSecurity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbSecurity.FormattingEnabled = true;
            this.cmbSecurity.Items.AddRange(new object[] {
            resources.GetString("cmbSecurity.Items"),
            resources.GetString("cmbSecurity.Items1"),
            resources.GetString("cmbSecurity.Items2"),
            resources.GetString("cmbSecurity.Items3"),
            resources.GetString("cmbSecurity.Items4")});
            resources.ApplyResources(this.cmbSecurity, "cmbSecurity");
            this.cmbSecurity.Name = "cmbSecurity";
            // 
            // txtRemarks
            // 
            resources.ApplyResources(this.txtRemarks, "txtRemarks");
            this.txtRemarks.Name = "txtRemarks";
            // 
            // label6
            // 
            resources.ApplyResources(this.label6, "label6");
            this.label6.Name = "label6";
            // 
            // label5
            // 
            resources.ApplyResources(this.label5, "label5");
            this.label5.Name = "label5";
            // 
            // txtAlterId
            // 
            resources.ApplyResources(this.txtAlterId, "txtAlterId");
            this.txtAlterId.Name = "txtAlterId";
            // 
            // label4
            // 
            resources.ApplyResources(this.label4, "label4");
            this.label4.Name = "label4";
            // 
            // txtId
            // 
            resources.ApplyResources(this.txtId, "txtId");
            this.txtId.Name = "txtId";
            // 
            // label3
            // 
            resources.ApplyResources(this.label3, "label3");
            this.label3.Name = "label3";
            // 
            // txtPort
            // 
            resources.ApplyResources(this.txtPort, "txtPort");
            this.txtPort.Name = "txtPort";
            // 
            // label2
            // 
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";
            // 
            // txtAddress
            // 
            resources.ApplyResources(this.txtAddress, "txtAddress");
            this.txtAddress.Name = "txtAddress";
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.btnClose);
            this.panel2.Controls.Add(this.btnOK);
            resources.ApplyResources(this.panel2, "panel2");
            this.panel2.Name = "panel2";
            // 
            // btnOK
            // 
            resources.ApplyResources(this.btnOK, "btnOK");
            this.btnOK.Name = "btnOK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // panel1
            // 
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            // 
            // menuServer
            // 
            this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuItem1});
            resources.ApplyResources(this.menuServer, "menuServer");
            this.menuServer.Name = "menuServer";
            // 
            // MenuItem1
            // 
            this.MenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuItemImportClient,
            this.MenuItemImportServer,
            this.toolStripSeparator1,
            this.MenuItemImportClipboard});
            this.MenuItem1.Name = "MenuItem1";
            resources.ApplyResources(this.MenuItem1, "MenuItem1");
            // 
            // MenuItemImportClient
            // 
            this.MenuItemImportClient.Name = "MenuItemImportClient";
            resources.ApplyResources(this.MenuItemImportClient, "MenuItemImportClient");
            this.MenuItemImportClient.Click += new System.EventHandler(this.MenuItemImportClient_Click);
            // 
            // MenuItemImportServer
            // 
            this.MenuItemImportServer.Name = "MenuItemImportServer";
            resources.ApplyResources(this.MenuItemImportServer, "MenuItemImportServer");
            this.MenuItemImportServer.Click += new System.EventHandler(this.MenuItemImportServer_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
            // 
            // MenuItemImportClipboard
            // 
            this.MenuItemImportClipboard.Name = "MenuItemImportClipboard";
            resources.ApplyResources(this.MenuItemImportClipboard, "MenuItemImportClipboard");
            this.MenuItemImportClipboard.Click += new System.EventHandler(this.MenuItemImportClipboard_Click);
            // 
            // AddServerForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnClose;
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.menuServer);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "AddServerForm";
            this.Load += new System.EventHandler(this.AddServerForm_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.panTlsMore.ResumeLayout(false);
            this.panTlsMore.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.menuServer.ResumeLayout(false);
            this.menuServer.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : RoutingRuleSettingForm.Designer.cs
with GNU General Public License v3.0
from 2dust

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingRuleSettingForm));
            this.btnClose = new System.Windows.Forms.Button();
            this.panel2 = new System.Windows.Forms.Panel();
            this.btnOK = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.txtUrl = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.txtRemarks = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
            this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
            this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
            this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
            this.menuExportSelectedRules = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.menuMoveTop = new System.Windows.Forms.ToolStripMenuItem();
            this.menuMoveUp = new System.Windows.Forms.ToolStripMenuItem();
            this.menuMoveDown = new System.Windows.Forms.ToolStripMenuItem();
            this.menuMoveBottom = new System.Windows.Forms.ToolStripMenuItem();
            this.MenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl2 = new System.Windows.Forms.TabControl();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.menuServer = new System.Windows.Forms.MenuStrip();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.menuImportRulesFromFile = new System.Windows.Forms.ToolStripMenuItem();
            this.menuImportRulesFromClipboard = new System.Windows.Forms.ToolStripMenuItem();
            this.menuImportRulesFromUrl = new System.Windows.Forms.ToolStripMenuItem();
            this.panel2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.cmsLv.SuspendLayout();
            this.tabControl2.SuspendLayout();
            this.tabPage2.SuspendLayout();
            this.menuServer.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnClose
            // 
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(this.btnClose, "btnClose");
            this.btnClose.Name = "btnClose";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.btnClose);
            this.panel2.Controls.Add(this.btnOK);
            resources.ApplyResources(this.panel2, "panel2");
            this.panel2.Name = "panel2";
            // 
            // btnOK
            // 
            resources.ApplyResources(this.btnOK, "btnOK");
            this.btnOK.Name = "btnOK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.txtUrl);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Controls.Add(this.txtRemarks);
            this.panel1.Controls.Add(this.label2);
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // txtUrl
            // 
            resources.ApplyResources(this.txtUrl, "txtUrl");
            this.txtUrl.Name = "txtUrl";
            // 
            // label3
            // 
            resources.ApplyResources(this.label3, "label3");
            this.label3.Name = "label3";
            // 
            // txtRemarks
            // 
            resources.ApplyResources(this.txtRemarks, "txtRemarks");
            this.txtRemarks.Name = "txtRemarks";
            // 
            // label2
            // 
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";
            // 
            // lvRoutings
            // 
            this.lvRoutings.ContextMenuStrip = this.cmsLv;
            resources.ApplyResources(this.lvRoutings, "lvRoutings");
            this.lvRoutings.FullRowSelect = true;
            this.lvRoutings.GridLines = true;
            this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvRoutings.HideSelection = false;
            this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            ((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
            this.lvRoutings.MultiSelect = false;
            this.lvRoutings.Name = "lvRoutings";
            this.lvRoutings.UseCompatibleStateImageBehavior = false;
            this.lvRoutings.View = System.Windows.Forms.View.Details;
            this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
            this.lvRoutings.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvRoutings_KeyDown);
            // 
            // cmsLv
            // 
            this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
            this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuAdd,
            this.menuRemove,
            this.menuSelectAll,
            this.menuExportSelectedRules,
            this.toolStripSeparator3,
            this.menuMoveTop,
            this.menuMoveUp,
            this.menuMoveDown,
            this.menuMoveBottom});
            this.cmsLv.Name = "cmsLv";
            this.cmsLv.OwnerItem = this.MenuItem1;
            resources.ApplyResources(this.cmsLv, "cmsLv");
            // 
            // menuAdd
            // 
            this.menuAdd.Name = "menuAdd";
            resources.ApplyResources(this.menuAdd, "menuAdd");
            this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
            // 
            // menuRemove
            // 
            this.menuRemove.Name = "menuRemove";
            resources.ApplyResources(this.menuRemove, "menuRemove");
            this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
            // 
            // menuSelectAll
            // 
            this.menuSelectAll.Name = "menuSelectAll";
            resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
            this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
            // 
            // menuExportSelectedRules
            // 
            this.menuExportSelectedRules.Name = "menuExportSelectedRules";
            resources.ApplyResources(this.menuExportSelectedRules, "menuExportSelectedRules");
            this.menuExportSelectedRules.Click += new System.EventHandler(this.menuExportSelectedRules_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
            // 
            // menuMoveTop
            // 
            this.menuMoveTop.Name = "menuMoveTop";
            resources.ApplyResources(this.menuMoveTop, "menuMoveTop");
            this.menuMoveTop.Click += new System.EventHandler(this.menuMoveTop_Click);
            // 
            // menuMoveUp
            // 
            this.menuMoveUp.Name = "menuMoveUp";
            resources.ApplyResources(this.menuMoveUp, "menuMoveUp");
            this.menuMoveUp.Click += new System.EventHandler(this.menuMoveUp_Click);
            // 
            // menuMoveDown
            // 
            this.menuMoveDown.Name = "menuMoveDown";
            resources.ApplyResources(this.menuMoveDown, "menuMoveDown");
            this.menuMoveDown.Click += new System.EventHandler(this.menuMoveDown_Click);
            // 
            // menuMoveBottom
            // 
            this.menuMoveBottom.Name = "menuMoveBottom";
            resources.ApplyResources(this.menuMoveBottom, "menuMoveBottom");
            this.menuMoveBottom.Click += new System.EventHandler(this.menuMoveBottom_Click);
            // 
            // MenuItem1
            // 
            this.MenuItem1.DropDown = this.cmsLv;
            this.MenuItem1.Name = "MenuItem1";
            resources.ApplyResources(this.MenuItem1, "MenuItem1");
            // 
            // tabControl2
            // 
            this.tabControl2.Controls.Add(this.tabPage2);
            resources.ApplyResources(this.tabControl2, "tabControl2");
            this.tabControl2.Name = "tabControl2";
            this.tabControl2.SelectedIndex = 0;
            // 
            // tabPage2
            // 
            this.tabPage2.Controls.Add(this.lvRoutings);
            resources.ApplyResources(this.tabPage2, "tabPage2");
            this.tabPage2.Name = "tabPage2";
            this.tabPage2.UseVisualStyleBackColor = true;
            // 
            // menuServer
            // 
            this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuItem1,
            this.toolStripMenuItem1});
            resources.ApplyResources(this.menuServer, "menuServer");
            this.menuServer.Name = "menuServer";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuImportRulesFromFile,
            this.menuImportRulesFromClipboard,
            this.menuImportRulesFromUrl});
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1");
            // 
            // menuImportRulesFromFile
            // 
            this.menuImportRulesFromFile.Name = "menuImportRulesFromFile";
            resources.ApplyResources(this.menuImportRulesFromFile, "menuImportRulesFromFile");
            this.menuImportRulesFromFile.Click += new System.EventHandler(this.menuImportRulesFromFile_Click);
            // 
            // menuImportRulesFromClipboard
            // 
            this.menuImportRulesFromClipboard.Name = "menuImportRulesFromClipboard";
            resources.ApplyResources(this.menuImportRulesFromClipboard, "menuImportRulesFromClipboard");
            this.menuImportRulesFromClipboard.Click += new System.EventHandler(this.menuImportRulesFromClipboard_Click);
            // 
            // menuImportRulesFromUrl
            // 
            this.menuImportRulesFromUrl.Name = "menuImportRulesFromUrl";
            resources.ApplyResources(this.menuImportRulesFromUrl, "menuImportRulesFromUrl");
            this.menuImportRulesFromUrl.Click += new System.EventHandler(this.menuImportRulesFromUrl_Click);
            // 
            // RoutingRuleSettingForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnClose;
            this.Controls.Add(this.tabControl2);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.menuServer);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "RoutingRuleSettingForm";
            this.Load += new System.EventHandler(this.RoutingRuleSettingForm_Load);
            this.panel2.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.cmsLv.ResumeLayout(false);
            this.tabControl2.ResumeLayout(false);
            this.tabPage2.ResumeLayout(false);
            this.menuServer.ResumeLayout(false);
            this.menuServer.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : RoutingSettingForm.Designer.cs
with GNU General Public License v3.0
from 2dust

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoutingSettingForm));
            this.btnClose = new System.Windows.Forms.Button();
            this.panel2 = new System.Windows.Forms.Panel();
            this.labRoutingTips = new System.Windows.Forms.Label();
            this.btnOK = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
            this.cmbdomainMatcher = new System.Windows.Forms.ComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.chkenableRoutingAdvanced = new System.Windows.Forms.CheckBox();
            this.linkLabelRoutingDoc = new System.Windows.Forms.LinkLabel();
            this.cmbdomainStrategy = new System.Windows.Forms.ComboBox();
            this.cmsLv = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.menuAdd = new System.Windows.Forms.ToolStripMenuItem();
            this.menuRemove = new System.Windows.Forms.ToolStripMenuItem();
            this.menuSelectAll = new System.Windows.Forms.ToolStripMenuItem();
            this.menuSetDefaultRouting = new System.Windows.Forms.ToolStripMenuItem();
            this.MenuItemAdvanced = new System.Windows.Forms.ToolStripMenuItem();
            this.menuServer = new System.Windows.Forms.MenuStrip();
            this.MenuItemBasic = new System.Windows.Forms.ToolStripMenuItem();
            this.menuImportBasicRules = new System.Windows.Forms.ToolStripMenuItem();
            this.tabNormal = new System.Windows.Forms.TabControl();
            this.tabPageProxy = new System.Windows.Forms.TabPage();
            this.panel5 = new System.Windows.Forms.Panel();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.txtProxyIp = new System.Windows.Forms.TextBox();
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.txtProxyDomain = new System.Windows.Forms.TextBox();
            this.tabPageDirect = new System.Windows.Forms.TabPage();
            this.panel4 = new System.Windows.Forms.Panel();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.txtDirectIp = new System.Windows.Forms.TextBox();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.txtDirectDomain = new System.Windows.Forms.TextBox();
            this.tabPageBlock = new System.Windows.Forms.TabPage();
            this.panel3 = new System.Windows.Forms.Panel();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtBlockIp = new System.Windows.Forms.TextBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.txtBlockDomain = new System.Windows.Forms.TextBox();
            this.tabPageRuleList = new System.Windows.Forms.TabPage();
            this.lvRoutings = new v2rayN.Base.ListViewFlickerFree();
            this.panel2.SuspendLayout();
            this.panel1.SuspendLayout();
            this.cmsLv.SuspendLayout();
            this.menuServer.SuspendLayout();
            this.tabNormal.SuspendLayout();
            this.tabPageProxy.SuspendLayout();
            this.panel5.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.tabPageDirect.SuspendLayout();
            this.panel4.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.tabPageBlock.SuspendLayout();
            this.panel3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.tabPageRuleList.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnClose
            // 
            resources.ApplyResources(this.btnClose, "btnClose");
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnClose.Name = "btnClose";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // panel2
            // 
            resources.ApplyResources(this.panel2, "panel2");
            this.panel2.Controls.Add(this.labRoutingTips);
            this.panel2.Controls.Add(this.btnClose);
            this.panel2.Controls.Add(this.btnOK);
            this.panel2.Name = "panel2";
            // 
            // labRoutingTips
            // 
            resources.ApplyResources(this.labRoutingTips, "labRoutingTips");
            this.labRoutingTips.ForeColor = System.Drawing.Color.Brown;
            this.labRoutingTips.Name = "labRoutingTips";
            // 
            // btnOK
            // 
            resources.ApplyResources(this.btnOK, "btnOK");
            this.btnOK.Name = "btnOK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // panel1
            // 
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Controls.Add(this.cmbdomainMatcher);
            this.panel1.Controls.Add(this.label6);
            this.panel1.Controls.Add(this.chkenableRoutingAdvanced);
            this.panel1.Controls.Add(this.linkLabelRoutingDoc);
            this.panel1.Controls.Add(this.cmbdomainStrategy);
            this.panel1.Name = "panel1";
            // 
            // cmbdomainMatcher
            // 
            resources.ApplyResources(this.cmbdomainMatcher, "cmbdomainMatcher");
            this.cmbdomainMatcher.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbdomainMatcher.FormattingEnabled = true;
            this.cmbdomainMatcher.Items.AddRange(new object[] {
            resources.GetString("cmbdomainMatcher.Items"),
            resources.GetString("cmbdomainMatcher.Items1")});
            this.cmbdomainMatcher.Name = "cmbdomainMatcher";
            // 
            // label6
            // 
            resources.ApplyResources(this.label6, "label6");
            this.label6.Name = "label6";
            // 
            // chkenableRoutingAdvanced
            // 
            resources.ApplyResources(this.chkenableRoutingAdvanced, "chkenableRoutingAdvanced");
            this.chkenableRoutingAdvanced.Name = "chkenableRoutingAdvanced";
            this.chkenableRoutingAdvanced.UseVisualStyleBackColor = true;
            this.chkenableRoutingAdvanced.CheckedChanged += new System.EventHandler(this.chkenableRoutingAdvanced_CheckedChanged_1);
            // 
            // linkLabelRoutingDoc
            // 
            resources.ApplyResources(this.linkLabelRoutingDoc, "linkLabelRoutingDoc");
            this.linkLabelRoutingDoc.Name = "linkLabelRoutingDoc";
            this.linkLabelRoutingDoc.TabStop = true;
            this.linkLabelRoutingDoc.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelRoutingDoc_LinkClicked);
            // 
            // cmbdomainStrategy
            // 
            resources.ApplyResources(this.cmbdomainStrategy, "cmbdomainStrategy");
            this.cmbdomainStrategy.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbdomainStrategy.FormattingEnabled = true;
            this.cmbdomainStrategy.Items.AddRange(new object[] {
            resources.GetString("cmbdomainStrategy.Items"),
            resources.GetString("cmbdomainStrategy.Items1"),
            resources.GetString("cmbdomainStrategy.Items2")});
            this.cmbdomainStrategy.Name = "cmbdomainStrategy";
            // 
            // cmsLv
            // 
            resources.ApplyResources(this.cmsLv, "cmsLv");
            this.cmsLv.ImageScalingSize = new System.Drawing.Size(20, 20);
            this.cmsLv.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuAdd,
            this.menuRemove,
            this.menuSelectAll,
            this.menuSetDefaultRouting});
            this.cmsLv.Name = "cmsLv";
            this.cmsLv.OwnerItem = this.MenuItemAdvanced;
            // 
            // menuAdd
            // 
            resources.ApplyResources(this.menuAdd, "menuAdd");
            this.menuAdd.Name = "menuAdd";
            this.menuAdd.Click += new System.EventHandler(this.menuAdd_Click);
            // 
            // menuRemove
            // 
            resources.ApplyResources(this.menuRemove, "menuRemove");
            this.menuRemove.Name = "menuRemove";
            this.menuRemove.Click += new System.EventHandler(this.menuRemove_Click);
            // 
            // menuSelectAll
            // 
            resources.ApplyResources(this.menuSelectAll, "menuSelectAll");
            this.menuSelectAll.Name = "menuSelectAll";
            this.menuSelectAll.Click += new System.EventHandler(this.menuSelectAll_Click);
            // 
            // menuSetDefaultRouting
            // 
            resources.ApplyResources(this.menuSetDefaultRouting, "menuSetDefaultRouting");
            this.menuSetDefaultRouting.Name = "menuSetDefaultRouting";
            this.menuSetDefaultRouting.Click += new System.EventHandler(this.menuSetDefaultRouting_Click);
            // 
            // MenuItemAdvanced
            // 
            resources.ApplyResources(this.MenuItemAdvanced, "MenuItemAdvanced");
            this.MenuItemAdvanced.DropDown = this.cmsLv;
            this.MenuItemAdvanced.Name = "MenuItemAdvanced";
            // 
            // menuServer
            // 
            resources.ApplyResources(this.menuServer, "menuServer");
            this.menuServer.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.MenuItemBasic,
            this.MenuItemAdvanced});
            this.menuServer.Name = "menuServer";
            // 
            // MenuItemBasic
            // 
            resources.ApplyResources(this.MenuItemBasic, "MenuItemBasic");
            this.MenuItemBasic.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.menuImportBasicRules});
            this.MenuItemBasic.Name = "MenuItemBasic";
            // 
            // menuImportBasicRules
            // 
            resources.ApplyResources(this.menuImportBasicRules, "menuImportBasicRules");
            this.menuImportBasicRules.Name = "menuImportBasicRules";
            this.menuImportBasicRules.Click += new System.EventHandler(this.menuImportBasicRules_Click);
            // 
            // tabNormal
            // 
            resources.ApplyResources(this.tabNormal, "tabNormal");
            this.tabNormal.Controls.Add(this.tabPageProxy);
            this.tabNormal.Controls.Add(this.tabPageDirect);
            this.tabNormal.Controls.Add(this.tabPageBlock);
            this.tabNormal.Controls.Add(this.tabPageRuleList);
            this.tabNormal.Name = "tabNormal";
            this.tabNormal.SelectedIndex = 0;
            this.tabNormal.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabNormal_Selecting);
            // 
            // tabPageProxy
            // 
            resources.ApplyResources(this.tabPageProxy, "tabPageProxy");
            this.tabPageProxy.Controls.Add(this.panel5);
            this.tabPageProxy.Name = "tabPageProxy";
            this.tabPageProxy.UseVisualStyleBackColor = true;
            // 
            // panel5
            // 
            resources.ApplyResources(this.panel5, "panel5");
            this.panel5.Controls.Add(this.groupBox5);
            this.panel5.Controls.Add(this.groupBox6);
            this.panel5.Name = "panel5";
            // 
            // groupBox5
            // 
            resources.ApplyResources(this.groupBox5, "groupBox5");
            this.groupBox5.Controls.Add(this.txtProxyIp);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.TabStop = false;
            // 
            // txtProxyIp
            // 
            resources.ApplyResources(this.txtProxyIp, "txtProxyIp");
            this.txtProxyIp.Name = "txtProxyIp";
            // 
            // groupBox6
            // 
            resources.ApplyResources(this.groupBox6, "groupBox6");
            this.groupBox6.Controls.Add(this.txtProxyDomain);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.TabStop = false;
            // 
            // txtProxyDomain
            // 
            resources.ApplyResources(this.txtProxyDomain, "txtProxyDomain");
            this.txtProxyDomain.Name = "txtProxyDomain";
            // 
            // tabPageDirect
            // 
            resources.ApplyResources(this.tabPageDirect, "tabPageDirect");
            this.tabPageDirect.Controls.Add(this.panel4);
            this.tabPageDirect.Name = "tabPageDirect";
            this.tabPageDirect.UseVisualStyleBackColor = true;
            // 
            // panel4
            // 
            resources.ApplyResources(this.panel4, "panel4");
            this.panel4.Controls.Add(this.groupBox3);
            this.panel4.Controls.Add(this.groupBox4);
            this.panel4.Name = "panel4";
            // 
            // groupBox3
            // 
            resources.ApplyResources(this.groupBox3, "groupBox3");
            this.groupBox3.Controls.Add(this.txtDirectIp);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.TabStop = false;
            // 
            // txtDirectIp
            // 
            resources.ApplyResources(this.txtDirectIp, "txtDirectIp");
            this.txtDirectIp.Name = "txtDirectIp";
            // 
            // groupBox4
            // 
            resources.ApplyResources(this.groupBox4, "groupBox4");
            this.groupBox4.Controls.Add(this.txtDirectDomain);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.TabStop = false;
            // 
            // txtDirectDomain
            // 
            resources.ApplyResources(this.txtDirectDomain, "txtDirectDomain");
            this.txtDirectDomain.Name = "txtDirectDomain";
            // 
            // tabPageBlock
            // 
            resources.ApplyResources(this.tabPageBlock, "tabPageBlock");
            this.tabPageBlock.Controls.Add(this.panel3);
            this.tabPageBlock.Name = "tabPageBlock";
            this.tabPageBlock.UseVisualStyleBackColor = true;
            // 
            // panel3
            // 
            resources.ApplyResources(this.panel3, "panel3");
            this.panel3.Controls.Add(this.groupBox2);
            this.panel3.Controls.Add(this.groupBox1);
            this.panel3.Name = "panel3";
            // 
            // groupBox2
            // 
            resources.ApplyResources(this.groupBox2, "groupBox2");
            this.groupBox2.Controls.Add(this.txtBlockIp);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.TabStop = false;
            // 
            // txtBlockIp
            // 
            resources.ApplyResources(this.txtBlockIp, "txtBlockIp");
            this.txtBlockIp.Name = "txtBlockIp";
            // 
            // groupBox1
            // 
            resources.ApplyResources(this.groupBox1, "groupBox1");
            this.groupBox1.Controls.Add(this.txtBlockDomain);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.TabStop = false;
            // 
            // txtBlockDomain
            // 
            resources.ApplyResources(this.txtBlockDomain, "txtBlockDomain");
            this.txtBlockDomain.Name = "txtBlockDomain";
            // 
            // tabPageRuleList
            // 
            resources.ApplyResources(this.tabPageRuleList, "tabPageRuleList");
            this.tabPageRuleList.Controls.Add(this.lvRoutings);
            this.tabPageRuleList.Name = "tabPageRuleList";
            this.tabPageRuleList.UseVisualStyleBackColor = true;
            // 
            // lvRoutings
            // 
            resources.ApplyResources(this.lvRoutings, "lvRoutings");
            this.lvRoutings.ContextMenuStrip = this.cmsLv;
            this.lvRoutings.FullRowSelect = true;
            this.lvRoutings.GridLines = true;
            this.lvRoutings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lvRoutings.HideSelection = false;
            this.lvRoutings.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            ((System.Windows.Forms.ListViewItem)(resources.GetObject("lvRoutings.Items")))});
            this.lvRoutings.MultiSelect = false;
            this.lvRoutings.Name = "lvRoutings";
            this.lvRoutings.UseCompatibleStateImageBehavior = false;
            this.lvRoutings.View = System.Windows.Forms.View.Details;
            this.lvRoutings.DoubleClick += new System.EventHandler(this.lvRoutings_DoubleClick);
            // 
            // RoutingSettingForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnClose;
            this.Controls.Add(this.tabNormal);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.menuServer);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "RoutingSettingForm";
            this.Load += new System.EventHandler(this.RoutingSettingForm_Load);
            this.panel2.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.cmsLv.ResumeLayout(false);
            this.menuServer.ResumeLayout(false);
            this.menuServer.PerformLayout();
            this.tabNormal.ResumeLayout(false);
            this.tabPageProxy.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.tabPageDirect.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.tabPageBlock.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabPageRuleList.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : frmMain.Designer.cs
with MIT License
from 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 Source : FrmBrowser.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBrowser));
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.btnBack = new System.Windows.Forms.ToolStripButton();
            this.btnRefresh = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.cmboSource = new System.Windows.Forms.ToolStripComboBox();
            this.btnAdd = new System.Windows.Forms.ToolStripButton();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.toolStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.btnBack,
            this.btnRefresh,
            this.toolStripSeparator1,
            this.cmboSource,
            this.btnAdd,
            this.toolStripLabel1});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(1627, 33);
            this.toolStrip1.TabIndex = 0;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // btnBack
            // 
            this.btnBack.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnBack.Image = ((System.Drawing.Image)(resources.GetObject("btnBack.Image")));
            this.btnBack.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnBack.Name = "btnBack";
            this.btnBack.Size = new System.Drawing.Size(26, 30);
            this.btnBack.Text = "〈";
            this.btnBack.ToolTipText = "Back";
            this.btnBack.Click += new System.EventHandler(this.BtnBack_Click);
            // 
            // btnRefresh
            // 
            this.btnRefresh.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnRefresh.Image = ((System.Drawing.Image)(resources.GetObject("btnRefresh.Image")));
            this.btnRefresh.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(31, 30);
            this.btnRefresh.Text = "↻";
            this.btnRefresh.ToolTipText = "Refresh";
            this.btnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
            // 
            // cmboSource
            // 
            this.cmboSource.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboSource.Items.AddRange(new object[] {
            "MangaDex",
            "KissManga",
            "nHentai"});
            this.cmboSource.Name = "cmboSource";
            this.cmboSource.Size = new System.Drawing.Size(242, 33);
            this.cmboSource.SelectedIndexChanged += new System.EventHandler(this.CmboSource_SelectedIndexChanged);
            // 
            // btnAdd
            // 
            this.btnAdd.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.btnAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnAdd.Enabled = false;
            this.btnAdd.Font = new System.Drawing.Font("Segoe UI Black", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
            this.btnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnAdd.Name = "btnAdd";
            this.btnAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
            this.btnAdd.Size = new System.Drawing.Size(54, 30);
            this.btnAdd.Text = "Add";
            this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click);
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.ForeColor = System.Drawing.Color.Red;
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(737, 30);
            this.toolStripLabel1.Text = "NOTICE: Due to issues with GeckoFX, the WebBrowser control (IE) is being used tem" +
    "porarily.";
            // 
            // panel1
            // 
            this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 33);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1627, 908);
            this.panel1.TabIndex = 1;
            // 
            // FrmBrowser
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1627, 941);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.toolStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MinimumSize = new System.Drawing.Size(915, 635);
            this.Name = "FrmBrowser";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader Browser";
            this.Load += new System.EventHandler(this.FrmBrowser_Load);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmDoublePageReader.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDoublePageReader));
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.cmboChapter = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.cmboPage = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.progressBar = new System.Windows.Forms.ToolStripProgressBar();
            this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
            this.btnIncrementOne = new System.Windows.Forms.ToolStripButton();
            this.btnDecrementOne = new System.Windows.Forms.ToolStripButton();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.pbLeft = new System.Windows.Forms.PictureBox();
            this.pbRight = new System.Windows.Forms.PictureBox();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbLeft)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbRight)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.cmboChapter,
            this.toolStripLabel2,
            this.cmboPage,
            this.toolStripSeparator1,
            this.progressBar,
            this.toolStripLabel3,
            this.btnIncrementOne,
            this.btnDecrementOne});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(1608, 33);
            this.toolStrip1.TabIndex = 1;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(74, 30);
            this.toolStripLabel1.Text = "Chapter";
            // 
            // cmboChapter
            // 
            this.cmboChapter.Name = "cmboChapter";
            this.cmboChapter.Size = new System.Drawing.Size(200, 33);
            this.cmboChapter.SelectedIndexChanged += new System.EventHandler(this.CmboChapter_SelectedIndexChanged);
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(50, 30);
            this.toolStripLabel2.Text = "Page";
            // 
            // cmboPage
            // 
            this.cmboPage.Name = "cmboPage";
            this.cmboPage.Size = new System.Drawing.Size(200, 33);
            this.cmboPage.SelectedIndexChanged += new System.EventHandler(this.CmboPage_SelectedIndexChanged);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
            // 
            // progressBar
            // 
            this.progressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.progressBar.Name = "progressBar";
            this.progressBar.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.progressBar.Size = new System.Drawing.Size(100, 30);
            this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            // 
            // toolStripLabel3
            // 
            this.toolStripLabel3.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolStripLabel3.Name = "toolStripLabel3";
            this.toolStripLabel3.Size = new System.Drawing.Size(81, 30);
            this.toolStripLabel3.Text = "Progress";
            // 
            // btnIncrementOne
            // 
            this.btnIncrementOne.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnIncrementOne.Image = ((System.Drawing.Image)(resources.GetObject("btnIncrementOne.Image")));
            this.btnIncrementOne.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnIncrementOne.Name = "btnIncrementOne";
            this.btnIncrementOne.Size = new System.Drawing.Size(38, 30);
            this.btnIncrementOne.Text = "+1";
            this.btnIncrementOne.ToolTipText = "Go up 1 page to offset the pages by 1";
            this.btnIncrementOne.Click += new System.EventHandler(this.BtnIncrementOne_Click);
            // 
            // btnDecrementOne
            // 
            this.btnDecrementOne.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.btnDecrementOne.Image = ((System.Drawing.Image)(resources.GetObject("btnDecrementOne.Image")));
            this.btnDecrementOne.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.btnDecrementOne.Name = "btnDecrementOne";
            this.btnDecrementOne.Size = new System.Drawing.Size(33, 30);
            this.btnDecrementOne.Text = "-1";
            this.btnDecrementOne.ToolTipText = "Go down 1 page to offset the pages by 1";
            this.btnDecrementOne.Click += new System.EventHandler(this.BtnDecrementOne_Click);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 33);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.pbLeft);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.pbRight);
            this.splitContainer1.Size = new System.Drawing.Size(1608, 957);
            this.splitContainer1.SplitterDistance = 804;
            this.splitContainer1.SplitterWidth = 1;
            this.splitContainer1.TabIndex = 2;
            // 
            // pbLeft
            // 
            this.pbLeft.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pbLeft.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pbLeft.Location = new System.Drawing.Point(0, 0);
            this.pbLeft.Name = "pbLeft";
            this.pbLeft.Size = new System.Drawing.Size(804, 957);
            this.pbLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pbLeft.TabIndex = 0;
            this.pbLeft.TabStop = false;
            this.pbLeft.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Pb_MouseDown);
            // 
            // pbRight
            // 
            this.pbRight.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pbRight.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pbRight.Location = new System.Drawing.Point(0, 0);
            this.pbRight.Name = "pbRight";
            this.pbRight.Size = new System.Drawing.Size(803, 957);
            this.pbRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pbRight.TabIndex = 0;
            this.pbRight.TabStop = false;
            this.pbRight.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Pb_MouseDown);
            // 
            // FrmDoublePageReader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1608, 990);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.toolStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FrmDoublePageReader";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmDoublePageReader_FormClosing);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmDoublePageReader_KeyDown);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pbLeft)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbRight)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmDoublePageReader.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDoublePageReader));
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.cmboChapter = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.cmboPage = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.progress = new System.Windows.Forms.ToolStripProgressBar();
            this.toolStripContainer2 = new System.Windows.Forms.ToolStripContainer();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.toolStripContainer1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.toolStripContainer2.ContentPanel.SuspendLayout();
            this.toolStripContainer2.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(1278, 919);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(1278, 944);
            this.toolStripContainer1.TabIndex = 1;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStrip1
            // 
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.cmboChapter,
            this.toolStripLabel2,
            this.cmboPage,
            this.toolStripSeparator1,
            this.progress});
            this.toolStrip1.Location = new System.Drawing.Point(3, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(481, 33);
            this.toolStrip1.TabIndex = 0;
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(74, 30);
            this.toolStripLabel1.Text = "Chapter";
            // 
            // cmboChapter
            // 
            this.cmboChapter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboChapter.Name = "cmboChapter";
            this.cmboChapter.Size = new System.Drawing.Size(121, 33);
            this.cmboChapter.SelectedIndexChanged += new System.EventHandler(this.CmboChapter_SelectedIndexChanged);
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(50, 30);
            this.toolStripLabel2.Text = "Page";
            // 
            // cmboPage
            // 
            this.cmboPage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboPage.Name = "cmboPage";
            this.cmboPage.Size = new System.Drawing.Size(121, 33);
            this.cmboPage.SelectedIndexChanged += new System.EventHandler(this.CmboPage_SelectedIndexChanged);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
            // 
            // progress
            // 
            this.progress.MarqueeAnimationSpeed = 0;
            this.progress.Name = "progress";
            this.progress.Size = new System.Drawing.Size(100, 30);
            this.progress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.progress.Value = 50;
            // 
            // toolStripContainer2
            // 
            // 
            // toolStripContainer2.ContentPanel
            // 
            this.toolStripContainer2.ContentPanel.BackColor = System.Drawing.SystemColors.ControlDark;
            this.toolStripContainer2.ContentPanel.Controls.Add(this.splitContainer1);
            this.toolStripContainer2.ContentPanel.Size = new System.Drawing.Size(1278, 911);
            this.toolStripContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer2.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer2.Name = "toolStripContainer2";
            this.toolStripContainer2.Size = new System.Drawing.Size(1278, 944);
            this.toolStripContainer2.TabIndex = 2;
            this.toolStripContainer2.Text = "toolStripContainer2";
            // 
            // toolStripContainer2.TopToolStripPanel
            // 
            this.toolStripContainer2.TopToolStripPanel.Controls.Add(this.toolStrip1);
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.IsSplitterFixed = true;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.pictureBox2);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.pictureBox1);
            this.splitContainer1.Size = new System.Drawing.Size(1278, 911);
            this.splitContainer1.SplitterDistance = 425;
            this.splitContainer1.SplitterWidth = 1;
            this.splitContainer1.TabIndex = 2;
            // 
            // pictureBox2
            // 
            this.pictureBox2.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox2.Location = new System.Drawing.Point(0, 0);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(425, 911);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox2.TabIndex = 0;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PictureBox2_MouseDown);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(852, 911);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 1;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PictureBox1_MouseDown);
            // 
            // FrmDoublePageReader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1278, 944);
            this.Controls.Add(this.toolStripContainer2);
            this.Controls.Add(this.toolStripContainer1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.Name = "FrmDoublePageReader";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmReader_FormClosing);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmReader_KeyDown);
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.toolStripContainer2.ContentPanel.ResumeLayout(false);
            this.toolStripContainer2.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer2.TopToolStripPanel.PerformLayout();
            this.toolStripContainer2.ResumeLayout(false);
            this.toolStripContainer2.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : FrmHentaiBrowser.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmHentaiBrowser));
            this.mnuNav = new System.Windows.Forms.MenuStrip();
            this.goBackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.addThisreplacedleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.browserPanel = new System.Windows.Forms.Panel();
            this.mnuNav.SuspendLayout();
            this.SuspendLayout();
            // 
            // mnuNav
            // 
            this.mnuNav.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.mnuNav.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.goBackToolStripMenuItem,
            this.addThisreplacedleToolStripMenuItem});
            this.mnuNav.Location = new System.Drawing.Point(0, 0);
            this.mnuNav.Name = "mnuNav";
            this.mnuNav.Size = new System.Drawing.Size(1730, 33);
            this.mnuNav.TabIndex = 3;
            this.mnuNav.Text = "menuStrip1";
            // 
            // goBackToolStripMenuItem
            // 
            this.goBackToolStripMenuItem.Name = "goBackToolStripMenuItem";
            this.goBackToolStripMenuItem.Size = new System.Drawing.Size(105, 29);
            this.goBackToolStripMenuItem.Text = "< Go Back";
            this.goBackToolStripMenuItem.Click += new System.EventHandler(this.GoBackToolStripMenuItem_Click);
            // 
            // addThisreplacedleToolStripMenuItem
            // 
            this.addThisreplacedleToolStripMenuItem.Enabled = false;
            this.addThisreplacedleToolStripMenuItem.Name = "addThisreplacedleToolStripMenuItem";
            this.addThisreplacedleToolStripMenuItem.Size = new System.Drawing.Size(131, 29);
            this.addThisreplacedleToolStripMenuItem.Text = "Add This replacedle";
            this.addThisreplacedleToolStripMenuItem.Click += new System.EventHandler(this.AddThisreplacedleToolStripMenuItem_Click);
            // 
            // browserPanel
            // 
            this.browserPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.browserPanel.Location = new System.Drawing.Point(0, 33);
            this.browserPanel.Name = "browserPanel";
            this.browserPanel.Size = new System.Drawing.Size(1730, 840);
            this.browserPanel.TabIndex = 4;
            // 
            // FrmHentaiBrowser
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1730, 873);
            this.Controls.Add(this.browserPanel);
            this.Controls.Add(this.mnuNav);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FrmHentaiBrowser";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader | Browse for Hentai";
            this.mnuNav.ResumeLayout(false);
            this.mnuNav.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmSinglePageReader.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSinglePageReader));
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.cmboChapter = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.cmboPage = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.progressBar = new System.Windows.Forms.ToolStripProgressBar();
            this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
            this.pbPageDisplay = new System.Windows.Forms.PictureBox();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbPageDisplay)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStrip1
            // 
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.cmboChapter,
            this.toolStripLabel2,
            this.cmboPage,
            this.toolStripSeparator1,
            this.progressBar,
            this.toolStripLabel3});
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(841, 33);
            this.toolStrip1.TabIndex = 0;
            this.toolStrip1.Text = "toolStrip1";
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(74, 30);
            this.toolStripLabel1.Text = "Chapter";
            // 
            // cmboChapter
            // 
            this.cmboChapter.Name = "cmboChapter";
            this.cmboChapter.Size = new System.Drawing.Size(200, 33);
            this.cmboChapter.SelectedIndexChanged += new System.EventHandler(this.CmboChapter_SelectedIndexChanged);
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(50, 30);
            this.toolStripLabel2.Text = "Page";
            // 
            // cmboPage
            // 
            this.cmboPage.Name = "cmboPage";
            this.cmboPage.Size = new System.Drawing.Size(200, 33);
            this.cmboPage.SelectedIndexChanged += new System.EventHandler(this.CmboPage_SelectedIndexChanged);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
            // 
            // progressBar
            // 
            this.progressBar.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.progressBar.Name = "progressBar";
            this.progressBar.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.progressBar.Size = new System.Drawing.Size(100, 30);
            this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            // 
            // toolStripLabel3
            // 
            this.toolStripLabel3.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolStripLabel3.Name = "toolStripLabel3";
            this.toolStripLabel3.Size = new System.Drawing.Size(81, 30);
            this.toolStripLabel3.Text = "Progress";
            // 
            // pbPageDisplay
            // 
            this.pbPageDisplay.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pbPageDisplay.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pbPageDisplay.Location = new System.Drawing.Point(0, 33);
            this.pbPageDisplay.Name = "pbPageDisplay";
            this.pbPageDisplay.Size = new System.Drawing.Size(841, 957);
            this.pbPageDisplay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pbPageDisplay.TabIndex = 1;
            this.pbPageDisplay.TabStop = false;
            this.pbPageDisplay.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PbPageDisplay_MouseDown);
            // 
            // FrmSinglePageReader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(841, 990);
            this.Controls.Add(this.pbPageDisplay);
            this.Controls.Add(this.toolStrip1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.Name = "FrmSinglePageReader";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmSinglePageReader_FormClosing);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmSinglePageReader_KeyDown);
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pbPageDisplay)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmMangaBrowser.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMangaBrowser));
            this.mnuNav = new System.Windows.Forms.MenuStrip();
            this.goBackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.addThisreplacedleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.browserPanel = new System.Windows.Forms.Panel();
            this.mnuNav.SuspendLayout();
            this.SuspendLayout();
            // 
            // mnuNav
            // 
            this.mnuNav.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.mnuNav.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.goBackToolStripMenuItem,
            this.addThisreplacedleToolStripMenuItem});
            this.mnuNav.Location = new System.Drawing.Point(0, 0);
            this.mnuNav.Name = "mnuNav";
            this.mnuNav.Size = new System.Drawing.Size(1730, 33);
            this.mnuNav.TabIndex = 1;
            this.mnuNav.Text = "menuStrip1";
            // 
            // goBackToolStripMenuItem
            // 
            this.goBackToolStripMenuItem.Name = "goBackToolStripMenuItem";
            this.goBackToolStripMenuItem.Size = new System.Drawing.Size(105, 29);
            this.goBackToolStripMenuItem.Text = "< Go Back";
            this.goBackToolStripMenuItem.Click += new System.EventHandler(this.GoBackToolStripMenuItem_Click);
            // 
            // addThisreplacedleToolStripMenuItem
            // 
            this.addThisreplacedleToolStripMenuItem.Enabled = false;
            this.addThisreplacedleToolStripMenuItem.Name = "addThisreplacedleToolStripMenuItem";
            this.addThisreplacedleToolStripMenuItem.Size = new System.Drawing.Size(131, 29);
            this.addThisreplacedleToolStripMenuItem.Text = "Add This replacedle";
            this.addThisreplacedleToolStripMenuItem.Click += new System.EventHandler(this.AddThisreplacedleToolStripMenuItem_Click);
            // 
            // browserPanel
            // 
            this.browserPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.browserPanel.Location = new System.Drawing.Point(0, 33);
            this.browserPanel.Name = "browserPanel";
            this.browserPanel.Size = new System.Drawing.Size(1730, 840);
            this.browserPanel.TabIndex = 2;
            // 
            // FrmMangaBrowser
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1730, 873);
            this.Controls.Add(this.browserPanel);
            this.Controls.Add(this.mnuNav);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.mnuNav;
            this.Name = "FrmMangaBrowser";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader | Browse for Manga";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmMangaBrowser_FormClosing);
            this.mnuNav.ResumeLayout(false);
            this.mnuNav.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmReader.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmReader));
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.toolStrip1 = new System.Windows.Forms.ToolStrip();
            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.cmboChapter = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.cmboPage = new System.Windows.Forms.ToolStripComboBox();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.progress = new System.Windows.Forms.ToolStripProgressBar();
            this.toolStripContainer2 = new System.Windows.Forms.ToolStripContainer();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.toolStripContainer1.SuspendLayout();
            this.toolStrip1.SuspendLayout();
            this.toolStripContainer2.ContentPanel.SuspendLayout();
            this.toolStripContainer2.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(700, 919);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(700, 944);
            this.toolStripContainer1.TabIndex = 1;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStrip1
            // 
            this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabel1,
            this.cmboChapter,
            this.toolStripLabel2,
            this.cmboPage,
            this.toolStripSeparator1,
            this.progress});
            this.toolStrip1.Location = new System.Drawing.Point(3, 0);
            this.toolStrip1.Name = "toolStrip1";
            this.toolStrip1.Size = new System.Drawing.Size(527, 33);
            this.toolStrip1.TabIndex = 0;
            // 
            // toolStripLabel1
            // 
            this.toolStripLabel1.Name = "toolStripLabel1";
            this.toolStripLabel1.Size = new System.Drawing.Size(74, 30);
            this.toolStripLabel1.Text = "Chapter";
            // 
            // cmboChapter
            // 
            this.cmboChapter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboChapter.Name = "cmboChapter";
            this.cmboChapter.Size = new System.Drawing.Size(121, 33);
            this.cmboChapter.SelectedIndexChanged += new System.EventHandler(this.CmboChapter_SelectedIndexChanged);
            // 
            // toolStripLabel2
            // 
            this.toolStripLabel2.Name = "toolStripLabel2";
            this.toolStripLabel2.Size = new System.Drawing.Size(50, 30);
            this.toolStripLabel2.Text = "Page";
            // 
            // cmboPage
            // 
            this.cmboPage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboPage.Name = "cmboPage";
            this.cmboPage.Size = new System.Drawing.Size(121, 33);
            this.cmboPage.SelectedIndexChanged += new System.EventHandler(this.CmboPage_SelectedIndexChanged);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 33);
            // 
            // progress
            // 
            this.progress.MarqueeAnimationSpeed = 0;
            this.progress.Name = "progress";
            this.progress.Size = new System.Drawing.Size(100, 30);
            this.progress.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.progress.Value = 50;
            // 
            // toolStripContainer2
            // 
            // 
            // toolStripContainer2.ContentPanel
            // 
            this.toolStripContainer2.ContentPanel.Controls.Add(this.pictureBox1);
            this.toolStripContainer2.ContentPanel.Size = new System.Drawing.Size(700, 911);
            this.toolStripContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer2.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer2.Name = "toolStripContainer2";
            this.toolStripContainer2.Size = new System.Drawing.Size(700, 944);
            this.toolStripContainer2.TabIndex = 2;
            this.toolStripContainer2.Text = "toolStripContainer2";
            // 
            // toolStripContainer2.TopToolStripPanel
            // 
            this.toolStripContainer2.TopToolStripPanel.Controls.Add(this.toolStrip1);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.SystemColors.ControlDark;
            this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(700, 911);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PictureBox1_MouseDown);
            // 
            // FrmReader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(700, 944);
            this.Controls.Add(this.toolStripContainer2);
            this.Controls.Add(this.toolStripContainer1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.Name = "FrmReader";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmReader_FormClosing);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FrmReader_KeyDown);
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            this.toolStripContainer2.ContentPanel.ResumeLayout(false);
            this.toolStripContainer2.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer2.TopToolStripPanel.PerformLayout();
            this.toolStripContainer2.ResumeLayout(false);
            this.toolStripContainer2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : SettingForm.Designer.cs
with MIT License
from aabiryukov

private void InitializeComponent()
        {
			this.okButton = new System.Windows.Forms.Button();
			this.cancelButton = new System.Windows.Forms.Button();
			this.pathTextBox = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.historySettingsGroupBox = new System.Windows.Forms.GroupBox();
			this.dateToLabel = new System.Windows.Forms.Label();
			this.dateFromLabel = new System.Windows.Forms.Label();
			this.timeScaleComboBox = new System.Windows.Forms.ComboBox();
			this.loopPlaybackCheckBox = new System.Windows.Forms.CheckBox();
			this.label11 = new System.Windows.Forms.Label();
			this.dateToPicker = new System.Windows.Forms.DateTimePicker();
			this.dateFromPicker = new System.Windows.Forms.DateTimePicker();
			this.secondsPerDayTextBox = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.label4 = new System.Windows.Forms.Label();
			this.userExcludeTextBox = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.userIncludeTextBox = new System.Windows.Forms.TextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.resetToDefaultButton = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label5 = new System.Windows.Forms.Label();
			this.filesExcludeTextBox = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.filesIncludeTextBox = new System.Windows.Forms.TextBox();
			this.label7 = new System.Windows.Forms.Label();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.selectLogoFileButton = new System.Windows.Forms.Button();
			this.LogoFileTextBox = new System.Windows.Forms.TextBox();
			this.ViewLogoCheckBox = new System.Windows.Forms.CheckBox();
			this.viewAvatarsCheckBox = new System.Windows.Forms.CheckBox();
			this.viewFilesExtentionMapCheckBox = new System.Windows.Forms.CheckBox();
			this.label12 = new System.Windows.Forms.Label();
			this.viewUserNamesCheckBox = new System.Windows.Forms.CheckBox();
			this.viewDirNamesCheckBox = new System.Windows.Forms.CheckBox();
			this.maxFilesTextBox = new System.Windows.Forms.TextBox();
			this.label9 = new System.Windows.Forms.Label();
			this.viewFileNamesCheckBox = new System.Windows.Forms.CheckBox();
			this.menuStrip1 = new System.Windows.Forms.MenuStrip();
			this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.loadSettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
			this.saveSettingsToFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
			this.restoreDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.interactiveKeyboardCommandsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
			this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
			this.groupBox5 = new System.Windows.Forms.GroupBox();
			this.liveStreamRadioButton = new System.Windows.Forms.RadioButton();
			this.historyRadioButton = new System.Windows.Forms.RadioButton();
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPageGeneral = new System.Windows.Forms.TabPage();
			this.tabPageVisualization = new System.Windows.Forms.TabPage();
			this.tabPageFilters = new System.Windows.Forms.TabPage();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.setResolutionCheckBox = new System.Windows.Forms.CheckBox();
			this.fullScreenCheckBox = new System.Windows.Forms.CheckBox();
			this.resolutionHeightTextBox = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.resolutionWidthTextBox = new System.Windows.Forms.TextBox();
			this.historySettingsGroupBox.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.menuStrip1.SuspendLayout();
			this.groupBox5.SuspendLayout();
			this.tabControl1.SuspendLayout();
			this.tabPageGeneral.SuspendLayout();
			this.tabPageVisualization.SuspendLayout();
			this.tabPageFilters.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.SuspendLayout();
			// 
			// okButton
			// 
			this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.okButton.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.okButton.Location = new System.Drawing.Point(173, 460);
			this.okButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.okButton.Name = "okButton";
			this.okButton.Size = new System.Drawing.Size(180, 40);
			this.okButton.TabIndex = 0;
			this.okButton.Text = "Start";
			this.okButton.UseVisualStyleBackColor = true;
			this.okButton.Click += new System.EventHandler(this.okButton_Click);
			// 
			// cancelButton
			// 
			this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.Location = new System.Drawing.Point(361, 460);
			this.cancelButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.cancelButton.Name = "cancelButton";
			this.cancelButton.Size = new System.Drawing.Size(100, 40);
			this.cancelButton.TabIndex = 1;
			this.cancelButton.Text = "Cancel";
			this.cancelButton.UseVisualStyleBackColor = true;
			// 
			// pathTextBox
			// 
			this.pathTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.pathTextBox.Location = new System.Drawing.Point(57, 41);
			this.pathTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.pathTextBox.Name = "pathTextBox";
			this.pathTextBox.ReadOnly = true;
			this.pathTextBox.Size = new System.Drawing.Size(407, 22);
			this.pathTextBox.TabIndex = 4;
			this.pathTextBox.TabStop = false;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(12, 41);
			this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(37, 17);
			this.label1.TabIndex = 3;
			this.label1.Text = "Path";
			// 
			// historySettingsGroupBox
			// 
			this.historySettingsGroupBox.Controls.Add(this.dateToLabel);
			this.historySettingsGroupBox.Controls.Add(this.dateFromLabel);
			this.historySettingsGroupBox.Controls.Add(this.timeScaleComboBox);
			this.historySettingsGroupBox.Controls.Add(this.loopPlaybackCheckBox);
			this.historySettingsGroupBox.Controls.Add(this.label11);
			this.historySettingsGroupBox.Controls.Add(this.dateToPicker);
			this.historySettingsGroupBox.Controls.Add(this.dateFromPicker);
			this.historySettingsGroupBox.Controls.Add(this.secondsPerDayTextBox);
			this.historySettingsGroupBox.Controls.Add(this.label8);
			this.historySettingsGroupBox.Location = new System.Drawing.Point(14, 131);
			this.historySettingsGroupBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.historySettingsGroupBox.Name = "historySettingsGroupBox";
			this.historySettingsGroupBox.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.historySettingsGroupBox.Size = new System.Drawing.Size(418, 185);
			this.historySettingsGroupBox.TabIndex = 6;
			this.historySettingsGroupBox.TabStop = false;
			this.historySettingsGroupBox.Text = "History setting";
			// 
			// dateToLabel
			// 
			this.dateToLabel.AutoSize = true;
			this.dateToLabel.Location = new System.Drawing.Point(216, 39);
			this.dateToLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.dateToLabel.Name = "dateToLabel";
			this.dateToLabel.Size = new System.Drawing.Size(29, 17);
			this.dateToLabel.TabIndex = 2;
			this.dateToLabel.Text = "To:";
			// 
			// dateFromLabel
			// 
			this.dateFromLabel.AutoSize = true;
			this.dateFromLabel.Location = new System.Drawing.Point(12, 39);
			this.dateFromLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.dateFromLabel.Name = "dateFromLabel";
			this.dateFromLabel.Size = new System.Drawing.Size(44, 17);
			this.dateFromLabel.TabIndex = 0;
			this.dateFromLabel.Text = "From:";
			// 
			// timeScaleComboBox
			// 
			this.timeScaleComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.timeScaleComboBox.FormattingEnabled = true;
			this.timeScaleComboBox.Items.AddRange(new object[] {
            "<None>",
            "Slow x1/8",
            "Slow x1/4",
            "Slow x1/2",
            "Fast x2",
            "Fast x3",
            "Fast x4"});
			this.timeScaleComboBox.Location = new System.Drawing.Point(193, 120);
			this.timeScaleComboBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.timeScaleComboBox.Name = "timeScaleComboBox";
			this.timeScaleComboBox.Size = new System.Drawing.Size(108, 24);
			this.timeScaleComboBox.TabIndex = 7;
			// 
			// loopPlaybackCheckBox
			// 
			this.loopPlaybackCheckBox.AutoSize = true;
			this.loopPlaybackCheckBox.Location = new System.Drawing.Point(15, 156);
			this.loopPlaybackCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.loopPlaybackCheckBox.Name = "loopPlaybackCheckBox";
			this.loopPlaybackCheckBox.Size = new System.Drawing.Size(122, 21);
			this.loopPlaybackCheckBox.TabIndex = 10;
			this.loopPlaybackCheckBox.Text = "Loop playback";
			this.loopPlaybackCheckBox.UseVisualStyleBackColor = true;
			// 
			// label11
			// 
			this.label11.AutoSize = true;
			this.label11.Location = new System.Drawing.Point(10, 121);
			this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label11.Name = "label11";
			this.label11.Size = new System.Drawing.Size(80, 17);
			this.label11.TabIndex = 6;
			this.label11.Text = "Time scale:";
			// 
			// dateToPicker
			// 
			this.dateToPicker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dateToPicker.Location = new System.Drawing.Point(255, 36);
			this.dateToPicker.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.dateToPicker.Name = "dateToPicker";
			this.dateToPicker.Size = new System.Drawing.Size(139, 22);
			this.dateToPicker.TabIndex = 3;
			// 
			// dateFromPicker
			// 
			this.dateFromPicker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dateFromPicker.Location = new System.Drawing.Point(64, 35);
			this.dateFromPicker.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.dateFromPicker.Name = "dateFromPicker";
			this.dateFromPicker.Size = new System.Drawing.Size(139, 22);
			this.dateFromPicker.TabIndex = 1;
			// 
			// secondsPerDayTextBox
			// 
			this.secondsPerDayTextBox.Location = new System.Drawing.Point(193, 90);
			this.secondsPerDayTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.secondsPerDayTextBox.MaxLength = 5;
			this.secondsPerDayTextBox.Name = "secondsPerDayTextBox";
			this.secondsPerDayTextBox.Size = new System.Drawing.Size(67, 22);
			this.secondsPerDayTextBox.TabIndex = 5;
			// 
			// label8
			// 
			this.label8.AutoSize = true;
			this.label8.Location = new System.Drawing.Point(9, 93);
			this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label8.Name = "label8";
			this.label8.Size = new System.Drawing.Size(178, 17);
			this.label8.TabIndex = 4;
			this.label8.Text = "Seconds per day (1-1000):";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.userExcludeTextBox);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.userIncludeTextBox);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Location = new System.Drawing.Point(14, 22);
			this.groupBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox1.Size = new System.Drawing.Size(418, 132);
			this.groupBox1.TabIndex = 11;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "User name filter";
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(81, 94);
			this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(193, 17);
			this.label4.TabIndex = 4;
			this.label4.Text = "Example: John*; *Eva; *robot*";
			// 
			// userExcludeTextBox
			// 
			this.userExcludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.userExcludeTextBox.Location = new System.Drawing.Point(84, 66);
			this.userExcludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.userExcludeTextBox.Name = "userExcludeTextBox";
			this.userExcludeTextBox.Size = new System.Drawing.Size(325, 22);
			this.userExcludeTextBox.TabIndex = 3;
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(11, 70);
			this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(61, 17);
			this.label3.TabIndex = 2;
			this.label3.Text = "Exclude:";
			// 
			// userIncludeTextBox
			// 
			this.userIncludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.userIncludeTextBox.Location = new System.Drawing.Point(84, 34);
			this.userIncludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.userIncludeTextBox.Name = "userIncludeTextBox";
			this.userIncludeTextBox.Size = new System.Drawing.Size(325, 22);
			this.userIncludeTextBox.TabIndex = 1;
			this.userIncludeTextBox.Text = "*";
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(11, 38);
			this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(57, 17);
			this.label2.TabIndex = 0;
			this.label2.Text = "Include:";
			// 
			// resetToDefaultButton
			// 
			this.resetToDefaultButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
			this.resetToDefaultButton.Location = new System.Drawing.Point(12, 460);
			this.resetToDefaultButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.resetToDefaultButton.Name = "resetToDefaultButton";
			this.resetToDefaultButton.Size = new System.Drawing.Size(128, 40);
			this.resetToDefaultButton.TabIndex = 14;
			this.resetToDefaultButton.Text = "Restore &Defaults";
			this.resetToDefaultButton.UseVisualStyleBackColor = true;
			this.resetToDefaultButton.Click += new System.EventHandler(this.resetToDefaultButton_Click);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.label5);
			this.groupBox2.Controls.Add(this.filesExcludeTextBox);
			this.groupBox2.Controls.Add(this.label6);
			this.groupBox2.Controls.Add(this.filesIncludeTextBox);
			this.groupBox2.Controls.Add(this.label7);
			this.groupBox2.Location = new System.Drawing.Point(14, 184);
			this.groupBox2.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox2.Size = new System.Drawing.Size(418, 132);
			this.groupBox2.TabIndex = 12;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "File type filter";
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(81, 96);
			this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(119, 17);
			this.label5.TabIndex = 4;
			this.label5.Text = "Example: *.cs;*.txt";
			// 
			// filesExcludeTextBox
			// 
			this.filesExcludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.filesExcludeTextBox.Location = new System.Drawing.Point(84, 68);
			this.filesExcludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.filesExcludeTextBox.Name = "filesExcludeTextBox";
			this.filesExcludeTextBox.Size = new System.Drawing.Size(325, 22);
			this.filesExcludeTextBox.TabIndex = 3;
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(11, 72);
			this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(61, 17);
			this.label6.TabIndex = 2;
			this.label6.Text = "Exclude:";
			// 
			// filesIncludeTextBox
			// 
			this.filesIncludeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.filesIncludeTextBox.Location = new System.Drawing.Point(84, 36);
			this.filesIncludeTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.filesIncludeTextBox.Name = "filesIncludeTextBox";
			this.filesIncludeTextBox.Size = new System.Drawing.Size(325, 22);
			this.filesIncludeTextBox.TabIndex = 1;
			this.filesIncludeTextBox.Text = "*";
			// 
			// label7
			// 
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(11, 40);
			this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(57, 17);
			this.label7.TabIndex = 0;
			this.label7.Text = "Include:";
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.selectLogoFileButton);
			this.groupBox3.Controls.Add(this.LogoFileTextBox);
			this.groupBox3.Controls.Add(this.ViewLogoCheckBox);
			this.groupBox3.Controls.Add(this.viewAvatarsCheckBox);
			this.groupBox3.Controls.Add(this.viewFilesExtentionMapCheckBox);
			this.groupBox3.Controls.Add(this.label12);
			this.groupBox3.Controls.Add(this.viewUserNamesCheckBox);
			this.groupBox3.Controls.Add(this.viewDirNamesCheckBox);
			this.groupBox3.Controls.Add(this.maxFilesTextBox);
			this.groupBox3.Controls.Add(this.label9);
			this.groupBox3.Controls.Add(this.viewFileNamesCheckBox);
			this.groupBox3.Location = new System.Drawing.Point(14, 22);
			this.groupBox3.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox3.Size = new System.Drawing.Size(418, 161);
			this.groupBox3.TabIndex = 7;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "Visualization";
			// 
			// selectLogoFileButton
			// 
			this.selectLogoFileButton.Location = new System.Drawing.Point(370, 122);
			this.selectLogoFileButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.selectLogoFileButton.Name = "selectLogoFileButton";
			this.selectLogoFileButton.Size = new System.Drawing.Size(40, 27);
			this.selectLogoFileButton.TabIndex = 10;
			this.selectLogoFileButton.Text = "...";
			this.selectLogoFileButton.UseVisualStyleBackColor = true;
			this.selectLogoFileButton.Click += new System.EventHandler(this.selectLogoFileButton_Click);
			// 
			// LogoFileTextBox
			// 
			this.LogoFileTextBox.Location = new System.Drawing.Point(105, 126);
			this.LogoFileTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.LogoFileTextBox.Name = "LogoFileTextBox";
			this.LogoFileTextBox.Size = new System.Drawing.Size(257, 22);
			this.LogoFileTextBox.TabIndex = 9;
			// 
			// ViewLogoCheckBox
			// 
			this.ViewLogoCheckBox.AutoSize = true;
			this.ViewLogoCheckBox.Location = new System.Drawing.Point(12, 128);
			this.ViewLogoCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.ViewLogoCheckBox.Name = "ViewLogoCheckBox";
			this.ViewLogoCheckBox.Size = new System.Drawing.Size(88, 21);
			this.ViewLogoCheckBox.TabIndex = 8;
			this.ViewLogoCheckBox.Text = "Logo file:";
			this.ViewLogoCheckBox.ThreeState = true;
			this.ViewLogoCheckBox.UseVisualStyleBackColor = true;
			this.ViewLogoCheckBox.CheckStateChanged += new System.EventHandler(this.ViewLogoCheckBox_CheckStateChanged);
			// 
			// viewAvatarsCheckBox
			// 
			this.viewAvatarsCheckBox.AutoSize = true;
			this.viewAvatarsCheckBox.Location = new System.Drawing.Point(320, 31);
			this.viewAvatarsCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.viewAvatarsCheckBox.Name = "viewAvatarsCheckBox";
			this.viewAvatarsCheckBox.Size = new System.Drawing.Size(78, 21);
			this.viewAvatarsCheckBox.TabIndex = 4;
			this.viewAvatarsCheckBox.Text = "Avatars";
			this.viewAvatarsCheckBox.UseVisualStyleBackColor = true;
			// 
			// viewFilesExtentionMapCheckBox
			// 
			this.viewFilesExtentionMapCheckBox.AutoSize = true;
			this.viewFilesExtentionMapCheckBox.Location = new System.Drawing.Point(13, 96);
			this.viewFilesExtentionMapCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.viewFilesExtentionMapCheckBox.Name = "viewFilesExtentionMapCheckBox";
			this.viewFilesExtentionMapCheckBox.Size = new System.Drawing.Size(183, 21);
			this.viewFilesExtentionMapCheckBox.TabIndex = 7;
			this.viewFilesExtentionMapCheckBox.Text = "View files extension map";
			this.viewFilesExtentionMapCheckBox.UseVisualStyleBackColor = true;
			// 
			// label12
			// 
			this.label12.AutoSize = true;
			this.label12.Location = new System.Drawing.Point(9, 32);
			this.label12.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(41, 17);
			this.label12.TabIndex = 0;
			this.label12.Text = "View:";
			// 
			// viewUserNamesCheckBox
			// 
			this.viewUserNamesCheckBox.AutoSize = true;
			this.viewUserNamesCheckBox.Location = new System.Drawing.Point(241, 31);
			this.viewUserNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.viewUserNamesCheckBox.Name = "viewUserNamesCheckBox";
			this.viewUserNamesCheckBox.Size = new System.Drawing.Size(67, 21);
			this.viewUserNamesCheckBox.TabIndex = 3;
			this.viewUserNamesCheckBox.Text = "Users";
			this.viewUserNamesCheckBox.UseVisualStyleBackColor = true;
			// 
			// viewDirNamesCheckBox
			// 
			this.viewDirNamesCheckBox.AutoSize = true;
			this.viewDirNamesCheckBox.Location = new System.Drawing.Point(132, 31);
			this.viewDirNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.viewDirNamesCheckBox.Name = "viewDirNamesCheckBox";
			this.viewDirNamesCheckBox.Size = new System.Drawing.Size(98, 21);
			this.viewDirNamesCheckBox.TabIndex = 2;
			this.viewDirNamesCheckBox.Text = "Directories";
			this.viewDirNamesCheckBox.UseVisualStyleBackColor = true;
			// 
			// maxFilesTextBox
			// 
			this.maxFilesTextBox.Location = new System.Drawing.Point(199, 64);
			this.maxFilesTextBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.maxFilesTextBox.MaxLength = 7;
			this.maxFilesTextBox.Name = "maxFilesTextBox";
			this.maxFilesTextBox.Size = new System.Drawing.Size(67, 22);
			this.maxFilesTextBox.TabIndex = 6;
			// 
			// label9
			// 
			this.label9.AutoSize = true;
			this.label9.Location = new System.Drawing.Point(9, 68);
			this.label9.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label9.Name = "label9";
			this.label9.Size = new System.Drawing.Size(175, 17);
			this.label9.TabIndex = 5;
			this.label9.Text = "Max number of active files:";
			// 
			// viewFileNamesCheckBox
			// 
			this.viewFileNamesCheckBox.AutoSize = true;
			this.viewFileNamesCheckBox.Location = new System.Drawing.Point(61, 31);
			this.viewFileNamesCheckBox.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.viewFileNamesCheckBox.Name = "viewFileNamesCheckBox";
			this.viewFileNamesCheckBox.Size = new System.Drawing.Size(59, 21);
			this.viewFileNamesCheckBox.TabIndex = 1;
			this.viewFileNamesCheckBox.Text = "Files";
			this.viewFileNamesCheckBox.UseVisualStyleBackColor = true;
			// 
			// menuStrip1
			// 
			this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.helpToolStripMenuItem});
			this.menuStrip1.Location = new System.Drawing.Point(0, 0);
			this.menuStrip1.Name = "menuStrip1";
			this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
			this.menuStrip1.Size = new System.Drawing.Size(477, 28);
			this.menuStrip1.TabIndex = 2;
			this.menuStrip1.Text = "menuStrip1";
			// 
			// fileToolStripMenuItem
			// 
			this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.loadSettingsToolStripMenuItem,
            this.toolStripMenuItem2,
            this.saveSettingsToFileToolStripMenuItem,
            this.toolStripMenuItem1,
            this.restoreDefaultToolStripMenuItem});
			this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
			this.fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
			this.fileToolStripMenuItem.Text = "File";
			// 
			// loadSettingsToolStripMenuItem
			// 
			this.loadSettingsToolStripMenuItem.Name = "loadSettingsToolStripMenuItem";
			this.loadSettingsToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
			this.loadSettingsToolStripMenuItem.Text = "&Load Settings";
			this.loadSettingsToolStripMenuItem.Click += new System.EventHandler(this.loadSettingsToolStripMenuItem_Click);
			// 
			// toolStripMenuItem2
			// 
			this.toolStripMenuItem2.Name = "toolStripMenuItem2";
			this.toolStripMenuItem2.Size = new System.Drawing.Size(233, 6);
			// 
			// saveSettingsToFileToolStripMenuItem
			// 
			this.saveSettingsToFileToolStripMenuItem.Name = "saveSettingsToFileToolStripMenuItem";
			this.saveSettingsToFileToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
			this.saveSettingsToFileToolStripMenuItem.Text = "&Save Settings As...";
			this.saveSettingsToFileToolStripMenuItem.Click += new System.EventHandler(this.saveSettingsToFileToolStripMenuItem_Click);
			// 
			// toolStripMenuItem1
			// 
			this.toolStripMenuItem1.Name = "toolStripMenuItem1";
			this.toolStripMenuItem1.Size = new System.Drawing.Size(233, 6);
			// 
			// restoreDefaultToolStripMenuItem
			// 
			this.restoreDefaultToolStripMenuItem.Name = "restoreDefaultToolStripMenuItem";
			this.restoreDefaultToolStripMenuItem.Size = new System.Drawing.Size(236, 24);
			this.restoreDefaultToolStripMenuItem.Text = "Restore Default settings";
			this.restoreDefaultToolStripMenuItem.Click += new System.EventHandler(this.resetToDefaultButton_Click);
			// 
			// helpToolStripMenuItem
			// 
			this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.interactiveKeyboardCommandsToolStripMenuItem});
			this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
			this.helpToolStripMenuItem.Size = new System.Drawing.Size(53, 24);
			this.helpToolStripMenuItem.Text = "Help";
			// 
			// interactiveKeyboardCommandsToolStripMenuItem
			// 
			this.interactiveKeyboardCommandsToolStripMenuItem.Name = "interactiveKeyboardCommandsToolStripMenuItem";
			this.interactiveKeyboardCommandsToolStripMenuItem.Size = new System.Drawing.Size(290, 24);
			this.interactiveKeyboardCommandsToolStripMenuItem.Text = "Interactive keyboard commands";
			this.interactiveKeyboardCommandsToolStripMenuItem.Click += new System.EventHandler(this.interactiveKeyboardCommandsToolStripMenuItem_Click);
			// 
			// saveFileDialog1
			// 
			this.saveFileDialog1.DefaultExt = "VHCfg";
			this.saveFileDialog1.FileName = "VisualHistorySettings1.VHCfg";
			this.saveFileDialog1.Filter = "Setting|*.VHCfg";
			this.saveFileDialog1.replacedle = "Save Visualization Settings";
			// 
			// openFileDialog1
			// 
			this.openFileDialog1.DefaultExt = "VHCfg";
			this.openFileDialog1.FileName = "VisualHistorySettings1.VHCfg";
			this.openFileDialog1.Filter = "Setting|*.VHCfg";
			this.openFileDialog1.replacedle = "Open Visualization Settings";
			// 
			// groupBox5
			// 
			this.groupBox5.Controls.Add(this.liveStreamRadioButton);
			this.groupBox5.Controls.Add(this.historyRadioButton);
			this.groupBox5.Location = new System.Drawing.Point(14, 22);
			this.groupBox5.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox5.Name = "groupBox5";
			this.groupBox5.Padding = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.groupBox5.Size = new System.Drawing.Size(418, 89);
			this.groupBox5.TabIndex = 5;
			this.groupBox5.TabStop = false;
			this.groupBox5.Text = "Play Mode";
			// 
			// liveStreamRadioButton
			// 
			this.liveStreamRadioButton.AutoSize = true;
			this.liveStreamRadioButton.Location = new System.Drawing.Point(199, 41);
			this.liveStreamRadioButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.liveStreamRadioButton.Name = "liveStreamRadioButton";
			this.liveStreamRadioButton.Size = new System.Drawing.Size(183, 21);
			this.liveStreamRadioButton.TabIndex = 1;
			this.liveStreamRadioButton.Text = "Live Changes (real time)";
			this.liveStreamRadioButton.UseVisualStyleBackColor = true;
			this.liveStreamRadioButton.CheckedChanged += new System.EventHandler(this.historyRadioButton_CheckedChanged);
			// 
			// historyRadioButton
			// 
			this.historyRadioButton.AutoSize = true;
			this.historyRadioButton.Checked = true;
			this.historyRadioButton.Location = new System.Drawing.Point(29, 41);
			this.historyRadioButton.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.historyRadioButton.Name = "historyRadioButton";
			this.historyRadioButton.Size = new System.Drawing.Size(133, 21);
			this.historyRadioButton.TabIndex = 0;
			this.historyRadioButton.TabStop = true;
			this.historyRadioButton.Text = "Visualize History";
			this.historyRadioButton.UseVisualStyleBackColor = true;
			this.historyRadioButton.CheckedChanged += new System.EventHandler(this.historyRadioButton_CheckedChanged);
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.tabPageGeneral);
			this.tabControl1.Controls.Add(this.tabPageVisualization);
			this.tabControl1.Controls.Add(this.tabPageFilters);
			this.tabControl1.Location = new System.Drawing.Point(12, 74);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.Padding = new System.Drawing.Point(16, 6);
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(454, 373);
			this.tabControl1.TabIndex = 15;
			// 
			// tabPageGeneral
			// 
			this.tabPageGeneral.Controls.Add(this.groupBox5);
			this.tabPageGeneral.Controls.Add(this.historySettingsGroupBox);
			this.tabPageGeneral.Location = new System.Drawing.Point(4, 31);
			this.tabPageGeneral.Name = "tabPageGeneral";
			this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
			this.tabPageGeneral.Size = new System.Drawing.Size(446, 338);
			this.tabPageGeneral.TabIndex = 0;
			this.tabPageGeneral.Text = "General";
			this.tabPageGeneral.UseVisualStyleBackColor = true;
			// 
			// tabPageVisualization
			// 
			this.tabPageVisualization.Controls.Add(this.groupBox4);
			this.tabPageVisualization.Controls.Add(this.groupBox3);
			this.tabPageVisualization.Location = new System.Drawing.Point(4, 31);
			this.tabPageVisualization.Name = "tabPageVisualization";
			this.tabPageVisualization.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
			this.tabPageVisualization.Size = new System.Drawing.Size(446, 338);
			this.tabPageVisualization.TabIndex = 1;
			this.tabPageVisualization.Text = "Visualization";
			this.tabPageVisualization.UseVisualStyleBackColor = true;
			// 
			// tabPageFilters
			// 
			this.tabPageFilters.Controls.Add(this.groupBox1);
			this.tabPageFilters.Controls.Add(this.groupBox2);
			this.tabPageFilters.Location = new System.Drawing.Point(4, 31);
			this.tabPageFilters.Name = "tabPageFilters";
			this.tabPageFilters.Padding = new System.Windows.Forms.Padding(10, 18, 10, 18);
			this.tabPageFilters.Size = new System.Drawing.Size(446, 338);
			this.tabPageFilters.TabIndex = 2;
			this.tabPageFilters.Text = "Filters";
			this.tabPageFilters.UseVisualStyleBackColor = true;
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.setResolutionCheckBox);
			this.groupBox4.Controls.Add(this.fullScreenCheckBox);
			this.groupBox4.Controls.Add(this.resolutionHeightTextBox);
			this.groupBox4.Controls.Add(this.label10);
			this.groupBox4.Controls.Add(this.resolutionWidthTextBox);
			this.groupBox4.Location = new System.Drawing.Point(14, 211);
			this.groupBox4.Margin = new System.Windows.Forms.Padding(4);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Padding = new System.Windows.Forms.Padding(4);
			this.groupBox4.Size = new System.Drawing.Size(420, 105);
			this.groupBox4.TabIndex = 14;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "View Size";
			// 
			// setResolutionCheckBox
			// 
			this.setResolutionCheckBox.AutoSize = true;
			this.setResolutionCheckBox.Location = new System.Drawing.Point(19, 62);
			this.setResolutionCheckBox.Margin = new System.Windows.Forms.Padding(4);
			this.setResolutionCheckBox.Name = "setResolutionCheckBox";
			this.setResolutionCheckBox.Size = new System.Drawing.Size(122, 21);
			this.setResolutionCheckBox.TabIndex = 1;
			this.setResolutionCheckBox.Text = "Set Resolution";
			this.setResolutionCheckBox.UseVisualStyleBackColor = true;
			this.setResolutionCheckBox.CheckedChanged += new System.EventHandler(this.setResolutionCheckBox_CheckedChanged);
			// 
			// fullScreenCheckBox
			// 
			this.fullScreenCheckBox.AutoSize = true;
			this.fullScreenCheckBox.Location = new System.Drawing.Point(19, 31);
			this.fullScreenCheckBox.Margin = new System.Windows.Forms.Padding(4);
			this.fullScreenCheckBox.Name = "fullScreenCheckBox";
			this.fullScreenCheckBox.Size = new System.Drawing.Size(255, 21);
			this.fullScreenCheckBox.TabIndex = 0;
			this.fullScreenCheckBox.Text = "Full Screen mode (toggle Alt+Enter)";
			this.fullScreenCheckBox.UseVisualStyleBackColor = true;
			// 
			// resolutionHeightTextBox
			// 
			this.resolutionHeightTextBox.Enabled = false;
			this.resolutionHeightTextBox.Location = new System.Drawing.Point(253, 60);
			this.resolutionHeightTextBox.Margin = new System.Windows.Forms.Padding(4);
			this.resolutionHeightTextBox.MaxLength = 4;
			this.resolutionHeightTextBox.Name = "resolutionHeightTextBox";
			this.resolutionHeightTextBox.Size = new System.Drawing.Size(56, 22);
			this.resolutionHeightTextBox.TabIndex = 3;
			this.resolutionHeightTextBox.Text = "600";
			// 
			// label10
			// 
			this.label10.AutoSize = true;
			this.label10.Location = new System.Drawing.Point(229, 63);
			this.label10.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(14, 17);
			this.label10.TabIndex = 3;
			this.label10.Text = "x";
			// 
			// resolutionWidthTextBox
			// 
			this.resolutionWidthTextBox.Enabled = false;
			this.resolutionWidthTextBox.Location = new System.Drawing.Point(159, 60);
			this.resolutionWidthTextBox.Margin = new System.Windows.Forms.Padding(4);
			this.resolutionWidthTextBox.MaxLength = 4;
			this.resolutionWidthTextBox.Name = "resolutionWidthTextBox";
			this.resolutionWidthTextBox.Size = new System.Drawing.Size(61, 22);
			this.resolutionWidthTextBox.TabIndex = 2;
			this.resolutionWidthTextBox.Text = "800";
			// 
			// SettingForm
			// 
			this.AcceptButton = this.okButton;
			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.cancelButton;
			this.ClientSize = new System.Drawing.Size(477, 515);
			this.Controls.Add(this.tabControl1);
			this.Controls.Add(this.resetToDefaultButton);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.pathTextBox);
			this.Controls.Add(this.cancelButton);
			this.Controls.Add(this.okButton);
			this.Controls.Add(this.menuStrip1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MainMenuStrip = this.menuStrip1;
			this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "SettingForm";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Visualization Settings";
			this.historySettingsGroupBox.ResumeLayout(false);
			this.historySettingsGroupBox.PerformLayout();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.groupBox3.ResumeLayout(false);
			this.groupBox3.PerformLayout();
			this.menuStrip1.ResumeLayout(false);
			this.menuStrip1.PerformLayout();
			this.groupBox5.ResumeLayout(false);
			this.groupBox5.PerformLayout();
			this.tabControl1.ResumeLayout(false);
			this.tabPageGeneral.ResumeLayout(false);
			this.tabPageVisualization.ResumeLayout(false);
			this.tabPageFilters.ResumeLayout(false);
			this.groupBox4.ResumeLayout(false);
			this.groupBox4.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

        }

19 Source : UI.Designer.cs
with MIT License
from aaaddress1

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UI));
            this.splitContainer = new System.Windows.Forms.SplitContainer();
            this.fastColoredTextBox = new FastColoredTextBoxNS.FastColoredTextBox();
            this.toolbox = new System.Windows.Forms.ToolStrip();
            this.compile = new System.Windows.Forms.ToolStripButton();
            this.run = new System.Windows.Forms.ToolStripButton();
            this.config = new System.Windows.Forms.ToolStripButton();
            this.browse = new System.Windows.Forms.ToolStripButton();
            this.logPanelBtn = new System.Windows.Forms.ToolStripButton();
            this.Snippet = new System.Windows.Forms.ToolStripDropDownButton();
            this.runPEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.about = new System.Windows.Forms.ToolStripButton();
            this.percntLB = new System.Windows.Forms.ToolStripLabel();
            this.logBox = new System.Windows.Forms.RichTextBox();
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.splitContainer.Panel1.SuspendLayout();
            this.splitContainer.Panel2.SuspendLayout();
            this.splitContainer.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fastColoredTextBox)).BeginInit();
            this.toolbox.SuspendLayout();
            this.SuspendLayout();
            // 
            // splitContainer
            // 
            this.splitContainer.BackColor = System.Drawing.SystemColors.Control;
            this.splitContainer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer.Location = new System.Drawing.Point(0, 0);
            this.splitContainer.Name = "splitContainer";
            this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer.Panel1
            // 
            this.splitContainer.Panel1.Controls.Add(this.fastColoredTextBox);
            this.splitContainer.Panel1.Controls.Add(this.toolbox);
            // 
            // splitContainer.Panel2
            // 
            this.splitContainer.Panel2.Controls.Add(this.logBox);
            this.splitContainer.Size = new System.Drawing.Size(791, 351);
            this.splitContainer.SplitterDistance = 169;
            this.splitContainer.SplitterWidth = 1;
            this.splitContainer.TabIndex = 5;
            // 
            // fastColoredTextBox
            // 
            this.fastColoredTextBox.AutoCompleteBracketsList = new char[] {
        '(',
        ')',
        '{',
        '}',
        '[',
        ']',
        '\"',
        '\"',
        '\'',
        '\''};
            this.fastColoredTextBox.AutoScrollMinSize = new System.Drawing.Size(27, 14);
            this.fastColoredTextBox.BackBrush = null;
            this.fastColoredTextBox.CharHeight = 14;
            this.fastColoredTextBox.CharWidth = 8;
            this.fastColoredTextBox.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.fastColoredTextBox.DisabledColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
            this.fastColoredTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fastColoredTextBox.IsReplaceMode = false;
            this.fastColoredTextBox.Location = new System.Drawing.Point(0, 0);
            this.fastColoredTextBox.Name = "fastColoredTextBox";
            this.fastColoredTextBox.Paddings = new System.Windows.Forms.Padding(0);
            this.fastColoredTextBox.SelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            this.fastColoredTextBox.ServiceColors = ((FastColoredTextBoxNS.ServiceColors)(resources.GetObject("fastColoredTextBox.ServiceColors")));
            this.fastColoredTextBox.Size = new System.Drawing.Size(789, 128);
            this.fastColoredTextBox.TabIndex = 8;
            this.fastColoredTextBox.Zoom = 100;
            // 
            // toolbox
            // 
            this.toolbox.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.toolbox.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolbox.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.compile,
            this.run,
            this.config,
            this.browse,
            this.logPanelBtn,
            this.Snippet,
            this.about,
            this.percntLB});
            this.toolbox.Location = new System.Drawing.Point(0, 128);
            this.toolbox.Name = "toolbox";
            this.toolbox.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.toolbox.Size = new System.Drawing.Size(789, 39);
            this.toolbox.Stretch = true;
            this.toolbox.TabIndex = 7;
            this.toolbox.Text = "toolStrip";
            // 
            // compile
            // 
            this.compile.Image = ((System.Drawing.Image)(resources.GetObject("compile.Image")));
            this.compile.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.compile.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.compile.Name = "compile";
            this.compile.Size = new System.Drawing.Size(92, 36);
            this.compile.Text = "&Compile";
            this.compile.ToolTipText = "Compile";
            this.compile.Click += new System.EventHandler(this.compile_Click);
            // 
            // run
            // 
            this.run.Image = ((System.Drawing.Image)(resources.GetObject("run.Image")));
            this.run.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.run.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.run.Name = "run";
            this.run.Size = new System.Drawing.Size(66, 36);
            this.run.Text = "&Run";
            this.run.ToolTipText = "Run";
            this.run.Click += new System.EventHandler(this.run_Click);
            // 
            // config
            // 
            this.config.Image = ((System.Drawing.Image)(resources.GetObject("config.Image")));
            this.config.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.config.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.config.Name = "config";
            this.config.Size = new System.Drawing.Size(82, 36);
            this.config.Text = "&Config";
            this.config.ToolTipText = "Config";
            this.config.Click += new System.EventHandler(this.config_Click);
            // 
            // browse
            // 
            this.browse.Image = ((System.Drawing.Image)(resources.GetObject("browse.Image")));
            this.browse.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.browse.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.browse.Name = "browse";
            this.browse.Size = new System.Drawing.Size(84, 36);
            this.browse.Text = "&Browse";
            this.browse.ToolTipText = "Browse";
            this.browse.Click += new System.EventHandler(this.browse_Click);
            // 
            // logPanelBtn
            // 
            this.logPanelBtn.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.logPanelBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
            this.logPanelBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.logPanelBtn.Name = "logPanelBtn";
            this.logPanelBtn.Size = new System.Drawing.Size(23, 36);
            this.logPanelBtn.Text = "+";
            this.logPanelBtn.ToolTipText = "Log Panel";
            this.logPanelBtn.Click += new System.EventHandler(this.logPanelBtn_Click);
            // 
            // Snippet
            // 
            this.Snippet.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.runPEToolStripMenuItem});
            this.Snippet.Image = ((System.Drawing.Image)(resources.GetObject("Snippet.Image")));
            this.Snippet.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.Snippet.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.Snippet.Name = "Snippet";
            this.Snippet.Size = new System.Drawing.Size(89, 36);
            this.Snippet.Text = "&Snippet";
            // 
            // runPEToolStripMenuItem
            // 
            this.runPEToolStripMenuItem.Name = "runPEToolStripMenuItem";
            this.runPEToolStripMenuItem.Size = new System.Drawing.Size(112, 22);
            this.runPEToolStripMenuItem.Text = "RunPE";
            this.runPEToolStripMenuItem.Click += new System.EventHandler(this.runPEToolStripMenuItem_Click);
            // 
            // about
            // 
            this.about.Image = ((System.Drawing.Image)(resources.GetObject("about.Image")));
            this.about.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.about.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.about.Name = "about";
            this.about.Size = new System.Drawing.Size(79, 36);
            this.about.Text = "&About";
            this.about.ToolTipText = "About";
            this.about.Click += new System.EventHandler(this.about_Click);
            // 
            // percntLB
            // 
            this.percntLB.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.percntLB.Name = "percntLB";
            this.percntLB.Size = new System.Drawing.Size(40, 36);
            this.percntLB.Text = "100%";
            // 
            // logBox
            // 
            this.logBox.AcceptsTab = true;
            this.logBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.logBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.logBox.Font = new System.Drawing.Font("Courier New", 9.75F);
            this.logBox.Location = new System.Drawing.Point(0, 0);
            this.logBox.Name = "logBox";
            this.logBox.Size = new System.Drawing.Size(789, 179);
            this.logBox.TabIndex = 9;
            this.logBox.Text = "";
            // 
            // openFileDialog
            // 
            this.openFileDialog.FileName = "openFileDialog";
            this.openFileDialog.Filter = "Executable File|*.exe";
            this.openFileDialog.replacedle = "Select Your Executable File To Inject";
            // 
            // UI
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(791, 351);
            this.Controls.Add(this.splitContainer);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "UI";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Shown += new System.EventHandler(this.refreshUi);
            this.splitContainer.Panel1.ResumeLayout(false);
            this.splitContainer.Panel1.PerformLayout();
            this.splitContainer.Panel2.ResumeLayout(false);
            this.splitContainer.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.fastColoredTextBox)).EndInit();
            this.toolbox.ResumeLayout(false);
            this.toolbox.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : UiConfig.cs
with Microsoft Public License
from achimismaili

public static  ContextMenuStrip CreateFeatureDefinitionContextMenu(MouseEventHandler mouseEventHandler)
        {
            // Construct context menu
            ContextMenuStrip ctxtMenu = new ContextMenuStrip();
            ToolStripMenuItem header = new ToolStripMenuItem("Feature: ?");
            header.Name = "Header";
            header.ForeColor = Color.DarkBlue;
            ctxtMenu.Items.Add(header);

            ToolStripMenuItem menuViewActivations = new ToolStripMenuItem("View activations");
            menuViewActivations.Name = "Activations";
            menuViewActivations.MouseDown += mouseEventHandler;
            ctxtMenu.Items.AddRange(new ToolStripItem[] { menuViewActivations });

            return ctxtMenu;
        }

19 Source : Form_SteamID64_Editor.Designer.cs
with MIT License
from Aemony

private void InitializeComponent()
        {
            this.buttonOpenFile = new System.Windows.Forms.Button();
            this.textBoxWorkingFile = new System.Windows.Forms.TextBox();
            this.textBoxSteamID64 = new System.Windows.Forms.TextBox();
            this.labelSteamID64 = new System.Windows.Forms.Label();
            this.groupBoxSteamID = new System.Windows.Forms.GroupBox();
            this.textBoxSteamID64_New = new System.Windows.Forms.TextBox();
            this.linkLabelSteamID64_New = new System.Windows.Forms.LinkLabel();
            this.labelSteamID_New = new System.Windows.Forms.Label();
            this.buttonUpdate = new System.Windows.Forms.Button();
            this.linkLabelSteamID64 = new System.Windows.Forms.LinkLabel();
            this.textBoxSteamID3 = new System.Windows.Forms.TextBox();
            this.labelSteamID3 = new System.Windows.Forms.Label();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
            this.groupBoxSteamID.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // buttonOpenFile
            // 
            this.buttonOpenFile.Location = new System.Drawing.Point(259, 19);
            this.buttonOpenFile.Name = "buttonOpenFile";
            this.buttonOpenFile.Size = new System.Drawing.Size(75, 23);
            this.buttonOpenFile.TabIndex = 0;
            this.buttonOpenFile.Text = "Open file...";
            this.buttonOpenFile.UseVisualStyleBackColor = true;
            this.buttonOpenFile.Click += new System.EventHandler(this.buttonOpenFile_Click);
            // 
            // textBoxWorkingFile
            // 
            this.textBoxWorkingFile.Location = new System.Drawing.Point(23, 21);
            this.textBoxWorkingFile.Name = "textBoxWorkingFile";
            this.textBoxWorkingFile.ReadOnly = true;
            this.textBoxWorkingFile.Size = new System.Drawing.Size(230, 20);
            this.textBoxWorkingFile.TabIndex = 2;
            this.textBoxWorkingFile.Text = "No file loaded...";
            // 
            // textBoxSteamID64
            // 
            this.textBoxSteamID64.Location = new System.Drawing.Point(158, 55);
            this.textBoxSteamID64.Name = "textBoxSteamID64";
            this.textBoxSteamID64.ReadOnly = true;
            this.textBoxSteamID64.Size = new System.Drawing.Size(147, 20);
            this.textBoxSteamID64.TabIndex = 5;
            this.textBoxSteamID64.TextChanged += new System.EventHandler(this.textBoxSteamID64_TextChanged);
            // 
            // labelSteamID64
            // 
            this.labelSteamID64.AutoSize = true;
            this.labelSteamID64.Location = new System.Drawing.Point(6, 58);
            this.labelSteamID64.Name = "labelSteamID64";
            this.labelSteamID64.Size = new System.Drawing.Size(97, 13);
            this.labelSteamID64.TabIndex = 6;
            this.labelSteamID64.Text = "Current SteamID64";
            // 
            // groupBoxSteamID
            // 
            this.groupBoxSteamID.Controls.Add(this.textBoxSteamID64_New);
            this.groupBoxSteamID.Controls.Add(this.linkLabelSteamID64_New);
            this.groupBoxSteamID.Controls.Add(this.labelSteamID_New);
            this.groupBoxSteamID.Controls.Add(this.buttonUpdate);
            this.groupBoxSteamID.Controls.Add(this.linkLabelSteamID64);
            this.groupBoxSteamID.Controls.Add(this.textBoxSteamID3);
            this.groupBoxSteamID.Controls.Add(this.labelSteamID3);
            this.groupBoxSteamID.Controls.Add(this.textBoxSteamID64);
            this.groupBoxSteamID.Controls.Add(this.labelSteamID64);
            this.groupBoxSteamID.Location = new System.Drawing.Point(23, 62);
            this.groupBoxSteamID.Name = "groupBoxSteamID";
            this.groupBoxSteamID.Size = new System.Drawing.Size(311, 213);
            this.groupBoxSteamID.TabIndex = 7;
            this.groupBoxSteamID.TabStop = false;
            this.groupBoxSteamID.Text = "SteamID";
            // 
            // textBoxSteamID64_New
            // 
            this.textBoxSteamID64_New.Location = new System.Drawing.Point(157, 133);
            this.textBoxSteamID64_New.MaxLength = 20;
            this.textBoxSteamID64_New.Name = "textBoxSteamID64_New";
            this.textBoxSteamID64_New.Size = new System.Drawing.Size(147, 20);
            this.textBoxSteamID64_New.TabIndex = 13;
            this.textBoxSteamID64_New.TextChanged += new System.EventHandler(this.textBoxSteamID64_New_TextChanged);
            // 
            // linkLabelSteamID64_New
            // 
            this.linkLabelSteamID64_New.ActiveLinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelSteamID64_New.AutoSize = true;
            this.linkLabelSteamID64_New.Enabled = false;
            this.linkLabelSteamID64_New.LinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelSteamID64_New.Location = new System.Drawing.Point(181, 156);
            this.linkLabelSteamID64_New.Name = "linkLabelSteamID64_New";
            this.linkLabelSteamID64_New.Size = new System.Drawing.Size(123, 13);
            this.linkLabelSteamID64_New.TabIndex = 12;
            this.linkLabelSteamID64_New.TabStop = true;
            this.linkLabelSteamID64_New.Text = "Steam Community Profile";
            this.linkLabelSteamID64_New.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelSteamID64_New_LinkClicked);
            this.linkLabelSteamID64_New.MouseEnter += new System.EventHandler(this.linkLabelSteamID64_New_MouseEnter);
            this.linkLabelSteamID64_New.MouseLeave += new System.EventHandler(this.linkLabelSteamID64_New_MouseLeave);
            // 
            // labelSteamID_New
            // 
            this.labelSteamID_New.AutoSize = true;
            this.labelSteamID_New.Location = new System.Drawing.Point(6, 136);
            this.labelSteamID_New.Name = "labelSteamID_New";
            this.labelSteamID_New.Size = new System.Drawing.Size(85, 13);
            this.labelSteamID_New.TabIndex = 11;
            this.labelSteamID_New.Text = "New SteamID64";
            // 
            // buttonUpdate
            // 
            this.buttonUpdate.Enabled = false;
            this.buttonUpdate.Location = new System.Drawing.Point(230, 181);
            this.buttonUpdate.Name = "buttonUpdate";
            this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
            this.buttonUpdate.TabIndex = 10;
            this.buttonUpdate.Text = "Update";
            this.buttonUpdate.UseVisualStyleBackColor = true;
            this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
            // 
            // linkLabelSteamID64
            // 
            this.linkLabelSteamID64.ActiveLinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelSteamID64.AutoSize = true;
            this.linkLabelSteamID64.Enabled = false;
            this.linkLabelSteamID64.LinkColor = System.Drawing.SystemColors.HotTrack;
            this.linkLabelSteamID64.Location = new System.Drawing.Point(183, 78);
            this.linkLabelSteamID64.Name = "linkLabelSteamID64";
            this.linkLabelSteamID64.Size = new System.Drawing.Size(122, 13);
            this.linkLabelSteamID64.TabIndex = 9;
            this.linkLabelSteamID64.TabStop = true;
            this.linkLabelSteamID64.Text = "Steam Community profile";
            this.linkLabelSteamID64.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelSteamID64_LinkClicked);
            this.linkLabelSteamID64.MouseEnter += new System.EventHandler(this.linkLabelSteamID64_MouseEnter);
            this.linkLabelSteamID64.MouseLeave += new System.EventHandler(this.linkLabelSteamID64_MouseLeave);
            // 
            // textBoxSteamID3
            // 
            this.textBoxSteamID3.Location = new System.Drawing.Point(158, 29);
            this.textBoxSteamID3.Name = "textBoxSteamID3";
            this.textBoxSteamID3.ReadOnly = true;
            this.textBoxSteamID3.Size = new System.Drawing.Size(147, 20);
            this.textBoxSteamID3.TabIndex = 7;
            // 
            // labelSteamID3
            // 
            this.labelSteamID3.AutoSize = true;
            this.labelSteamID3.Location = new System.Drawing.Point(6, 32);
            this.labelSteamID3.Name = "labelSteamID3";
            this.labelSteamID3.Size = new System.Drawing.Size(91, 13);
            this.labelSteamID3.TabIndex = 8;
            this.labelSteamID3.Text = "Current SteamID3";
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripStatusLabel1});
            this.statusStrip1.Location = new System.Drawing.Point(0, 288);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(357, 22);
            this.statusStrip1.SizingGrip = false;
            this.statusStrip1.TabIndex = 8;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // toolStripStatusLabel1
            // 
            this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
            this.toolStripStatusLabel1.Size = new System.Drawing.Size(120, 17);
            this.toolStripStatusLabel1.Text = "Open a file to begin...";
            // 
            // FormSteamID64Editor
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(357, 310);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.groupBoxSteamID);
            this.Controls.Add(this.textBoxWorkingFile);
            this.Controls.Add(this.buttonOpenFile);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "FormSteamID64Editor";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "NieR: Automata - SteamID64 Editor";
            this.groupBoxSteamID.ResumeLayout(false);
            this.groupBoxSteamID.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : MainWindow.Designer.cs
with GNU General Public License v3.0
from aglab2

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
            this.starPicture = new System.Windows.Forms.PictureBox();
            this.menuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.layoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem();
            this.configureLayoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.loadDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editComponentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.loadCustomFontToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem();
            this.editFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.warpToLevelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editFlagsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.enableAutoDeleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pickFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fileAToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fileBToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fileCToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.fileDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.iconsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem19 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem20 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem21 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem22 = new System.Windows.Forms.ToolStripMenuItem();
            this.useEmptyStarsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.advancedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem();
            this.resetHighlightToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.killPJ64ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.syncToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.lockoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.enableLockoutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.clearOtherPlayerScoreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem26 = new System.Windows.Forms.ToolStripMenuItem();
            this.enableClickToWarpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            ((System.ComponentModel.ISupportInitialize)(this.starPicture)).BeginInit();
            this.menuStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // starPicture
            // 
            this.starPicture.BackColor = System.Drawing.Color.Black;
            this.starPicture.ContextMenuStrip = this.menuStrip;
            this.starPicture.Location = new System.Drawing.Point(0, 0);
            this.starPicture.Name = "starPicture";
            this.starPicture.Size = new System.Drawing.Size(346, 460);
            this.starPicture.TabIndex = 2;
            this.starPicture.TabStop = false;
            this.starPicture.Click += new System.EventHandler(this.starPicture_Click);
            this.starPicture.MouseMove += new System.Windows.Forms.MouseEventHandler(this.starPicture_MouseMove);
            // 
            // menuStrip
            // 
            this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.layoutToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.toolStripMenuItem13,
            this.iconsToolStripMenuItem,
            this.advancedToolStripMenuItem,
            this.syncToolStripMenuItem,
            this.lockoutToolStripMenuItem,
            this.toolStripMenuItem26});
            this.menuStrip.Name = "menuStrip";
            this.menuStrip.Size = new System.Drawing.Size(181, 202);
            // 
            // layoutToolStripMenuItem
            // 
            this.layoutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem4,
            this.toolStripMenuItem6,
            this.toolStripMenuItem7,
            this.toolStripMenuItem5,
            this.toolStripMenuItem8,
            this.configureLayoutToolStripMenuItem});
            this.layoutToolStripMenuItem.Name = "layoutToolStripMenuItem";
            this.layoutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.layoutToolStripMenuItem.Text = "Layout";
            // 
            // toolStripMenuItem4
            // 
            this.toolStripMenuItem4.Name = "toolStripMenuItem4";
            this.toolStripMenuItem4.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem4.Text = "Load";
            this.toolStripMenuItem4.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
            // 
            // toolStripMenuItem6
            // 
            this.toolStripMenuItem6.Name = "toolStripMenuItem6";
            this.toolStripMenuItem6.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem6.Text = "Load Default";
            this.toolStripMenuItem6.Click += new System.EventHandler(this.loadDefaultToolStripMenuItem_Click);
            // 
            // toolStripMenuItem7
            // 
            this.toolStripMenuItem7.Name = "toolStripMenuItem7";
            this.toolStripMenuItem7.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem7.Text = "Load From...";
            this.toolStripMenuItem7.Click += new System.EventHandler(this.loadFromToolStripMenuItem_Click);
            // 
            // toolStripMenuItem5
            // 
            this.toolStripMenuItem5.Name = "toolStripMenuItem5";
            this.toolStripMenuItem5.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem5.Text = "Save";
            this.toolStripMenuItem5.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
            // 
            // toolStripMenuItem8
            // 
            this.toolStripMenuItem8.Name = "toolStripMenuItem8";
            this.toolStripMenuItem8.Size = new System.Drawing.Size(141, 22);
            this.toolStripMenuItem8.Text = "Save As...";
            this.toolStripMenuItem8.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
            // 
            // configureLayoutToolStripMenuItem
            // 
            this.configureLayoutToolStripMenuItem.CheckOnClick = true;
            this.configureLayoutToolStripMenuItem.Name = "configureLayoutToolStripMenuItem";
            this.configureLayoutToolStripMenuItem.Size = new System.Drawing.Size(141, 22);
            this.configureLayoutToolStripMenuItem.Text = "Edit Layout";
            this.configureLayoutToolStripMenuItem.Click += new System.EventHandler(this.configureDisplayToolStripMenuItem_Click);
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.loadToolStripMenuItem,
            this.loadDefaultToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.editComponentsToolStripMenuItem,
            this.loadCustomFontToolStripMenuItem});
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.viewToolStripMenuItem.Text = "Settings";
            // 
            // loadToolStripMenuItem
            // 
            this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
            this.loadToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.loadToolStripMenuItem.Text = "Load";
            this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click_1);
            // 
            // loadDefaultToolStripMenuItem
            // 
            this.loadDefaultToolStripMenuItem.Name = "loadDefaultToolStripMenuItem";
            this.loadDefaultToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.loadDefaultToolStripMenuItem.Text = "Load Default";
            this.loadDefaultToolStripMenuItem.Click += new System.EventHandler(this.loadDefaultToolStripMenuItem_Click_1);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.saveToolStripMenuItem.Text = "Save";
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click_1);
            // 
            // editComponentsToolStripMenuItem
            // 
            this.editComponentsToolStripMenuItem.Name = "editComponentsToolStripMenuItem";
            this.editComponentsToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.editComponentsToolStripMenuItem.Text = "Edit Settings...";
            this.editComponentsToolStripMenuItem.Click += new System.EventHandler(this.editComponentsToolStripMenuItem_Click);
            // 
            // loadCustomFontToolStripMenuItem
            // 
            this.loadCustomFontToolStripMenuItem.Name = "loadCustomFontToolStripMenuItem";
            this.loadCustomFontToolStripMenuItem.Size = new System.Drawing.Size(172, 22);
            this.loadCustomFontToolStripMenuItem.Text = "Load Custom Font";
            this.loadCustomFontToolStripMenuItem.Click += new System.EventHandler(this.loadCustomFontToolStripMenuItem_Click);
            // 
            // toolStripMenuItem13
            // 
            this.toolStripMenuItem13.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.editFileToolStripMenuItem,
            this.warpToLevelToolStripMenuItem,
            this.enableClickToWarpToolStripMenuItem,
            this.editFlagsToolStripMenuItem,
            this.enableAutoDeleteToolStripMenuItem,
            this.pickFileToolStripMenuItem});
            this.toolStripMenuItem13.Name = "toolStripMenuItem13";
            this.toolStripMenuItem13.Size = new System.Drawing.Size(180, 22);
            this.toolStripMenuItem13.Text = "Game Edits";
            // 
            // editFileToolStripMenuItem
            // 
            this.editFileToolStripMenuItem.CheckOnClick = true;
            this.editFileToolStripMenuItem.Name = "editFileToolStripMenuItem";
            this.editFileToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.editFileToolStripMenuItem.Text = "Edit File";
            this.editFileToolStripMenuItem.Click += new System.EventHandler(this.editFileToolStripMenuItem_Click);
            // 
            // warpToLevelToolStripMenuItem
            // 
            this.warpToLevelToolStripMenuItem.Name = "warpToLevelToolStripMenuItem";
            this.warpToLevelToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.warpToLevelToolStripMenuItem.Text = "Warp to level";
            this.warpToLevelToolStripMenuItem.Click += new System.EventHandler(this.warpToLevelToolStripMenuItem_Click);
            // 
            // editFlagsToolStripMenuItem
            // 
            this.editFlagsToolStripMenuItem.Name = "editFlagsToolStripMenuItem";
            this.editFlagsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.editFlagsToolStripMenuItem.Text = "Edit Flags...";
            this.editFlagsToolStripMenuItem.Click += new System.EventHandler(this.editFlagsToolStripMenuItem_Click);
            // 
            // enableAutoDeleteToolStripMenuItem
            // 
            this.enableAutoDeleteToolStripMenuItem.CheckOnClick = true;
            this.enableAutoDeleteToolStripMenuItem.Name = "enableAutoDeleteToolStripMenuItem";
            this.enableAutoDeleteToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.enableAutoDeleteToolStripMenuItem.Text = "Delete file on reset";
            // 
            // pickFileToolStripMenuItem
            // 
            this.pickFileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileAToolStripMenuItem,
            this.fileBToolStripMenuItem,
            this.fileCToolStripMenuItem,
            this.fileDToolStripMenuItem});
            this.pickFileToolStripMenuItem.Name = "pickFileToolStripMenuItem";
            this.pickFileToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.pickFileToolStripMenuItem.Text = "Pick File";
            // 
            // fileAToolStripMenuItem
            // 
            this.fileAToolStripMenuItem.Checked = true;
            this.fileAToolStripMenuItem.CheckOnClick = true;
            this.fileAToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.fileAToolStripMenuItem.Name = "fileAToolStripMenuItem";
            this.fileAToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
            this.fileAToolStripMenuItem.Text = "File A";
            this.fileAToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
            // 
            // fileBToolStripMenuItem
            // 
            this.fileBToolStripMenuItem.CheckOnClick = true;
            this.fileBToolStripMenuItem.Name = "fileBToolStripMenuItem";
            this.fileBToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
            this.fileBToolStripMenuItem.Text = "File B";
            this.fileBToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
            // 
            // fileCToolStripMenuItem
            // 
            this.fileCToolStripMenuItem.CheckOnClick = true;
            this.fileCToolStripMenuItem.Name = "fileCToolStripMenuItem";
            this.fileCToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
            this.fileCToolStripMenuItem.Text = "File C";
            this.fileCToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
            // 
            // fileDToolStripMenuItem
            // 
            this.fileDToolStripMenuItem.CheckOnClick = true;
            this.fileDToolStripMenuItem.Name = "fileDToolStripMenuItem";
            this.fileDToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
            this.fileDToolStripMenuItem.Text = "File D";
            this.fileDToolStripMenuItem.Click += new System.EventHandler(this.fileToolStripMenuItem_Click);
            // 
            // iconsToolStripMenuItem
            // 
            this.iconsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem19,
            this.toolStripMenuItem20,
            this.toolStripMenuItem21,
            this.toolStripMenuItem22,
            this.useEmptyStarsToolStripMenuItem});
            this.iconsToolStripMenuItem.Name = "iconsToolStripMenuItem";
            this.iconsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.iconsToolStripMenuItem.Text = "Icons";
            // 
            // toolStripMenuItem19
            // 
            this.toolStripMenuItem19.Name = "toolStripMenuItem19";
            this.toolStripMenuItem19.Size = new System.Drawing.Size(173, 22);
            this.toolStripMenuItem19.Text = "Import from RAM";
            this.toolStripMenuItem19.Click += new System.EventHandler(this.importIconsToolStripMenuItem_Click);
            // 
            // toolStripMenuItem20
            // 
            this.toolStripMenuItem20.Name = "toolStripMenuItem20";
            this.toolStripMenuItem20.Size = new System.Drawing.Size(173, 22);
            this.toolStripMenuItem20.Text = "Import from z64";
            this.toolStripMenuItem20.Click += new System.EventHandler(this.importIconsFromROMToolStripMenuItem_Click);
            // 
            // toolStripMenuItem21
            // 
            this.toolStripMenuItem21.Name = "toolStripMenuItem21";
            this.toolStripMenuItem21.Size = new System.Drawing.Size(173, 22);
            this.toolStripMenuItem21.Text = "Saturate";
            this.toolStripMenuItem21.Click += new System.EventHandler(this.saturateIconToolStripMenuItem_Click);
            // 
            // toolStripMenuItem22
            // 
            this.toolStripMenuItem22.Name = "toolStripMenuItem22";
            this.toolStripMenuItem22.Size = new System.Drawing.Size(173, 22);
            this.toolStripMenuItem22.Text = "Recolor";
            this.toolStripMenuItem22.Click += new System.EventHandler(this.recolorIconsToolStripMenuItem_Click);
            // 
            // useEmptyStarsToolStripMenuItem
            // 
            this.useEmptyStarsToolStripMenuItem.Name = "useEmptyStarsToolStripMenuItem";
            this.useEmptyStarsToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
            this.useEmptyStarsToolStripMenuItem.Text = "Switch empty stars";
            this.useEmptyStarsToolStripMenuItem.Click += new System.EventHandler(this.useEmptyStarsToolStripMenuItem_Click);
            // 
            // advancedToolStripMenuItem
            // 
            this.advancedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.connectToolStripMenuItem,
            this.toolStripMenuItem12,
            this.toolStripMenuItem9,
            this.resetHighlightToolStripMenuItem,
            this.killPJ64ToolStripMenuItem});
            this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem";
            this.advancedToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.advancedToolStripMenuItem.Text = "Advanced";
            // 
            // connectToolStripMenuItem
            // 
            this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
            this.connectToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.connectToolStripMenuItem.Text = "Connect to PJ64";
            this.connectToolStripMenuItem.Click += new System.EventHandler(this.connectButton_Click);
            // 
            // toolStripMenuItem12
            // 
            this.toolStripMenuItem12.Name = "toolStripMenuItem12";
            this.toolStripMenuItem12.Size = new System.Drawing.Size(180, 22);
            this.toolStripMenuItem12.Text = "Load ROM";
            this.toolStripMenuItem12.Click += new System.EventHandler(this.loadROMToolStripMenuItem_Click);
            // 
            // toolStripMenuItem9
            // 
            this.toolStripMenuItem9.Name = "toolStripMenuItem9";
            this.toolStripMenuItem9.Size = new System.Drawing.Size(180, 22);
            this.toolStripMenuItem9.Text = "Import Star Masks";
            this.toolStripMenuItem9.Click += new System.EventHandler(this.importStarMasksToolStripMenuItem_Click);
            // 
            // resetHighlightToolStripMenuItem
            // 
            this.resetHighlightToolStripMenuItem.Name = "resetHighlightToolStripMenuItem";
            this.resetHighlightToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.resetHighlightToolStripMenuItem.Text = "Reset Highlight";
            this.resetHighlightToolStripMenuItem.Click += new System.EventHandler(this.resetHighlightToolStripMenuItem_Click);
            // 
            // killPJ64ToolStripMenuItem
            // 
            this.killPJ64ToolStripMenuItem.Name = "killPJ64ToolStripMenuItem";
            this.killPJ64ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.killPJ64ToolStripMenuItem.Text = "Kill PJ64";
            this.killPJ64ToolStripMenuItem.Click += new System.EventHandler(this.killPJ64ToolStripMenuItem_Click);
            // 
            // syncToolStripMenuItem
            // 
            this.syncToolStripMenuItem.Name = "syncToolStripMenuItem";
            this.syncToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.syncToolStripMenuItem.Text = "Sync Online";
            this.syncToolStripMenuItem.Click += new System.EventHandler(this.syncToolStripMenuItem_Click);
            // 
            // lockoutToolStripMenuItem
            // 
            this.lockoutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.enableLockoutToolStripMenuItem,
            this.clearOtherPlayerScoreToolStripMenuItem});
            this.lockoutToolStripMenuItem.Name = "lockoutToolStripMenuItem";
            this.lockoutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.lockoutToolStripMenuItem.Text = "Sync Lockout";
            // 
            // enableLockoutToolStripMenuItem
            // 
            this.enableLockoutToolStripMenuItem.CheckOnClick = true;
            this.enableLockoutToolStripMenuItem.Name = "enableLockoutToolStripMenuItem";
            this.enableLockoutToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.enableLockoutToolStripMenuItem.Text = "Show other player stars";
            // 
            // clearOtherPlayerScoreToolStripMenuItem
            // 
            this.clearOtherPlayerScoreToolStripMenuItem.Name = "clearOtherPlayerScoreToolStripMenuItem";
            this.clearOtherPlayerScoreToolStripMenuItem.Size = new System.Drawing.Size(196, 22);
            this.clearOtherPlayerScoreToolStripMenuItem.Text = "Clear other player stars";
            this.clearOtherPlayerScoreToolStripMenuItem.Click += new System.EventHandler(this.clearOtherPlayerScoreToolStripMenuItem_Click);
            // 
            // toolStripMenuItem26
            // 
            this.toolStripMenuItem26.Name = "toolStripMenuItem26";
            this.toolStripMenuItem26.Size = new System.Drawing.Size(180, 22);
            this.toolStripMenuItem26.Text = "?";
            this.toolStripMenuItem26.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
            // 
            // enableClickToWarpToolStripMenuItem
            // 
            this.enableClickToWarpToolStripMenuItem.CheckOnClick = true;
            this.enableClickToWarpToolStripMenuItem.Name = "enableClickToWarpToolStripMenuItem";
            this.enableClickToWarpToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
            this.enableClickToWarpToolStripMenuItem.Text = "Click to Warp";
            this.enableClickToWarpToolStripMenuItem.Click += new System.EventHandler(this.enableClickToWarpToolStripMenuItem_Click);
            // 
            // MainWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(345, 459);
            this.Controls.Add(this.starPicture);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "MainWindow";
            this.Text = "Star Display";
            this.Resize += new System.EventHandler(this.MainWindow_Resize);
            ((System.ComponentModel.ISupportInitialize)(this.starPicture)).EndInit();
            this.menuStrip.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : AudioView.Designer.cs
with GNU General Public License v3.0
from ahmed605

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AudioView));
            this.listAudioBlocks = new System.Windows.Forms.ListView();
            this.lvcName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.lvcPlayTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.lvcSampleRate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.splitContainer = new System.Windows.Forms.SplitContainer();
            this.panelAudioBlock = new System.Windows.Forms.Panel();
            this.chkPlayLooped = new System.Windows.Forms.CheckBox();
            this.chkAutoPlay = new System.Windows.Forms.CheckBox();
            this.btnStop = new System.Windows.Forms.Button();
            this.btnPlay = new System.Windows.Forms.Button();
            this.tsContainer = new System.Windows.Forms.ToolStripContainer();
            this.tsToolbar = new System.Windows.Forms.ToolStrip();
            this.tsbExportWave = new System.Windows.Forms.ToolStripButton();
            this.tsbExportMultiChannel = new System.Windows.Forms.ToolStripButton();
            this.splitContainer.Panel1.SuspendLayout();
            this.splitContainer.Panel2.SuspendLayout();
            this.splitContainer.SuspendLayout();
            this.panelAudioBlock.SuspendLayout();
            this.tsContainer.ContentPanel.SuspendLayout();
            this.tsContainer.TopToolStripPanel.SuspendLayout();
            this.tsContainer.SuspendLayout();
            this.tsToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // listAudioBlocks
            // 
            this.listAudioBlocks.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.lvcName,
            this.lvcPlayTime,
            this.lvcSampleRate});
            this.listAudioBlocks.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listAudioBlocks.FullRowSelect = true;
            this.listAudioBlocks.HideSelection = false;
            this.listAudioBlocks.Location = new System.Drawing.Point(0, 0);
            this.listAudioBlocks.Name = "listAudioBlocks";
            this.listAudioBlocks.Size = new System.Drawing.Size(619, 372);
            this.listAudioBlocks.TabIndex = 0;
            this.listAudioBlocks.UseCompatibleStateImageBehavior = false;
            this.listAudioBlocks.View = System.Windows.Forms.View.Details;
            this.listAudioBlocks.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listAudioBlocks_ColumnClick);
            // 
            // lvcName
            // 
            this.lvcName.Text = "Name";
            this.lvcName.Width = 280;
            // 
            // lvcPlayTime
            // 
            this.lvcPlayTime.Text = "Play Time";
            this.lvcPlayTime.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.lvcPlayTime.Width = 100;
            // 
            // lvcSampleRate
            // 
            this.lvcSampleRate.Text = "Sample Rate";
            this.lvcSampleRate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.lvcSampleRate.Width = 100;
            // 
            // splitContainer
            // 
            this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.splitContainer.IsSplitterFixed = true;
            this.splitContainer.Location = new System.Drawing.Point(0, 0);
            this.splitContainer.Name = "splitContainer";
            this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer.Panel1
            // 
            this.splitContainer.Panel1.Controls.Add(this.listAudioBlocks);
            // 
            // splitContainer.Panel2
            // 
            this.splitContainer.Panel2.Controls.Add(this.panelAudioBlock);
            this.splitContainer.Size = new System.Drawing.Size(619, 436);
            this.splitContainer.SplitterDistance = 372;
            this.splitContainer.TabIndex = 1;
            // 
            // panelAudioBlock
            // 
            this.panelAudioBlock.Controls.Add(this.chkPlayLooped);
            this.panelAudioBlock.Controls.Add(this.chkAutoPlay);
            this.panelAudioBlock.Controls.Add(this.btnStop);
            this.panelAudioBlock.Controls.Add(this.btnPlay);
            this.panelAudioBlock.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panelAudioBlock.Location = new System.Drawing.Point(0, 0);
            this.panelAudioBlock.Name = "panelAudioBlock";
            this.panelAudioBlock.Size = new System.Drawing.Size(619, 60);
            this.panelAudioBlock.TabIndex = 0;
            // 
            // chkPlayLooped
            // 
            this.chkPlayLooped.AutoSize = true;
            this.chkPlayLooped.Location = new System.Drawing.Point(302, 23);
            this.chkPlayLooped.Name = "chkPlayLooped";
            this.chkPlayLooped.Size = new System.Drawing.Size(84, 17);
            this.chkPlayLooped.TabIndex = 4;
            this.chkPlayLooped.Text = "Play Looped";
            this.chkPlayLooped.UseVisualStyleBackColor = true;
            // 
            // chkAutoPlay
            // 
            this.chkAutoPlay.AutoSize = true;
            this.chkAutoPlay.Location = new System.Drawing.Point(175, 23);
            this.chkAutoPlay.Name = "chkAutoPlay";
            this.chkAutoPlay.Size = new System.Drawing.Size(121, 17);
            this.chkAutoPlay.TabIndex = 3;
            this.chkAutoPlay.Text = "Auto Play On Select";
            this.chkAutoPlay.UseVisualStyleBackColor = true;
            // 
            // btnStop
            // 
            this.btnStop.Image = ((System.Drawing.Image)(resources.GetObject("btnStop.Image")));
            this.btnStop.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnStop.Location = new System.Drawing.Point(84, 14);
            this.btnStop.Name = "btnStop";
            this.btnStop.Size = new System.Drawing.Size(66, 32);
            this.btnStop.TabIndex = 1;
            this.btnStop.Text = "Stop";
            this.btnStop.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.btnStop.UseVisualStyleBackColor = true;
            // 
            // btnPlay
            // 
            this.btnPlay.Image = ((System.Drawing.Image)(resources.GetObject("btnPlay.Image")));
            this.btnPlay.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnPlay.Location = new System.Drawing.Point(12, 14);
            this.btnPlay.Name = "btnPlay";
            this.btnPlay.Size = new System.Drawing.Size(66, 32);
            this.btnPlay.TabIndex = 0;
            this.btnPlay.Text = "Play";
            this.btnPlay.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
            this.btnPlay.UseVisualStyleBackColor = true;
            // 
            // tsContainer
            // 
            // 
            // tsContainer.ContentPanel
            // 
            this.tsContainer.ContentPanel.Controls.Add(this.splitContainer);
            this.tsContainer.ContentPanel.Size = new System.Drawing.Size(619, 436);
            this.tsContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tsContainer.Location = new System.Drawing.Point(0, 0);
            this.tsContainer.Name = "tsContainer";
            this.tsContainer.Size = new System.Drawing.Size(619, 461);
            this.tsContainer.TabIndex = 2;
            this.tsContainer.Text = "toolStripContainer1";
            // 
            // tsContainer.TopToolStripPanel
            // 
            this.tsContainer.TopToolStripPanel.Controls.Add(this.tsToolbar);
            // 
            // tsToolbar
            // 
            this.tsToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.tsToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbExportWave,
            this.tsbExportMultiChannel});
            this.tsToolbar.Location = new System.Drawing.Point(0, 0);
            this.tsToolbar.Name = "tsToolbar";
            this.tsToolbar.Size = new System.Drawing.Size(619, 25);
            this.tsToolbar.Stretch = true;
            this.tsToolbar.TabIndex = 0;
            // 
            // tsbExportWave
            // 
            this.tsbExportWave.Image = ((System.Drawing.Image)(resources.GetObject("tsbExportWave.Image")));
            this.tsbExportWave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExportWave.Name = "tsbExportWave";
            this.tsbExportWave.Size = new System.Drawing.Size(135, 22);
            this.tsbExportWave.Text = "Export Selected WAV";
            // 
            // tsbExportMultiChannel
            // 
            this.tsbExportMultiChannel.Image = ((System.Drawing.Image)(resources.GetObject("tsbExportMultiChannel.Image")));
            this.tsbExportMultiChannel.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExportMultiChannel.Name = "tsbExportMultiChannel";
            this.tsbExportMultiChannel.Size = new System.Drawing.Size(161, 22);
            this.tsbExportMultiChannel.Text = "Export Multichannel WAV";
            // 
            // AudioView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tsContainer);
            this.Name = "AudioView";
            this.Size = new System.Drawing.Size(619, 461);
            this.splitContainer.Panel1.ResumeLayout(false);
            this.splitContainer.Panel2.ResumeLayout(false);
            this.splitContainer.ResumeLayout(false);
            this.panelAudioBlock.ResumeLayout(false);
            this.panelAudioBlock.PerformLayout();
            this.tsContainer.ContentPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.PerformLayout();
            this.tsContainer.ResumeLayout(false);
            this.tsContainer.PerformLayout();
            this.tsToolbar.ResumeLayout(false);
            this.tsToolbar.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : TextureEditView.Designer.cs
with GNU General Public License v3.0
from ahmed605

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextureEditView));
            this.tsContainer = new System.Windows.Forms.ToolStripContainer();
            this.tssStatus = new System.Windows.Forms.StatusStrip();
            this.tslTexturesInfo = new System.Windows.Forms.ToolStripStatusLabel();
            this.textureView = new RageLib.Textures.TextureView();
            this.tsToolbar = new System.Windows.Forms.ToolStrip();
            this.tsbExport = new System.Windows.Forms.ToolStripButton();
            this.tsbImport = new System.Windows.Forms.ToolStripButton();
            this.tsbSaveClose = new System.Windows.Forms.ToolStripButton();
            this.tsContainer.BottomToolStripPanel.SuspendLayout();
            this.tsContainer.ContentPanel.SuspendLayout();
            this.tsContainer.TopToolStripPanel.SuspendLayout();
            this.tsContainer.SuspendLayout();
            this.tssStatus.SuspendLayout();
            this.tsToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // tsContainer
            // 
            // 
            // tsContainer.BottomToolStripPanel
            // 
            this.tsContainer.BottomToolStripPanel.Controls.Add(this.tssStatus);
            // 
            // tsContainer.ContentPanel
            // 
            this.tsContainer.ContentPanel.Controls.Add(this.textureView);
            this.tsContainer.ContentPanel.Size = new System.Drawing.Size(633, 440);
            this.tsContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tsContainer.Location = new System.Drawing.Point(0, 0);
            this.tsContainer.Name = "tsContainer";
            this.tsContainer.Size = new System.Drawing.Size(633, 487);
            this.tsContainer.TabIndex = 5;
            this.tsContainer.Text = "toolStripContainer1";
            // 
            // tsContainer.TopToolStripPanel
            // 
            this.tsContainer.TopToolStripPanel.Controls.Add(this.tsToolbar);
            // 
            // tssStatus
            // 
            this.tssStatus.Dock = System.Windows.Forms.DockStyle.None;
            this.tssStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tslTexturesInfo});
            this.tssStatus.Location = new System.Drawing.Point(0, 0);
            this.tssStatus.Name = "tssStatus";
            this.tssStatus.Size = new System.Drawing.Size(633, 22);
            this.tssStatus.TabIndex = 0;
            // 
            // tslTexturesInfo
            // 
            this.tslTexturesInfo.Name = "tslTexturesInfo";
            this.tslTexturesInfo.Size = new System.Drawing.Size(0, 17);
            // 
            // textureView
            // 
            this.textureView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textureView.InfoPanelEnabled = false;
            this.textureView.Location = new System.Drawing.Point(0, 0);
            this.textureView.Name = "textureView";
            this.textureView.PreviewImage = null;
            this.textureView.SelectedTexture = null;
            this.textureView.Size = new System.Drawing.Size(633, 440);
            this.textureView.TabIndex = 0;
            // 
            // tsToolbar
            // 
            this.tsToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.tsToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbExport,
            this.tsbImport,
            this.tsbSaveClose});
            this.tsToolbar.Location = new System.Drawing.Point(0, 0);
            this.tsToolbar.Name = "tsToolbar";
            this.tsToolbar.Size = new System.Drawing.Size(633, 25);
            this.tsToolbar.Stretch = true;
            this.tsToolbar.TabIndex = 0;
            // 
            // tsbExport
            // 
            this.tsbExport.Image = ((System.Drawing.Image)(resources.GetObject("tsbExport.Image")));
            this.tsbExport.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExport.Name = "tsbExport";
            this.tsbExport.Size = new System.Drawing.Size(102, 22);
            this.tsbExport.Text = "Export Texture";
            // 
            // tsbImport
            // 
            this.tsbImport.Image = ((System.Drawing.Image)(resources.GetObject("tsbImport.Image")));
            this.tsbImport.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbImport.Name = "tsbImport";
            this.tsbImport.Size = new System.Drawing.Size(105, 22);
            this.tsbImport.Text = "Import Texture";
            // 
            // tsbSaveClose
            // 
            this.tsbSaveClose.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.tsbSaveClose.Image = ((System.Drawing.Image)(resources.GetObject("tsbSaveClose.Image")));
            this.tsbSaveClose.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbSaveClose.Name = "tsbSaveClose";
            this.tsbSaveClose.Size = new System.Drawing.Size(108, 22);
            this.tsbSaveClose.Text = "Save And Close";
            // 
            // TextureEditView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tsContainer);
            this.Name = "TextureEditView";
            this.Size = new System.Drawing.Size(633, 487);
            this.tsContainer.BottomToolStripPanel.ResumeLayout(false);
            this.tsContainer.BottomToolStripPanel.PerformLayout();
            this.tsContainer.ContentPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.PerformLayout();
            this.tsContainer.ResumeLayout(false);
            this.tsContainer.PerformLayout();
            this.tssStatus.ResumeLayout(false);
            this.tssStatus.PerformLayout();
            this.tsToolbar.ResumeLayout(false);
            this.tsToolbar.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : ModelView.Designer.cs
with GNU General Public License v3.0
from ahmed605

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelView));
            this._model3DViewHost = new System.Windows.Forms.Integration.ElementHost();
            this._model3DView = new RageLib.Models.Model3DViewer.Model3DView();
            this.tsContainer = new System.Windows.Forms.ToolStripContainer();
            this.scSplit = new System.Windows.Forms.SplitContainer();
            this.tvNav = new System.Windows.Forms.TreeView();
            this.tsToolbar = new System.Windows.Forms.ToolStrip();
            this.tsbSolid = new System.Windows.Forms.ToolStripButton();
            this.tsbWireframe = new System.Windows.Forms.ToolStripButton();
            this.tss1 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbExport = new System.Windows.Forms.ToolStripButton();
            this.tsContainer.ContentPanel.SuspendLayout();
            this.tsContainer.TopToolStripPanel.SuspendLayout();
            this.tsContainer.SuspendLayout();
            this.scSplit.Panel1.SuspendLayout();
            this.scSplit.Panel2.SuspendLayout();
            this.scSplit.SuspendLayout();
            this.tsToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // _model3DViewHost
            // 
            this._model3DViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
            this._model3DViewHost.Location = new System.Drawing.Point(0, 0);
            this._model3DViewHost.Name = "_model3DViewHost";
            this._model3DViewHost.Size = new System.Drawing.Size(471, 435);
            this._model3DViewHost.TabIndex = 0;
            this._model3DViewHost.Child = this._model3DView;
            // 
            // tsContainer
            // 
            // 
            // tsContainer.ContentPanel
            // 
            this.tsContainer.ContentPanel.Controls.Add(this.scSplit);
            this.tsContainer.ContentPanel.Size = new System.Drawing.Size(646, 435);
            this.tsContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tsContainer.Location = new System.Drawing.Point(0, 0);
            this.tsContainer.Name = "tsContainer";
            this.tsContainer.Size = new System.Drawing.Size(646, 460);
            this.tsContainer.TabIndex = 1;
            this.tsContainer.Text = "toolStripContainer1";
            // 
            // tsContainer.TopToolStripPanel
            // 
            this.tsContainer.TopToolStripPanel.Controls.Add(this.tsToolbar);
            // 
            // scSplit
            // 
            this.scSplit.Dock = System.Windows.Forms.DockStyle.Fill;
            this.scSplit.Location = new System.Drawing.Point(0, 0);
            this.scSplit.Name = "scSplit";
            // 
            // scSplit.Panel1
            // 
            this.scSplit.Panel1.Controls.Add(this.tvNav);
            // 
            // scSplit.Panel2
            // 
            this.scSplit.Panel2.Controls.Add(this._model3DViewHost);
            this.scSplit.Size = new System.Drawing.Size(646, 435);
            this.scSplit.SplitterDistance = 171;
            this.scSplit.TabIndex = 0;
            // 
            // tvNav
            // 
            this.tvNav.CheckBoxes = true;
            this.tvNav.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tvNav.HideSelection = false;
            this.tvNav.Location = new System.Drawing.Point(0, 0);
            this.tvNav.Name = "tvNav";
            this.tvNav.Size = new System.Drawing.Size(171, 435);
            this.tvNav.TabIndex = 0;
            this.tvNav.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.tvNav_AfterCheck);
            this.tvNav.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvNav_AfterSelect);
            // 
            // tsToolbar
            // 
            this.tsToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.tsToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbSolid,
            this.tsbWireframe,
            this.tss1,
            this.tsbExport});
            this.tsToolbar.Location = new System.Drawing.Point(0, 0);
            this.tsToolbar.Name = "tsToolbar";
            this.tsToolbar.Size = new System.Drawing.Size(646, 25);
            this.tsToolbar.Stretch = true;
            this.tsToolbar.TabIndex = 0;
            // 
            // tsbSolid
            // 
            this.tsbSolid.Checked = true;
            this.tsbSolid.CheckOnClick = true;
            this.tsbSolid.CheckState = System.Windows.Forms.CheckState.Checked;
            this.tsbSolid.Image = ((System.Drawing.Image)(resources.GetObject("tsbSolid.Image")));
            this.tsbSolid.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbSolid.Name = "tsbSolid";
            this.tsbSolid.Size = new System.Drawing.Size(53, 22);
            this.tsbSolid.Text = "Solid";
            this.tsbSolid.CheckedChanged += new System.EventHandler(this.tsbSolid_CheckedChanged);
            // 
            // tsbWireframe
            // 
            this.tsbWireframe.CheckOnClick = true;
            this.tsbWireframe.Image = ((System.Drawing.Image)(resources.GetObject("tsbWireframe.Image")));
            this.tsbWireframe.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbWireframe.Name = "tsbWireframe";
            this.tsbWireframe.Size = new System.Drawing.Size(82, 22);
            this.tsbWireframe.Text = "Wireframe";
            this.tsbWireframe.Click += new System.EventHandler(this.tsbWireframe_Click);
            // 
            // tss1
            // 
            this.tss1.Name = "tss1";
            this.tss1.Size = new System.Drawing.Size(6, 25);
            // 
            // tsbExport
            // 
            this.tsbExport.Image = ((System.Drawing.Image)(resources.GetObject("tsbExport.Image")));
            this.tsbExport.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExport.Name = "tsbExport";
            this.tsbExport.Size = new System.Drawing.Size(60, 22);
            this.tsbExport.Text = "Export";
            // 
            // ModelView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tsContainer);
            this.Name = "ModelView";
            this.Size = new System.Drawing.Size(646, 460);
            this.tsContainer.ContentPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.PerformLayout();
            this.tsContainer.ResumeLayout(false);
            this.tsContainer.PerformLayout();
            this.scSplit.Panel1.ResumeLayout(false);
            this.scSplit.Panel2.ResumeLayout(false);
            this.scSplit.ResumeLayout(false);
            this.tsToolbar.ResumeLayout(false);
            this.tsToolbar.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : TexturePreviewView.Designer.cs
with GNU General Public License v3.0
from ahmed605

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TexturePreviewView));
            this.tsContainer = new System.Windows.Forms.ToolStripContainer();
            this.tssStatus = new System.Windows.Forms.StatusStrip();
            this.tslTexturesInfo = new System.Windows.Forms.ToolStripStatusLabel();
            this.textureView = new RageLib.Textures.TextureView();
            this.tsToolbar = new System.Windows.Forms.ToolStrip();
            this.tsbSave = new System.Windows.Forms.ToolStripButton();
            this.tsbSaveAll = new System.Windows.Forms.ToolStripButton();
            this.tsContainer.BottomToolStripPanel.SuspendLayout();
            this.tsContainer.ContentPanel.SuspendLayout();
            this.tsContainer.TopToolStripPanel.SuspendLayout();
            this.tsContainer.SuspendLayout();
            this.tssStatus.SuspendLayout();
            this.tsToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // tsContainer
            // 
            // 
            // tsContainer.BottomToolStripPanel
            // 
            this.tsContainer.BottomToolStripPanel.Controls.Add(this.tssStatus);
            // 
            // tsContainer.ContentPanel
            // 
            this.tsContainer.ContentPanel.Controls.Add(this.textureView);
            this.tsContainer.ContentPanel.Size = new System.Drawing.Size(633, 440);
            this.tsContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tsContainer.Location = new System.Drawing.Point(0, 0);
            this.tsContainer.Name = "tsContainer";
            this.tsContainer.Size = new System.Drawing.Size(633, 487);
            this.tsContainer.TabIndex = 4;
            this.tsContainer.Text = "toolStripContainer1";
            // 
            // tsContainer.TopToolStripPanel
            // 
            this.tsContainer.TopToolStripPanel.Controls.Add(this.tsToolbar);
            // 
            // tssStatus
            // 
            this.tssStatus.Dock = System.Windows.Forms.DockStyle.None;
            this.tssStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tslTexturesInfo});
            this.tssStatus.Location = new System.Drawing.Point(0, 0);
            this.tssStatus.Name = "tssStatus";
            this.tssStatus.Size = new System.Drawing.Size(633, 22);
            this.tssStatus.TabIndex = 0;
            // 
            // tslTexturesInfo
            // 
            this.tslTexturesInfo.Name = "tslTexturesInfo";
            this.tslTexturesInfo.Size = new System.Drawing.Size(0, 17);
            // 
            // textureView
            // 
            this.textureView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textureView.Location = new System.Drawing.Point(0, 0);
            this.textureView.Name = "textureView";
            this.textureView.Size = new System.Drawing.Size(633, 440);
            this.textureView.TabIndex = 0;
            // 
            // tsToolbar
            // 
            this.tsToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.tsToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsbSave,
            this.tsbSaveAll});
            this.tsToolbar.Location = new System.Drawing.Point(0, 0);
            this.tsToolbar.Name = "tsToolbar";
            this.tsToolbar.Size = new System.Drawing.Size(633, 25);
            this.tsToolbar.Stretch = true;
            this.tsToolbar.TabIndex = 0;
            // 
            // tsbSave
            // 
            this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
            this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbSave.Name = "tsbSave";
            this.tsbSave.Size = new System.Drawing.Size(93, 22);
            this.tsbSave.Text = "Save Texture";
            // 
            // tsbSaveAll
            // 
            this.tsbSaveAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbSaveAll.Image")));
            this.tsbSaveAll.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbSaveAll.Name = "tsbSaveAll";
            this.tsbSaveAll.Size = new System.Drawing.Size(115, 22);
            this.tsbSaveAll.Text = "Save All Textures";
            // 
            // TexturePreviewView
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.tsContainer);
            this.Name = "TexturePreviewView";
            this.Size = new System.Drawing.Size(633, 487);
            this.tsContainer.BottomToolStripPanel.ResumeLayout(false);
            this.tsContainer.BottomToolStripPanel.PerformLayout();
            this.tsContainer.ContentPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.ResumeLayout(false);
            this.tsContainer.TopToolStripPanel.PerformLayout();
            this.tsContainer.ResumeLayout(false);
            this.tsContainer.PerformLayout();
            this.tssStatus.ResumeLayout(false);
            this.tssStatus.PerformLayout();
            this.tsToolbar.ResumeLayout(false);
            this.tsToolbar.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : MainForm.designer.cs
with GNU General Public License v3.0
from ahmed605

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.tvDir = new System.Windows.Forms.TreeView();
            this.tsContainer = new System.Windows.Forms.ToolStripContainer();
            this.splitContainer = new System.Windows.Forms.SplitContainer();
            this.lvFiles = new System.Windows.Forms.ListView();
            this.lvcName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.lvcSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.lvcResource = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.tsToolbar = new System.Windows.Forms.ToolStrip();
            this.toolStripGTAIV = new System.Windows.Forms.ToolStripButton();
            this.toolStripEFLC = new System.Windows.Forms.ToolStripButton();
            this.tsbOpen = new System.Windows.Forms.ToolStripButton();
            this.tsbSave = new System.Windows.Forms.ToolStripButton();
            this.tsbRebuild = new System.Windows.Forms.ToolStripButton();
            this.tss1 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbExportSelected = new System.Windows.Forms.ToolStripButton();
            this.tsbExportAll = new System.Windows.Forms.ToolStripButton();
            this.tsbImport = new System.Windows.Forms.ToolStripButton();
            this.tslAbout = new System.Windows.Forms.ToolStripLabel();
            this.tss2 = new System.Windows.Forms.ToolStripSeparator();
            this.tsbPreview = new System.Windows.Forms.ToolStripButton();
            this.tsbEdit = new System.Windows.Forms.ToolStripButton();
            this.tslFilter = new System.Windows.Forms.ToolStripLabel();
            this.tstFilterBox = new System.Windows.Forms.ToolStripTextBox();
            this.tsContainer.ContentPanel.SuspendLayout();
            this.tsContainer.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
            this.splitContainer.Panel1.SuspendLayout();
            this.splitContainer.Panel2.SuspendLayout();
            this.splitContainer.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.tsToolbar.SuspendLayout();
            this.SuspendLayout();
            // 
            // tvDir
            // 
            this.tvDir.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tvDir.HideSelection = false;
            this.tvDir.Location = new System.Drawing.Point(0, 0);
            this.tvDir.Name = "tvDir";
            this.tvDir.Size = new System.Drawing.Size(192, 100);
            this.tvDir.TabIndex = 0;
            this.tvDir.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvDir_AfterSelect);
            // 
            // tsContainer
            // 
            // 
            // tsContainer.ContentPanel
            // 
            this.tsContainer.ContentPanel.Controls.Add(this.splitContainer);
            this.tsContainer.ContentPanel.Size = new System.Drawing.Size(716, 438);
            this.tsContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tsContainer.Location = new System.Drawing.Point(0, 0);
            this.tsContainer.Name = "tsContainer";
            this.tsContainer.Size = new System.Drawing.Size(716, 463);
            this.tsContainer.TabIndex = 1;
            this.tsContainer.Text = "toolStripContainer1";
            // 
            // splitContainer
            // 
            this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer.Location = new System.Drawing.Point(0, 0);
            this.splitContainer.Name = "splitContainer";
            // 
            // splitContainer.Panel1
            // 
            this.splitContainer.Panel1.Controls.Add(this.tvDir);
            this.splitContainer.Panel1Collapsed = true;
            // 
            // splitContainer.Panel2
            // 
            this.splitContainer.Panel2.Controls.Add(this.lvFiles);
            this.splitContainer.Size = new System.Drawing.Size(716, 438);
            this.splitContainer.SplitterDistance = 192;
            this.splitContainer.TabIndex = 2;
            // 
            // lvFiles
            // 
            this.lvFiles.AllowDrop = true;
            this.lvFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.lvcName,
            this.lvcSize,
            this.lvcResource});
            this.lvFiles.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lvFiles.FullRowSelect = true;
            this.lvFiles.HideSelection = false;
            this.lvFiles.Location = new System.Drawing.Point(0, 0);
            this.lvFiles.Name = "lvFiles";
            this.lvFiles.Size = new System.Drawing.Size(716, 438);
            this.lvFiles.TabIndex = 1;
            this.lvFiles.UseCompatibleStateImageBehavior = false;
            this.lvFiles.View = System.Windows.Forms.View.Details;
            this.lvFiles.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvFiles_ColumnClick);
            this.lvFiles.SelectedIndexChanged += new System.EventHandler(this.lvFiles_SelectedIndexChanged);
            this.lvFiles.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lvFiles_KeyDown);
            this.lvFiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lvFiles_MouseDoubleClick);
            // 
            // lvcName
            // 
            this.lvcName.Text = "Name";
            this.lvcName.Width = 280;
            // 
            // lvcSize
            // 
            this.lvcSize.Text = "Size";
            this.lvcSize.Width = 80;
            // 
            // lvcResource
            // 
            this.lvcResource.Text = "Resource";
            this.lvcResource.Width = 100;
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.AutoScroll = true;
            this.toolStripContainer1.ContentPanel.Controls.Add(this.tsContainer);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(716, 463);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(716, 517);
            this.toolStripContainer1.TabIndex = 2;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsToolbar);
            // 
            // tsToolbar
            // 
            this.tsToolbar.CanOverflow = false;
            this.tsToolbar.Dock = System.Windows.Forms.DockStyle.None;
            this.tsToolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.tsToolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripGTAIV,
            this.toolStripEFLC,
            this.tsbOpen,
            this.tsbSave,
            this.tsbRebuild,
            this.tss1,
            this.tsbExportSelected,
            this.tsbExportAll,
            this.tsbImport,
            this.tslAbout,
            this.tss2,
            this.tsbPreview,
            this.tsbEdit,
            this.tslFilter,
            this.tstFilterBox});
            this.tsToolbar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
            this.tsToolbar.Location = new System.Drawing.Point(0, 0);
            this.tsToolbar.Name = "tsToolbar";
            this.tsToolbar.Size = new System.Drawing.Size(716, 54);
            this.tsToolbar.Stretch = true;
            this.tsToolbar.TabIndex = 0;
            // 
            // toolStripGTAIV
            // 
            this.toolStripGTAIV.Image = ((System.Drawing.Image)(resources.GetObject("toolStripGTAIV.Image")));
            this.toolStripGTAIV.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripGTAIV.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripGTAIV.Name = "toolStripGTAIV";
            this.toolStripGTAIV.Size = new System.Drawing.Size(43, 51);
            this.toolStripGTAIV.Text = ">AIV";
            this.toolStripGTAIV.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.toolStripGTAIV.Click += new System.EventHandler(this.toolStripGTAIV_Click);
            // 
            // toolStripEFLC
            // 
            this.toolStripEFLC.Image = ((System.Drawing.Image)(resources.GetObject("toolStripEFLC.Image")));
            this.toolStripEFLC.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.toolStripEFLC.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripEFLC.Name = "toolStripEFLC";
            this.toolStripEFLC.Size = new System.Drawing.Size(39, 51);
            this.toolStripEFLC.Text = "E&FLC";
            this.toolStripEFLC.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.toolStripEFLC.Click += new System.EventHandler(this.toolStripEFLC_Click);
            // 
            // tsbOpen
            // 
            this.tsbOpen.Image = ((System.Drawing.Image)(resources.GetObject("tsbOpen.Image")));
            this.tsbOpen.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbOpen.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbOpen.Name = "tsbOpen";
            this.tsbOpen.Size = new System.Drawing.Size(40, 51);
            this.tsbOpen.Text = "&Open";
            this.tsbOpen.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbOpen.Click += new System.EventHandler(this.tsbOpen_Click);
            // 
            // tsbSave
            // 
            this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
            this.tsbSave.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbSave.Name = "tsbSave";
            this.tsbSave.Size = new System.Drawing.Size(36, 51);
            this.tsbSave.Text = "&Save";
            this.tsbSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
            // 
            // tsbRebuild
            // 
            this.tsbRebuild.Image = ((System.Drawing.Image)(resources.GetObject("tsbRebuild.Image")));
            this.tsbRebuild.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbRebuild.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbRebuild.Name = "tsbRebuild";
            this.tsbRebuild.Size = new System.Drawing.Size(51, 51);
            this.tsbRebuild.Text = "&Rebuild";
            this.tsbRebuild.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbRebuild.Click += new System.EventHandler(this.tsbRebuild_Click);
            // 
            // tss1
            // 
            this.tss1.Name = "tss1";
            this.tss1.Size = new System.Drawing.Size(6, 54);
            // 
            // tsbExportSelected
            // 
            this.tsbExportSelected.Image = ((System.Drawing.Image)(resources.GetObject("tsbExportSelected.Image")));
            this.tsbExportSelected.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbExportSelected.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExportSelected.Name = "tsbExportSelected";
            this.tsbExportSelected.Size = new System.Drawing.Size(44, 51);
            this.tsbExportSelected.Text = "&Export";
            this.tsbExportSelected.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbExportSelected.Click += new System.EventHandler(this.tsbExportSelected_Click);
            // 
            // tsbExportAll
            // 
            this.tsbExportAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbExportAll.Image")));
            this.tsbExportAll.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbExportAll.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbExportAll.Name = "tsbExportAll";
            this.tsbExportAll.Size = new System.Drawing.Size(61, 51);
            this.tsbExportAll.Text = "Export &All";
            this.tsbExportAll.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbExportAll.Click += new System.EventHandler(this.tsbExportAll_Click);
            // 
            // tsbImport
            // 
            this.tsbImport.Image = ((System.Drawing.Image)(resources.GetObject("tsbImport.Image")));
            this.tsbImport.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbImport.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbImport.Name = "tsbImport";
            this.tsbImport.Size = new System.Drawing.Size(47, 51);
            this.tsbImport.Text = "&Import";
            this.tsbImport.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbImport.Click += new System.EventHandler(this.tsbImport_Click);
            // 
            // tslAbout
            // 
            this.tslAbout.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.tslAbout.BackColor = System.Drawing.SystemColors.Control;
            this.tslAbout.ForeColor = System.Drawing.Color.SlateGray;
            this.tslAbout.Name = "tslAbout";
            this.tslAbout.Size = new System.Drawing.Size(49, 51);
            this.tslAbout.Text = "Spark IV";
            this.tslAbout.ToolTipText = "Click to check for new updates.";
            this.tslAbout.Click += new System.EventHandler(this.tslAbout_Click);
            // 
            // tss2
            // 
            this.tss2.Name = "tss2";
            this.tss2.Size = new System.Drawing.Size(6, 54);
            // 
            // tsbPreview
            // 
            this.tsbPreview.Image = ((System.Drawing.Image)(resources.GetObject("tsbPreview.Image")));
            this.tsbPreview.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbPreview.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbPreview.Name = "tsbPreview";
            this.tsbPreview.Size = new System.Drawing.Size(36, 51);
            this.tsbPreview.Text = "&View";
            this.tsbPreview.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbPreview.Click += new System.EventHandler(this.tsbPreview_Click);
            // 
            // tsbEdit
            // 
            this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
            this.tsbEdit.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
            this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.tsbEdit.Name = "tsbEdit";
            this.tsbEdit.Size = new System.Drawing.Size(36, 51);
            this.tsbEdit.Text = "&Edit";
            this.tsbEdit.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
            this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
            // 
            // tslFilter
            // 
            this.tslFilter.Name = "tslFilter";
            this.tslFilter.Size = new System.Drawing.Size(36, 51);
            this.tslFilter.Text = "Fil&ter:";
            // 
            // tstFilterBox
            // 
            this.tstFilterBox.Name = "tstFilterBox";
            this.tstFilterBox.Size = new System.Drawing.Size(100, 54);
            this.tstFilterBox.ToolTipText = "Type all or part of a file name.\r\nSearch is case-sensitive.";
            this.tstFilterBox.Click += new System.EventHandler(this.tstFilterBox_Click);
            this.tstFilterBox.TextChanged += new System.EventHandler(this.tstFilterBox_TextChanged);
            // 
            // MainForm
            // 
            this.AllowDrop = true;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(716, 517);
            this.Controls.Add(this.toolStripContainer1);
            this.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "MainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Spark IV (Beta)";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
            this.Load += new System.EventHandler(this.MainForm_Load);
            this.tsContainer.ContentPanel.ResumeLayout(false);
            this.tsContainer.ResumeLayout(false);
            this.tsContainer.PerformLayout();
            this.splitContainer.Panel1.ResumeLayout(false);
            this.splitContainer.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
            this.splitContainer.ResumeLayout(false);
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.tsToolbar.ResumeLayout(false);
            this.tsToolbar.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : Dashboard.Designer.cs
with GNU General Public License v3.0
from AHosseinRnj

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Dashboard));
            this.ExitBtn = new System.Windows.Forms.Button();
            this.MiniBtn = new System.Windows.Forms.Button();
            this.SeprLbl = new System.Windows.Forms.Label();
            this.NameLbl = new System.Windows.Forms.Label();
            this.CountriesCmBox = new System.Windows.Forms.ComboBox();
            this.CountriesFlgPicBox = new System.Windows.Forms.PictureBox();
            this.ConnectBtn = new System.Windows.Forms.Button();
            this.DisconnectBtn = new System.Windows.Forms.Button();
            this.statusPicbox = new System.Windows.Forms.PictureBox();
            this.usermode_Lbl = new System.Windows.Forms.Label();
            this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
            this.openApplicationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.CMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.InfoBtn = new System.Windows.Forms.Button();
            this.PPTP_rBtn = new System.Windows.Forms.RadioButton();
            this.ProtocolGrpBox = new System.Windows.Forms.GroupBox();
            this.RecommendedLbl = new System.Windows.Forms.Label();
            this.L2TP_rBtn = new System.Windows.Forms.RadioButton();
            ((System.ComponentModel.ISupportInitialize)(this.CountriesFlgPicBox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusPicbox)).BeginInit();
            this.CMenu.SuspendLayout();
            this.ProtocolGrpBox.SuspendLayout();
            this.SuspendLayout();
            // 
            // ExitBtn
            // 
            this.ExitBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.ExitBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.ExitBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ExitBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.ExitBtn.Location = new System.Drawing.Point(304, 3);
            this.ExitBtn.Name = "ExitBtn";
            this.ExitBtn.Size = new System.Drawing.Size(25, 26);
            this.ExitBtn.TabIndex = 0;
            this.ExitBtn.Text = "X";
            this.ExitBtn.UseVisualStyleBackColor = true;
            this.ExitBtn.Click += new System.EventHandler(this.ExitBtn_Click);
            // 
            // MiniBtn
            // 
            this.MiniBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.MiniBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.MiniBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.MiniBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.MiniBtn.Location = new System.Drawing.Point(276, 3);
            this.MiniBtn.Name = "MiniBtn";
            this.MiniBtn.Size = new System.Drawing.Size(25, 26);
            this.MiniBtn.TabIndex = 1;
            this.MiniBtn.Text = "_";
            this.MiniBtn.UseVisualStyleBackColor = true;
            this.MiniBtn.Click += new System.EventHandler(this.MiniBtn_Click);
            // 
            // SeprLbl
            // 
            this.SeprLbl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.SeprLbl.Location = new System.Drawing.Point(3, 35);
            this.SeprLbl.Name = "SeprLbl";
            this.SeprLbl.Size = new System.Drawing.Size(326, 1);
            this.SeprLbl.TabIndex = 2;
            // 
            // NameLbl
            // 
            this.NameLbl.AutoSize = true;
            this.NameLbl.Font = new System.Drawing.Font("Microsoft Tai Le", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.NameLbl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.NameLbl.Location = new System.Drawing.Point(-1, 7);
            this.NameLbl.Name = "NameLbl";
            this.NameLbl.Size = new System.Drawing.Size(145, 22);
            this.NameLbl.TabIndex = 3;
            this.NameLbl.Text = "SimpleVPN 1.3.4";
            // 
            // CountriesCmBox
            // 
            this.CountriesCmBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(27)))), ((int)(((byte)(33)))));
            this.CountriesCmBox.Cursor = System.Windows.Forms.Cursors.Hand;
            this.CountriesCmBox.DropDownHeight = 95;
            this.CountriesCmBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.CountriesCmBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.CountriesCmBox.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.CountriesCmBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.CountriesCmBox.FormattingEnabled = true;
            this.CountriesCmBox.IntegralHeight = false;
            this.CountriesCmBox.ItemHeight = 23;
            this.CountriesCmBox.Items.AddRange(new object[] {
            "Select",
            "France",
            "Canada",
            "Germany",
            "Argentina",
            "Netherlands",
            "United States",
            "Russian Federation"});
            this.CountriesCmBox.Location = new System.Drawing.Point(12, 285);
            this.CountriesCmBox.Name = "CountriesCmBox";
            this.CountriesCmBox.Size = new System.Drawing.Size(269, 31);
            this.CountriesCmBox.TabIndex = 4;
            this.CountriesCmBox.SelectedIndexChanged += new System.EventHandler(this.CountriesCmBox_SelectedIndexChanged);
            // 
            // CountriesFlgPicBox
            // 
            this.CountriesFlgPicBox.Location = new System.Drawing.Point(286, 285);
            this.CountriesFlgPicBox.Name = "CountriesFlgPicBox";
            this.CountriesFlgPicBox.Size = new System.Drawing.Size(34, 31);
            this.CountriesFlgPicBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.CountriesFlgPicBox.TabIndex = 5;
            this.CountriesFlgPicBox.TabStop = false;
            // 
            // ConnectBtn
            // 
            this.ConnectBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.ConnectBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.ConnectBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ConnectBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.ConnectBtn.Location = new System.Drawing.Point(12, 324);
            this.ConnectBtn.Name = "ConnectBtn";
            this.ConnectBtn.Size = new System.Drawing.Size(155, 43);
            this.ConnectBtn.TabIndex = 6;
            this.ConnectBtn.Text = "Connect";
            this.ConnectBtn.UseVisualStyleBackColor = true;
            this.ConnectBtn.Click += new System.EventHandler(this.ConnectBtn_Click);
            // 
            // DisconnectBtn
            // 
            this.DisconnectBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.DisconnectBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.DisconnectBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.DisconnectBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.DisconnectBtn.Location = new System.Drawing.Point(170, 324);
            this.DisconnectBtn.Name = "DisconnectBtn";
            this.DisconnectBtn.Size = new System.Drawing.Size(150, 43);
            this.DisconnectBtn.TabIndex = 7;
            this.DisconnectBtn.Text = "Disconnect";
            this.DisconnectBtn.UseVisualStyleBackColor = true;
            this.DisconnectBtn.Click += new System.EventHandler(this.DisconnectBtn_Click);
            // 
            // statusPicbox
            // 
            this.statusPicbox.Image = global::Simple_VPN.Properties.Resources.Disconnectpic;
            this.statusPicbox.Location = new System.Drawing.Point(77, 46);
            this.statusPicbox.Name = "statusPicbox";
            this.statusPicbox.Size = new System.Drawing.Size(181, 181);
            this.statusPicbox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.statusPicbox.TabIndex = 8;
            this.statusPicbox.TabStop = false;
            // 
            // usermode_Lbl
            // 
            this.usermode_Lbl.AutoSize = true;
            this.usermode_Lbl.BackColor = System.Drawing.Color.Transparent;
            this.usermode_Lbl.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.usermode_Lbl.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.usermode_Lbl.Location = new System.Drawing.Point(138, 14);
            this.usermode_Lbl.Name = "usermode_Lbl";
            this.usermode_Lbl.Size = new System.Drawing.Size(43, 14);
            this.usermode_Lbl.TabIndex = 11;
            this.usermode_Lbl.Text = "(Latest)";
            // 
            // NotifyIcon
            // 
            this.NotifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
            this.NotifyIcon.BalloonTipText = "Running in background";
            this.NotifyIcon.BalloonTipreplacedle = "SimpleVPN";
            this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
            this.NotifyIcon.Text = "SimpleVPN";
            this.NotifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.NotifyIcon_MouseDoubleClick);
            // 
            // openApplicationToolStripMenuItem
            // 
            this.openApplicationToolStripMenuItem.Name = "openApplicationToolStripMenuItem";
            this.openApplicationToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.openApplicationToolStripMenuItem.Text = "Open Application";
            this.openApplicationToolStripMenuItem.Click += new System.EventHandler(this.openApplicationToolStripMenuItem_Click);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
            this.exitToolStripMenuItem.Text = "Exit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // CMenu
            // 
            this.CMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openApplicationToolStripMenuItem,
            this.exitToolStripMenuItem});
            this.CMenu.Name = "CMenu";
            this.CMenu.Size = new System.Drawing.Size(168, 48);
            // 
            // InfoBtn
            // 
            this.InfoBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.InfoBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.InfoBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.InfoBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.InfoBtn.Location = new System.Drawing.Point(248, 3);
            this.InfoBtn.Name = "InfoBtn";
            this.InfoBtn.Size = new System.Drawing.Size(25, 26);
            this.InfoBtn.TabIndex = 12;
            this.InfoBtn.Text = "?";
            this.InfoBtn.UseVisualStyleBackColor = true;
            this.InfoBtn.Click += new System.EventHandler(this.InfoBtn_Click);
            // 
            // PPTP_rBtn
            // 
            this.PPTP_rBtn.AutoSize = true;
            this.PPTP_rBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.PPTP_rBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.PPTP_rBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.PPTP_rBtn.Location = new System.Drawing.Point(41, 13);
            this.PPTP_rBtn.Name = "PPTP_rBtn";
            this.PPTP_rBtn.Size = new System.Drawing.Size(71, 27);
            this.PPTP_rBtn.TabIndex = 13;
            this.PPTP_rBtn.Text = "PPTP";
            this.PPTP_rBtn.UseVisualStyleBackColor = true;
            this.PPTP_rBtn.MouseClick += new System.Windows.Forms.MouseEventHandler(this.PPTP_rBtn_MouseClick);
            // 
            // ProtocolGrpBox
            // 
            this.ProtocolGrpBox.Controls.Add(this.RecommendedLbl);
            this.ProtocolGrpBox.Controls.Add(this.L2TP_rBtn);
            this.ProtocolGrpBox.Controls.Add(this.PPTP_rBtn);
            this.ProtocolGrpBox.Font = new System.Drawing.Font("Microsoft Tai Le", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ProtocolGrpBox.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.ProtocolGrpBox.Location = new System.Drawing.Point(12, 233);
            this.ProtocolGrpBox.Name = "ProtocolGrpBox";
            this.ProtocolGrpBox.Size = new System.Drawing.Size(308, 46);
            this.ProtocolGrpBox.TabIndex = 14;
            this.ProtocolGrpBox.TabStop = false;
            this.ProtocolGrpBox.Text = "Protocol";
            // 
            // RecommendedLbl
            // 
            this.RecommendedLbl.AutoSize = true;
            this.RecommendedLbl.Font = new System.Drawing.Font("Microsoft Tai Le", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RecommendedLbl.Location = new System.Drawing.Point(104, 22);
            this.RecommendedLbl.Name = "RecommendedLbl";
            this.RecommendedLbl.Size = new System.Drawing.Size(86, 14);
            this.RecommendedLbl.TabIndex = 15;
            this.RecommendedLbl.Text = "(recommended)";
            // 
            // L2TP_rBtn
            // 
            this.L2TP_rBtn.AutoSize = true;
            this.L2TP_rBtn.Cursor = System.Windows.Forms.Cursors.Hand;
            this.L2TP_rBtn.Font = new System.Drawing.Font("Microsoft Tai Le", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.L2TP_rBtn.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(170)))), ((int)(((byte)(80)))));
            this.L2TP_rBtn.Location = new System.Drawing.Point(206, 13);
            this.L2TP_rBtn.Name = "L2TP_rBtn";
            this.L2TP_rBtn.Size = new System.Drawing.Size(68, 27);
            this.L2TP_rBtn.TabIndex = 14;
            this.L2TP_rBtn.Text = "L2TP";
            this.L2TP_rBtn.UseVisualStyleBackColor = true;
            this.L2TP_rBtn.MouseClick += new System.Windows.Forms.MouseEventHandler(this.L2TP_rBtn_MouseClick);
            // 
            // Dashboard
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(27)))), ((int)(((byte)(33)))));
            this.ClientSize = new System.Drawing.Size(332, 380);
            this.ControlBox = false;
            this.Controls.Add(this.ProtocolGrpBox);
            this.Controls.Add(this.InfoBtn);
            this.Controls.Add(this.usermode_Lbl);
            this.Controls.Add(this.statusPicbox);
            this.Controls.Add(this.DisconnectBtn);
            this.Controls.Add(this.ConnectBtn);
            this.Controls.Add(this.CountriesFlgPicBox);
            this.Controls.Add(this.CountriesCmBox);
            this.Controls.Add(this.NameLbl);
            this.Controls.Add(this.SeprLbl);
            this.Controls.Add(this.MiniBtn);
            this.Controls.Add(this.ExitBtn);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "Dashboard";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Load += new System.EventHandler(this.Form1_Load);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseDown);
            ((System.ComponentModel.ISupportInitialize)(this.CountriesFlgPicBox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.statusPicbox)).EndInit();
            this.CMenu.ResumeLayout(false);
            this.ProtocolGrpBox.ResumeLayout(false);
            this.ProtocolGrpBox.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : Form1.Designer.cs
with MIT License
from akalankauk

private void InitializeComponent()
    {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.ofd = new System.Windows.Forms.OpenFileDialog();
            this.bEncrypt = new System.Windows.Forms.Button();
            this.bDecrypt = new System.Windows.Forms.Button();
            this.txStatus = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.filesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.menuStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // ofd
            // 
            this.ofd.Multiselect = true;
            // 
            // bEncrypt
            // 
            this.bEncrypt.Font = new System.Drawing.Font("BatmanForeverAlternate", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.bEncrypt.Location = new System.Drawing.Point(12, 192);
            this.bEncrypt.Name = "bEncrypt";
            this.bEncrypt.Size = new System.Drawing.Size(326, 34);
            this.bEncrypt.TabIndex = 1;
            this.bEncrypt.Text = "🔒 Encrypt My Data";
            this.bEncrypt.UseVisualStyleBackColor = true;
            this.bEncrypt.Click += new System.EventHandler(this.bEncrypt_Click);
            // 
            // bDecrypt
            // 
            this.bDecrypt.Font = new System.Drawing.Font("BatmanForeverAlternate", 15.75F);
            this.bDecrypt.Location = new System.Drawing.Point(12, 232);
            this.bDecrypt.Name = "bDecrypt";
            this.bDecrypt.Size = new System.Drawing.Size(326, 34);
            this.bDecrypt.TabIndex = 2;
            this.bDecrypt.Text = "🔓 Decrypt My Data";
            this.bDecrypt.UseVisualStyleBackColor = true;
            this.bDecrypt.Click += new System.EventHandler(this.bDecrypt_Click);
            // 
            // txStatus
            // 
            this.txStatus.Location = new System.Drawing.Point(12, 24);
            this.txStatus.Multiline = true;
            this.txStatus.Name = "txStatus";
            this.txStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txStatus.Size = new System.Drawing.Size(569, 162);
            this.txStatus.TabIndex = 3;
            this.txStatus.TextChanged += new System.EventHandler(this.txStatus_TextChanged);
            // 
            // button1
            // 
            this.button1.Font = new System.Drawing.Font("BatmanForeverAlternate", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button1.Location = new System.Drawing.Point(12, 284);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(148, 34);
            this.button1.TabIndex = 9;
            this.button1.Text = "User Guide";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.filesToolStripMenuItem,
            this.aboutToolStripMenuItem,
            this.aboutToolStripMenuItem1});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(593, 24);
            this.menuStrip1.TabIndex = 10;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // filesToolStripMenuItem
            // 
            this.filesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.exitToolStripMenuItem});
            this.filesToolStripMenuItem.Name = "filesToolStripMenuItem";
            this.filesToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
            this.filesToolStripMenuItem.Text = "Files";
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.Size = new System.Drawing.Size(86, 20);
            this.aboutToolStripMenuItem.Text = "Source Code";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // aboutToolStripMenuItem1
            // 
            this.aboutToolStripMenuItem1.Name = "aboutToolStripMenuItem1";
            this.aboutToolStripMenuItem1.Size = new System.Drawing.Size(52, 20);
            this.aboutToolStripMenuItem1.Text = "About";
            this.aboutToolStripMenuItem1.Click += new System.EventHandler(this.aboutToolStripMenuItem1_Click);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.exitToolStripMenuItem.Text = "Exit";
            this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.AccessibleDescription = "";
            this.pictureBox1.AccessibleName = "";
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(425, 192);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(129, 126);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 11;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Tag = "";
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(468, 242);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(44, 24);
            this.label1.TabIndex = 12;
            this.label1.Text = "Info";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // Form1
            // 
            this.AccessibleDescription = "";
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Menu;
            this.ClientSize = new System.Drawing.Size(593, 330);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.txStatus);
            this.Controls.Add(this.bDecrypt);
            this.Controls.Add(this.bEncrypt);
            this.Controls.Add(this.menuStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.MaximizeBox = false;
            this.Name = "Form1";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Keep It Secure v1.5";
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

    }

19 Source : MainForm.Designer.cs
with MIT License
from 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 Source : MainForm.Designer.cs
with MIT License
from AlexanderPro

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.miStartStop = new System.Windows.Forms.ToolStripMenuItem();
            this.miSettings = new System.Windows.Forms.ToolStripMenuItem();
            this.miAbout = new System.Windows.Forms.ToolStripMenuItem();
            this.miSeparator = new System.Windows.Forms.ToolStripSeparator();
            this.miExit = new System.Windows.Forms.ToolStripMenuItem();
            this.iconSystemTray = new System.Windows.Forms.NotifyIcon(this.components);
            this.menuSystemTray = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.menuSystemTray.SuspendLayout();
            this.SuspendLayout();
            // 
            // miStartStop
            // 
            this.miStartStop.Image = global::Wlx2Explorer.Properties.Resources.Start;
            this.miStartStop.Name = "miStartStop";
            this.miStartStop.Size = new System.Drawing.Size(125, 22);
            this.miStartStop.Text = "Stop";
            this.miStartStop.Click += new System.EventHandler(this.MenuItemStartStopClick);
            // 
            // miSettings
            // 
            this.miSettings.Name = "miSettings";
            this.miSettings.Size = new System.Drawing.Size(125, 22);
            this.miSettings.Text = "Settings...";
            this.miSettings.Click += new System.EventHandler(this.MenuItemSettingsClick);
            // 
            // miAbout
            // 
            this.miAbout.Name = "miAbout";
            this.miAbout.Size = new System.Drawing.Size(125, 22);
            this.miAbout.Text = "About";
            this.miAbout.Click += new System.EventHandler(this.MenuItemAboutClick);
            // 
            // miSeparator
            // 
            this.miSeparator.Name = "miSeparator";
            this.miSeparator.Size = new System.Drawing.Size(122, 6);
            // 
            // miExit
            // 
            this.miExit.Name = "miExit";
            this.miExit.Size = new System.Drawing.Size(125, 22);
            this.miExit.Text = "Exit";
            this.miExit.Click += new System.EventHandler(this.MenuItemExitClick);
            // 
            // iconSystemTray
            // 
            this.iconSystemTray.ContextMenuStrip = this.menuSystemTray;
            this.iconSystemTray.Icon = ((System.Drawing.Icon)(resources.GetObject("iconSystemTray.Icon")));
            this.iconSystemTray.Visible = true;
            // 
            // menuSystemTray
            // 
            this.menuSystemTray.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.miStartStop,
            this.miSettings,
            this.miAbout,
            this.miSeparator,
            this.miExit});
            this.menuSystemTray.Name = "menuSystemTray";
            this.menuSystemTray.Size = new System.Drawing.Size(126, 98);
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(32, 19);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(32, 19);
            // 
            // toolStripMenuItem3
            // 
            this.toolStripMenuItem3.Name = "toolStripMenuItem3";
            this.toolStripMenuItem3.Size = new System.Drawing.Size(32, 19);
            // 
            // MainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(364, 147);
            this.Name = "MainForm";
            this.Opacity = 0D;
            this.ShowInTaskbar = false;
            this.Text = "Wlx2Explorer";
            this.menuSystemTray.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : SystemTrayMenu.cs
with MIT License
from AlexanderPro

public void Create()
        {
            if (!_created)
            {
                _menuItemAutoStart.Name = "miAutoStart";
                _menuItemAutoStart.Size = new Size(175, 22);
                _menuItemAutoStart.Text = _languageSettings.GetValue("mi_auto_start");
                _menuItemAutoStart.Click += _menuItemAutoStart_Click;

                _menuItemSettings.Name = "miSettings";
                _menuItemSettings.Size = new Size(175, 22);
                _menuItemSettings.Font = new Font(_menuItemSettings.Font.Name, _menuItemSettings.Font.Size, FontStyle.Bold);
                _menuItemSettings.Text = _languageSettings.GetValue("mi_settings");
                _menuItemSettings.Click += _menuItemSettings_Click;

                _menuItemAbout.Name = "miAbout";
                _menuItemAbout.Size = new Size(175, 22);
                _menuItemAbout.Text = _languageSettings.GetValue("mi_about");
                _menuItemAbout.Click += _menuItemAbout_Click;

                _menuItemSeparator1.Name = "miSeparator1";
                _menuItemSeparator1.Size = new Size(172, 6);

                _menuItemSeparator2.Name = "miSeparator2";
                _menuItemSeparator2.Size = new Size(172, 6);

                _menuItemExit.Name = "miExit";
                _menuItemExit.Size = new Size(175, 22);
                _menuItemExit.Text = _languageSettings.GetValue("mi_exit");
                _menuItemExit.Click += _menuItemExit_Click;

                _systemTrayMenu.Items.AddRange(new ToolStripItem[] { _menuItemAutoStart, _menuItemSeparator1, _menuItemSettings, _menuItemAbout, _menuItemSeparator2, _menuItemExit });
                _systemTrayMenu.Name = "systemTrayMenu";
                _systemTrayMenu.Size = new Size(176, 80);

                _icon.ContextMenuStrip = _systemTrayMenu;
                _icon.Icon = Properties.Resources.SmartSystemMenu;
                _icon.Text = replacedemblyUtils.replacedemblyreplacedle;
                _icon.Visible = true;

                _created = true;
            }
        }

19 Source : frmMain.Designer.cs
with MIT License
from AlexeiScherbakov

private void InitializeComponent()
		{
			this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
			this.toolStrip1 = new System.Windows.Forms.ToolStrip();
			this.toolStripLabelOskState = new System.Windows.Forms.ToolStripLabel();
			this.textBox1 = new System.Windows.Forms.TextBox();
			this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
			this.toolStripContainer1.ContentPanel.SuspendLayout();
			this.toolStripContainer1.SuspendLayout();
			this.toolStrip1.SuspendLayout();
			this.SuspendLayout();
			// 
			// toolStripContainer1
			// 
			// 
			// toolStripContainer1.BottomToolStripPanel
			// 
			this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.toolStrip1);
			// 
			// toolStripContainer1.ContentPanel
			// 
			this.toolStripContainer1.ContentPanel.Controls.Add(this.textBox1);
			this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(800, 400);
			this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
			this.toolStripContainer1.Name = "toolStripContainer1";
			this.toolStripContainer1.Size = new System.Drawing.Size(800, 450);
			this.toolStripContainer1.TabIndex = 0;
			this.toolStripContainer1.Text = "toolStripContainer1";
			// 
			// toolStrip1
			// 
			this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
			this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripLabelOskState});
			this.toolStrip1.Location = new System.Drawing.Point(3, 0);
			this.toolStrip1.Name = "toolStrip1";
			this.toolStrip1.Size = new System.Drawing.Size(12, 25);
			this.toolStrip1.TabIndex = 0;
			// 
			// toolStripLabelOskState
			// 
			this.toolStripLabelOskState.Name = "toolStripLabelOskState";
			this.toolStripLabelOskState.Size = new System.Drawing.Size(0, 22);
			// 
			// textBox1
			// 
			this.textBox1.Location = new System.Drawing.Point(68, 48);
			this.textBox1.Name = "textBox1";
			this.textBox1.Size = new System.Drawing.Size(149, 20);
			this.textBox1.TabIndex = 0;
			// 
			// frmMain
			// 
			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.toolStripContainer1);
			this.Name = "frmMain";
			this.Text = "Form1";
			this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
			this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
			this.toolStripContainer1.ContentPanel.ResumeLayout(false);
			this.toolStripContainer1.ContentPanel.PerformLayout();
			this.toolStripContainer1.ResumeLayout(false);
			this.toolStripContainer1.PerformLayout();
			this.toolStrip1.ResumeLayout(false);
			this.toolStrip1.PerformLayout();
			this.ResumeLayout(false);

		}

19 Source : Dialog.Designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
            this.chkUseTabs = new System.Windows.Forms.CheckBox();
            this.btnGenerate = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.updIndentSize = new System.Windows.Forms.NumericUpDown();
            this.lblIndentSize = new System.Windows.Forms.Label();
            this.lstImportList = new System.Windows.Forms.ListBox();
            this.importToolStrip = new System.Windows.Forms.ToolStrip();
            this.toolDelete = new System.Windows.Forms.ToolStripButton();
            this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
            this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
            this.toolImportList = new System.Windows.Forms.ToolStripLabel();
            this.txtNewImport = new System.Windows.Forms.TextBox();
            this.btnAddItem = new System.Windows.Forms.Button();
            this.grpCodeStyle = new System.Windows.Forms.GroupBox();
            this.rbAutomaticProperties = new System.Windows.Forms.RadioButton();
            this.rbNotImplemented = new System.Windows.Forms.RadioButton();
            this.chkUseUnderscoreAndLowercaseInDB = new System.Windows.Forms.CheckBox();
            this.chkDefaultLazyFetching = new System.Windows.Forms.CheckBox();
            this.cboDefaultMapping = new System.Windows.Forms.ComboBox();
            this.lblDefaultMapping = new System.Windows.Forms.Label();
            this.chkGenerateNHibernateMapping = new System.Windows.Forms.CheckBox();
            this.lblSolutionType = new System.Windows.Forms.Label();
            this.cboSolutionType = new System.Windows.Forms.ComboBox();
            this.cboLanguage = new System.Windows.Forms.ComboBox();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this.btnBrowse = new System.Windows.Forms.Button();
            this.txtDestination = new System.Windows.Forms.TextBox();
            this.lblDestination = new System.Windows.Forms.Label();
            this.gpbNHibernate = new System.Windows.Forms.GroupBox();
            this.lblDefaultIdGenerator = new System.Windows.Forms.Label();
            this.cboDefaultIdGenerator = new System.Windows.Forms.ComboBox();
            this.lblUsePrefixTables = new System.Windows.Forms.Label();
            this.txtTextPrefix = new System.Windows.Forms.TextBox();
            this.chkGenerateCodeFromTemplates = new System.Windows.Forms.CheckBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.chkGenerateSqlCode = new System.Windows.Forms.CheckBox();
            this.cboSqlToServerType = new System.Windows.Forms.ComboBox();
            this.lblTargetFrameworkVersion = new System.Windows.Forms.Label();
            this.cboTargetFrameworkVersion = new System.Windows.Forms.ComboBox();
            ((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).BeginInit();
            this.importToolStrip.SuspendLayout();
            this.grpCodeStyle.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            this.gpbNHibernate.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // chkUseTabs
            // 
            this.chkUseTabs.AutoSize = true;
            this.chkUseTabs.Location = new System.Drawing.Point(13, 20);
            this.chkUseTabs.Name = "chkUseTabs";
            this.chkUseTabs.Size = new System.Drawing.Size(120, 17);
            this.chkUseTabs.TabIndex = 0;
            this.chkUseTabs.Text = "Use tabs for indents";
            this.chkUseTabs.UseVisualStyleBackColor = true;
            this.chkUseTabs.CheckedChanged += new System.EventHandler(this.chkUseTabs_CheckedChanged);
            // 
            // btnGenerate
            // 
            this.btnGenerate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnGenerate.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnGenerate.Location = new System.Drawing.Point(426, 413);
            this.btnGenerate.Name = "btnGenerate";
            this.btnGenerate.Size = new System.Drawing.Size(75, 23);
            this.btnGenerate.TabIndex = 10;
            this.btnGenerate.Text = "Generate";
            this.btnGenerate.UseVisualStyleBackColor = true;
            this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Location = new System.Drawing.Point(507, 413);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 11;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            // 
            // updIndentSize
            // 
            this.updIndentSize.Location = new System.Drawing.Point(13, 56);
            this.updIndentSize.Maximum = new decimal(new int[] {
            16,
            0,
            0,
            0});
            this.updIndentSize.Name = "updIndentSize";
            this.updIndentSize.Size = new System.Drawing.Size(82, 20);
            this.updIndentSize.TabIndex = 2;
            this.updIndentSize.Value = new decimal(new int[] {
            4,
            0,
            0,
            0});
            // 
            // lblIndentSize
            // 
            this.lblIndentSize.AutoSize = true;
            this.lblIndentSize.Enabled = false;
            this.lblIndentSize.Location = new System.Drawing.Point(10, 40);
            this.lblIndentSize.Name = "lblIndentSize";
            this.lblIndentSize.Size = new System.Drawing.Size(61, 13);
            this.lblIndentSize.TabIndex = 1;
            this.lblIndentSize.Text = "Indent size:";
            // 
            // lstImportList
            // 
            this.lstImportList.FormattingEnabled = true;
            this.lstImportList.Location = new System.Drawing.Point(12, 90);
            this.lstImportList.Name = "lstImportList";
            this.lstImportList.Size = new System.Drawing.Size(285, 186);
            this.lstImportList.TabIndex = 4;
            this.lstImportList.SelectedValueChanged += new System.EventHandler(this.lstImportList_SelectedValueChanged);
            this.lstImportList.Leave += new System.EventHandler(this.lstImportList_Leave);
            // 
            // importToolStrip
            // 
            this.importToolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.importToolStrip.AutoSize = false;
            this.importToolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.importToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.importToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolDelete,
            this.toolMoveDown,
            this.toolMoveUp,
            this.toolImportList});
            this.importToolStrip.Location = new System.Drawing.Point(75, 62);
            this.importToolStrip.Name = "importToolStrip";
            this.importToolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.importToolStrip.Size = new System.Drawing.Size(222, 25);
            this.importToolStrip.TabIndex = 3;
            this.importToolStrip.Text = "toolStrip1";
            // 
            // toolDelete
            // 
            this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolDelete.Enabled = false;
            this.toolDelete.Image = global::NClreplaced.CodeGenerator.Properties.Resources.Delete;
            this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolDelete.Name = "toolDelete";
            this.toolDelete.Size = new System.Drawing.Size(23, 22);
            this.toolDelete.Text = "Delete";
            this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
            // 
            // toolMoveDown
            // 
            this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolMoveDown.Enabled = false;
            this.toolMoveDown.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveDown;
            this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolMoveDown.Name = "toolMoveDown";
            this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
            this.toolMoveDown.Text = "Move Down";
            this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
            // 
            // toolMoveUp
            // 
            this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolMoveUp.Enabled = false;
            this.toolMoveUp.Image = global::NClreplaced.CodeGenerator.Properties.Resources.MoveUp;
            this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolMoveUp.Name = "toolMoveUp";
            this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
            this.toolMoveUp.Text = "Move Up";
            this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
            // 
            // toolImportList
            // 
            this.toolImportList.Name = "toolImportList";
            this.toolImportList.Size = new System.Drawing.Size(61, 22);
            this.toolImportList.Text = "Import list";
            // 
            // txtNewImport
            // 
            this.txtNewImport.Location = new System.Drawing.Point(12, 284);
            this.txtNewImport.Name = "txtNewImport";
            this.txtNewImport.Size = new System.Drawing.Size(204, 20);
            this.txtNewImport.TabIndex = 5;
            this.txtNewImport.TextChanged += new System.EventHandler(this.txtNewImport_TextChanged);
            this.txtNewImport.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNewImport_KeyDown);
            // 
            // btnAddItem
            // 
            this.btnAddItem.Enabled = false;
            this.btnAddItem.Location = new System.Drawing.Point(222, 282);
            this.btnAddItem.Name = "btnAddItem";
            this.btnAddItem.Size = new System.Drawing.Size(75, 23);
            this.btnAddItem.TabIndex = 6;
            this.btnAddItem.Text = "Add item";
            this.btnAddItem.UseVisualStyleBackColor = true;
            this.btnAddItem.Click += new System.EventHandler(this.btnAddItem_Click);
            // 
            // grpCodeStyle
            // 
            this.grpCodeStyle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.grpCodeStyle.Controls.Add(this.rbAutomaticProperties);
            this.grpCodeStyle.Controls.Add(this.rbNotImplemented);
            this.grpCodeStyle.Controls.Add(this.lblIndentSize);
            this.grpCodeStyle.Controls.Add(this.updIndentSize);
            this.grpCodeStyle.Controls.Add(this.chkUseTabs);
            this.grpCodeStyle.Location = new System.Drawing.Point(311, 110);
            this.grpCodeStyle.Name = "grpCodeStyle";
            this.grpCodeStyle.Size = new System.Drawing.Size(271, 127);
            this.grpCodeStyle.TabIndex = 9;
            this.grpCodeStyle.TabStop = false;
            this.grpCodeStyle.Text = "Code style";
            // 
            // rbAutomaticProperties
            // 
            this.rbAutomaticProperties.AutoSize = true;
            this.rbAutomaticProperties.Location = new System.Drawing.Point(13, 105);
            this.rbAutomaticProperties.Name = "rbAutomaticProperties";
            this.rbAutomaticProperties.Size = new System.Drawing.Size(121, 17);
            this.rbAutomaticProperties.TabIndex = 5;
            this.rbAutomaticProperties.Text = "Automatic properties";
            this.rbAutomaticProperties.UseVisualStyleBackColor = true;
            // 
            // rbNotImplemented
            // 
            this.rbNotImplemented.AutoSize = true;
            this.rbNotImplemented.Location = new System.Drawing.Point(13, 82);
            this.rbNotImplemented.Name = "rbNotImplemented";
            this.rbNotImplemented.Size = new System.Drawing.Size(242, 17);
            this.rbNotImplemented.TabIndex = 4;
            this.rbNotImplemented.Text = "Fill methods with \'Not implemented\' exceptions";
            this.rbNotImplemented.UseVisualStyleBackColor = true;
            // 
            // chkUseUnderscoreAndLowercaseInDB
            // 
            this.chkUseUnderscoreAndLowercaseInDB.AutoSize = true;
            this.chkUseUnderscoreAndLowercaseInDB.Location = new System.Drawing.Point(13, 105);
            this.chkUseUnderscoreAndLowercaseInDB.Name = "chkUseUnderscoreAndLowercaseInDB";
            this.chkUseUnderscoreAndLowercaseInDB.Size = new System.Drawing.Size(252, 30);
            this.chkUseUnderscoreAndLowercaseInDB.TabIndex = 10;
            this.chkUseUnderscoreAndLowercaseInDB.Text = "Use underscore and lowercase in the database \r\n(or unchanged)";
            this.chkUseUnderscoreAndLowercaseInDB.UseVisualStyleBackColor = true;
            // 
            // chkDefaultLazyFetching
            // 
            this.chkDefaultLazyFetching.AutoSize = true;
            this.chkDefaultLazyFetching.Location = new System.Drawing.Point(13, 82);
            this.chkDefaultLazyFetching.Name = "chkDefaultLazyFetching";
            this.chkDefaultLazyFetching.Size = new System.Drawing.Size(122, 17);
            this.chkDefaultLazyFetching.TabIndex = 9;
            this.chkDefaultLazyFetching.Text = "Default lazy fetching";
            this.chkDefaultLazyFetching.UseVisualStyleBackColor = true;
            // 
            // cboDefaultMapping
            // 
            this.cboDefaultMapping.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDefaultMapping.FormattingEnabled = true;
            this.cboDefaultMapping.Location = new System.Drawing.Point(13, 55);
            this.cboDefaultMapping.Name = "cboDefaultMapping";
            this.cboDefaultMapping.Size = new System.Drawing.Size(120, 21);
            this.cboDefaultMapping.TabIndex = 8;
            // 
            // lblDefaultMapping
            // 
            this.lblDefaultMapping.AutoSize = true;
            this.lblDefaultMapping.Location = new System.Drawing.Point(10, 39);
            this.lblDefaultMapping.Name = "lblDefaultMapping";
            this.lblDefaultMapping.Size = new System.Drawing.Size(87, 13);
            this.lblDefaultMapping.TabIndex = 7;
            this.lblDefaultMapping.Text = "Default mapping:";
            // 
            // chkGenerateNHibernateMapping
            // 
            this.chkGenerateNHibernateMapping.AutoSize = true;
            this.chkGenerateNHibernateMapping.Location = new System.Drawing.Point(13, 19);
            this.chkGenerateNHibernateMapping.Name = "chkGenerateNHibernateMapping";
            this.chkGenerateNHibernateMapping.Size = new System.Drawing.Size(170, 17);
            this.chkGenerateNHibernateMapping.TabIndex = 6;
            this.chkGenerateNHibernateMapping.Text = "Generate NHibernate mapping";
            this.chkGenerateNHibernateMapping.UseVisualStyleBackColor = true;
            // 
            // lblSolutionType
            // 
            this.lblSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.lblSolutionType.AutoSize = true;
            this.lblSolutionType.Location = new System.Drawing.Point(308, 67);
            this.lblSolutionType.Name = "lblSolutionType";
            this.lblSolutionType.Size = new System.Drawing.Size(101, 13);
            this.lblSolutionType.TabIndex = 12;
            this.lblSolutionType.Text = "Type of solution file:";
            // 
            // cboSolutionType
            // 
            this.cboSolutionType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.cboSolutionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSolutionType.FormattingEnabled = true;
            this.cboSolutionType.Items.AddRange(new object[] {
            "Visual Studio 2005",
            "Visual Studio 2008"});
            this.cboSolutionType.Location = new System.Drawing.Point(311, 83);
            this.cboSolutionType.Name = "cboSolutionType";
            this.cboSolutionType.Size = new System.Drawing.Size(133, 21);
            this.cboSolutionType.TabIndex = 13;
            // 
            // cboLanguage
            // 
            this.cboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboLanguage.FormattingEnabled = true;
            this.cboLanguage.Items.AddRange(new object[] {
            "C#",
            "Java"});
            this.cboLanguage.Location = new System.Drawing.Point(12, 64);
            this.cboLanguage.Name = "cboLanguage";
            this.cboLanguage.Size = new System.Drawing.Size(60, 21);
            this.cboLanguage.TabIndex = 14;
            this.cboLanguage.SelectedIndexChanged += new System.EventHandler(this.cboLanguage_SelectedIndexChanged);
            // 
            // tableLayoutPanel1
            // 
            this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.tableLayoutPanel1.ColumnCount = 3;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this.btnBrowse, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.txtDestination, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.lblDestination, 0, 0);
            this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 12);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 1;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 37F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(570, 37);
            this.tableLayoutPanel1.TabIndex = 15;
            // 
            // btnBrowse
            // 
            this.btnBrowse.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.btnBrowse.Location = new System.Drawing.Point(495, 7);
            this.btnBrowse.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
            this.btnBrowse.Name = "btnBrowse";
            this.btnBrowse.Size = new System.Drawing.Size(75, 23);
            this.btnBrowse.TabIndex = 6;
            this.btnBrowse.Text = "Browse...";
            this.btnBrowse.UseVisualStyleBackColor = true;
            this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
            // 
            // txtDestination
            // 
            this.txtDestination.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDestination.Location = new System.Drawing.Point(66, 8);
            this.txtDestination.Name = "txtDestination";
            this.txtDestination.Size = new System.Drawing.Size(423, 20);
            this.txtDestination.TabIndex = 5;
            // 
            // lblDestination
            // 
            this.lblDestination.Anchor = System.Windows.Forms.AnchorStyles.None;
            this.lblDestination.AutoSize = true;
            this.lblDestination.Location = new System.Drawing.Point(0, 11);
            this.lblDestination.Margin = new System.Windows.Forms.Padding(0, 0, 0, 1);
            this.lblDestination.Name = "lblDestination";
            this.lblDestination.Size = new System.Drawing.Size(63, 13);
            this.lblDestination.TabIndex = 4;
            this.lblDestination.Text = "Destination:";
            // 
            // gpbNHibernate
            // 
            this.gpbNHibernate.Controls.Add(this.txtTextPrefix);
            this.gpbNHibernate.Controls.Add(this.lblDefaultIdGenerator);
            this.gpbNHibernate.Controls.Add(this.cboDefaultIdGenerator);
            this.gpbNHibernate.Controls.Add(this.chkGenerateNHibernateMapping);
            this.gpbNHibernate.Controls.Add(this.lblDefaultMapping);
            this.gpbNHibernate.Controls.Add(this.cboDefaultMapping);
            this.gpbNHibernate.Controls.Add(this.chkDefaultLazyFetching);
            this.gpbNHibernate.Controls.Add(this.chkUseUnderscoreAndLowercaseInDB);
            this.gpbNHibernate.Controls.Add(this.lblUsePrefixTables);
            this.gpbNHibernate.Location = new System.Drawing.Point(311, 242);
            this.gpbNHibernate.Name = "gpbNHibernate";
            this.gpbNHibernate.Size = new System.Drawing.Size(271, 164);
            this.gpbNHibernate.TabIndex = 11;
            this.gpbNHibernate.TabStop = false;
            this.gpbNHibernate.Text = "NHibernate";
            // 
            // lblDefaultIdGenerator
            // 
            this.lblDefaultIdGenerator.AutoSize = true;
            this.lblDefaultIdGenerator.Location = new System.Drawing.Point(136, 39);
            this.lblDefaultIdGenerator.Name = "lblDefaultIdGenerator";
            this.lblDefaultIdGenerator.Size = new System.Drawing.Size(103, 13);
            this.lblDefaultIdGenerator.TabIndex = 16;
            this.lblDefaultIdGenerator.Text = "Default id generator:";
            // 
            // cboDefaultIdGenerator
            // 
            this.cboDefaultIdGenerator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDefaultIdGenerator.FormattingEnabled = true;
            this.cboDefaultIdGenerator.Location = new System.Drawing.Point(139, 55);
            this.cboDefaultIdGenerator.Name = "cboDefaultIdGenerator";
            this.cboDefaultIdGenerator.Size = new System.Drawing.Size(121, 21);
            this.cboDefaultIdGenerator.TabIndex = 15;
            // 
            // lblUsePrefixTables
            // 
            this.lblUsePrefixTables.AutoSize = true;
            this.lblUsePrefixTables.Location = new System.Drawing.Point(10, 142);
            this.lblUsePrefixTables.Name = "lblUsePrefixTables";
            this.lblUsePrefixTables.Size = new System.Drawing.Size(193, 13);
            this.lblUsePrefixTables.TabIndex = 14;
            this.lblUsePrefixTables.Text = "Use prefix in the tables (empty to none):";
            // 
            // txtTextPrefix
            // 
            this.txtTextPrefix.Location = new System.Drawing.Point(200, 139);
            this.txtTextPrefix.Name = "txtTextPrefix";
            this.txtTextPrefix.Size = new System.Drawing.Size(65, 20);
            this.txtTextPrefix.TabIndex = 13;
            this.txtTextPrefix.Text = "pfx_";
            // 
            // chkGenerateCodeFromTemplates
            // 
            this.chkGenerateCodeFromTemplates.AutoSize = true;
            this.chkGenerateCodeFromTemplates.Location = new System.Drawing.Point(13, 19);
            this.chkGenerateCodeFromTemplates.Name = "chkGenerateCodeFromTemplates";
            this.chkGenerateCodeFromTemplates.Size = new System.Drawing.Size(168, 17);
            this.chkGenerateCodeFromTemplates.TabIndex = 16;
            this.chkGenerateCodeFromTemplates.Text = "Generate code from templates";
            this.chkGenerateCodeFromTemplates.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.chkGenerateCodeFromTemplates);
            this.groupBox1.Location = new System.Drawing.Point(12, 361);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(285, 45);
            this.groupBox1.TabIndex = 18;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Templates";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.chkGenerateSqlCode);
            this.groupBox2.Controls.Add(this.cboSqlToServerType);
            this.groupBox2.Location = new System.Drawing.Point(12, 310);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(285, 45);
            this.groupBox2.TabIndex = 19;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "SQL";
            // 
            // chkGenerateSqlCode
            // 
            this.chkGenerateSqlCode.AutoSize = true;
            this.chkGenerateSqlCode.Location = new System.Drawing.Point(13, 19);
            this.chkGenerateSqlCode.Name = "chkGenerateSqlCode";
            this.chkGenerateSqlCode.Size = new System.Drawing.Size(136, 17);
            this.chkGenerateSqlCode.TabIndex = 2;
            this.chkGenerateSqlCode.Text = "Generate SQL code to:";
            this.chkGenerateSqlCode.UseVisualStyleBackColor = true;
            // 
            // cboSqlToServerType
            // 
            this.cboSqlToServerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSqlToServerType.FormattingEnabled = true;
            this.cboSqlToServerType.Location = new System.Drawing.Point(158, 17);
            this.cboSqlToServerType.Name = "cboSqlToServerType";
            this.cboSqlToServerType.Size = new System.Drawing.Size(121, 21);
            this.cboSqlToServerType.TabIndex = 1;
            // 
            // lblTargetFrameworkVersion
            // 
            this.lblTargetFrameworkVersion.AutoSize = true;
            this.lblTargetFrameworkVersion.Location = new System.Drawing.Point(447, 67);
            this.lblTargetFrameworkVersion.Name = "lblTargetFrameworkVersion";
            this.lblTargetFrameworkVersion.Size = new System.Drawing.Size(130, 13);
            this.lblTargetFrameworkVersion.TabIndex = 20;
            this.lblTargetFrameworkVersion.Text = "Target framework version:";
            // 
            // cboTargetFrameworkVersion
            // 
            this.cboTargetFrameworkVersion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTargetFrameworkVersion.FormattingEnabled = true;
            this.cboTargetFrameworkVersion.Location = new System.Drawing.Point(450, 83);
            this.cboTargetFrameworkVersion.Name = "cboTargetFrameworkVersion";
            this.cboTargetFrameworkVersion.Size = new System.Drawing.Size(132, 21);
            this.cboTargetFrameworkVersion.TabIndex = 21;
            // 
            // Dialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(594, 451);
            this.Controls.Add(this.cboTargetFrameworkVersion);
            this.Controls.Add(this.lblTargetFrameworkVersion);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this.cboLanguage);
            this.Controls.Add(this.cboSolutionType);
            this.Controls.Add(this.lblSolutionType);
            this.Controls.Add(this.gpbNHibernate);
            this.Controls.Add(this.grpCodeStyle);
            this.Controls.Add(this.btnAddItem);
            this.Controls.Add(this.txtNewImport);
            this.Controls.Add(this.importToolStrip);
            this.Controls.Add(this.lstImportList);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.btnGenerate);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(600, 309);
            this.Name = "Dialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Code Generation";
            ((System.ComponentModel.ISupportInitialize)(this.updIndentSize)).EndInit();
            this.importToolStrip.ResumeLayout(false);
            this.importToolStrip.PerformLayout();
            this.grpCodeStyle.ResumeLayout(false);
            this.grpCodeStyle.PerformLayout();
            this.tableLayoutPanel1.ResumeLayout(false);
            this.tableLayoutPanel1.PerformLayout();
            this.gpbNHibernate.ResumeLayout(false);
            this.gpbNHibernate.PerformLayout();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}

19 Source : BlankContextMenu.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitMenuItems()
		{
			mnuAddNewElement = new ToolStripMenuItem(Strings.MenuNew, Resources.NewEnreplacedy);
			mnuNewClreplaced = new ToolStripMenuItem(Strings.MenuClreplaced, Resources.Clreplaced, mnuNewClreplaced_Click);
			mnuNewStructure = new ToolStripMenuItem(Strings.MenuStruct, Resources.Structure, mnuNewStructure_Click);
			mnuNewInterface = new ToolStripMenuItem(Strings.MenuInterface, Resources.Interface32, mnuNewInterface_Click);
			mnuNewEnum = new ToolStripMenuItem(Strings.MenuEnum, Resources.Enum, mnuNewEnum_Click);
			mnuNewDelegate = new ToolStripMenuItem(Strings.MenuDelegate, Resources.Delegate, mnuNewDelegate_Click);
			mnuNewComment = new ToolStripMenuItem(Strings.MenuComment, Resources.Comment, mnuNewComment_Click);
			mnuNewreplacedociation = new ToolStripMenuItem(Strings.Menureplacedociation, Resources.replacedociation, mnuNewreplacedociation_Click);
			mnuNewComposition = new ToolStripMenuItem(Strings.MenuComposition, Resources.Composition, mnuNewComposition_Click);
			mnuNewAggregation = new ToolStripMenuItem(Strings.MenuAggregation, Resources.Aggregation, mnuNewAggregation_Click);
			mnuNewGeneralization = new ToolStripMenuItem(Strings.MenuGeneralization, Resources.Generalization, mnuNewGeneralization_Click);
			mnuNewRealization = new ToolStripMenuItem(Strings.MenuRealization, Resources.Realization, mnuNewRealization_Click);
			mnuNewDependency = new ToolStripMenuItem(Strings.MenuDependency, Resources.Dependency, mnuNewDependency_Click);
			mnuNewNesting = new ToolStripMenuItem(Strings.MenuNesting, Resources.Nesting, mnuNewNesting_Click);
			mnuNewCommentRelationship = new ToolStripMenuItem(Strings.MenuCommentRelationship, Resources.CommentRel, mnuNewCommentRelationship_Click);

			mnuMembersFormat = new ToolStripMenuItem(Strings.MenuMembersFormat, null);
			mnuShowType = new ToolStripMenuItem(Strings.MenuType, null);
			mnuShowType.CheckedChanged += mnuShowType_CheckedChanged;
			mnuShowType.CheckOnClick = true;
			mnuShowParameters = new ToolStripMenuItem(Strings.MenuParameters, null);
			mnuShowParameters.CheckedChanged += mnuShowParameters_CheckedChanged;
			mnuShowParameters.CheckOnClick = true;
			mnuShowParameterNames = new ToolStripMenuItem(Strings.MenuParameterNames, null);
			mnuShowParameterNames.CheckedChanged += mnuShowParameterNames_CheckedChanged;
			mnuShowParameterNames.CheckOnClick = true;
			mnuShowInitialValue = new ToolStripMenuItem(Strings.MenuInitialValue, null);
			mnuShowInitialValue.CheckedChanged += mnuShowInitialValue_CheckedChanged;
			mnuShowInitialValue.CheckOnClick = true;

			mnuPaste = new ToolStripMenuItem(Strings.MenuPaste, Resources.Paste, mnuPaste_Click);
			mnuSaveAsImage = new ToolStripMenuItem(Strings.MenuSaveAsImage, Resources.Image, mnuSaveAsImage_Click);
			mnuSelectAll = new ToolStripMenuItem(Strings.MenuSelectAll, null, mnuSelectAll_Click);

			mnuAddNewElement.DropDownItems.AddRange(new ToolStripItem[] {
				mnuNewClreplaced,
				mnuNewStructure,
				mnuNewInterface,
				mnuNewEnum,
				mnuNewDelegate,
				mnuNewComment,
				new ToolStripSeparator(),
				mnuNewreplacedociation,
				mnuNewComposition,
				mnuNewAggregation,
				mnuNewGeneralization,
				mnuNewRealization,
				mnuNewDependency,
				mnuNewNesting,
				mnuNewCommentRelationship
			});
			mnuMembersFormat.DropDownItems.AddRange(new ToolStripItem[] {
				mnuShowType,
				mnuShowParameters,
				mnuShowParameterNames,
				mnuShowInitialValue
			});
			MenuList.AddRange(new ToolStripItem[] {
				mnuAddNewElement,
				mnuMembersFormat,
				new ToolStripSeparator(),
				mnuPaste,
				mnuSaveAsImage,
				mnuSelectAll
			});
		}

19 Source : ListDialog.Designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.lsreplacedems = new System.Windows.Forms.ListView();
			this.value = new System.Windows.Forms.ColumnHeader();
			this.txreplacedem = new System.Windows.Forms.TextBox();
			this.toolStrip1 = new System.Windows.Forms.ToolStrip();
			this.toolDelete = new System.Windows.Forms.ToolStripButton();
			this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
			this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
			this.btnAccept = new System.Windows.Forms.Button();
			this.lblItemCaption = new System.Windows.Forms.Label();
			this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.btnClose = new System.Windows.Forms.Button();
			this.toolStrip1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize) (this.errorProvider)).BeginInit();
			this.SuspendLayout();
			// 
			// lsreplacedems
			// 
			this.lsreplacedems.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.lsreplacedems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.value});
			this.lsreplacedems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.lsreplacedems.HideSelection = false;
			this.lsreplacedems.Location = new System.Drawing.Point(12, 83);
			this.lsreplacedems.MultiSelect = false;
			this.lsreplacedems.Name = "lsreplacedems";
			this.lsreplacedems.Size = new System.Drawing.Size(268, 199);
			this.lsreplacedems.TabIndex = 4;
			this.lsreplacedems.UseCompatibleStateImageBehavior = false;
			this.lsreplacedems.View = System.Windows.Forms.View.Details;
			this.lsreplacedems.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lsreplacedems_ItemSelectionChanged);
			this.lsreplacedems.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lsreplacedems_KeyDown);
			// 
			// value
			// 
			this.value.Text = "Item";
			this.value.Width = 248;
			// 
			// txreplacedem
			// 
			this.txreplacedem.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.txreplacedem.Location = new System.Drawing.Point(12, 25);
			this.txreplacedem.Name = "txreplacedem";
			this.txreplacedem.Size = new System.Drawing.Size(187, 20);
			this.txreplacedem.TabIndex = 1;
			this.txreplacedem.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txreplacedem_KeyDown);
			// 
			// toolStrip1
			// 
			this.toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.toolStrip1.AutoSize = false;
			this.toolStrip1.Dock = System.Windows.Forms.DockStyle.None;
			this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolDelete,
            this.toolMoveDown,
            this.toolMoveUp});
			this.toolStrip1.Location = new System.Drawing.Point(12, 60);
			this.toolStrip1.Name = "toolStrip1";
			this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
			this.toolStrip1.Size = new System.Drawing.Size(268, 25);
			this.toolStrip1.TabIndex = 3;
			this.toolStrip1.Text = "toolStrip1";
			// 
			// toolDelete
			// 
			this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolDelete.Enabled = false;
			this.toolDelete.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delete;
			this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolDelete.Name = "toolDelete";
			this.toolDelete.Size = new System.Drawing.Size(23, 22);
			this.toolDelete.Text = "Delete";
			this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
			// 
			// toolMoveDown
			// 
			this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolMoveDown.Enabled = false;
			this.toolMoveDown.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveDown;
			this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolMoveDown.Name = "toolMoveDown";
			this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
			this.toolMoveDown.Text = "Move Down";
			this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
			// 
			// toolMoveUp
			// 
			this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolMoveUp.Enabled = false;
			this.toolMoveUp.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveUp;
			this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolMoveUp.Name = "toolMoveUp";
			this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
			this.toolMoveUp.Text = "Move Up";
			this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
			// 
			// btnAccept
			// 
			this.btnAccept.Anchor = ((System.Windows.Forms.AnchorStyles) ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnAccept.CausesValidation = false;
			this.btnAccept.Location = new System.Drawing.Point(218, 24);
			this.btnAccept.Name = "btnAccept";
			this.btnAccept.Size = new System.Drawing.Size(62, 21);
			this.btnAccept.TabIndex = 2;
			this.btnAccept.Text = "Add item";
			this.btnAccept.UseVisualStyleBackColor = true;
			this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click);
			// 
			// lblItemCaption
			// 
			this.lblItemCaption.AutoSize = true;
			this.lblItemCaption.Location = new System.Drawing.Point(9, 9);
			this.lblItemCaption.Name = "lblItemCaption";
			this.lblItemCaption.Size = new System.Drawing.Size(74, 13);
			this.lblItemCaption.TabIndex = 0;
			this.lblItemCaption.Text = "Add new item:";
			// 
			// errorProvider
			// 
			this.errorProvider.ContainerControl = this;
			// 
			// 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(205, 288);
			this.btnClose.Name = "btnClose";
			this.btnClose.Size = new System.Drawing.Size(75, 23);
			this.btnClose.TabIndex = 5;
			this.btnClose.Text = "Close";
			this.btnClose.UseVisualStyleBackColor = true;
			this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
			// 
			// ListDialog
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.btnClose;
			this.ClientSize = new System.Drawing.Size(292, 323);
			this.Controls.Add(this.lsreplacedems);
			this.Controls.Add(this.btnClose);
			this.Controls.Add(this.lblItemCaption);
			this.Controls.Add(this.btnAccept);
			this.Controls.Add(this.toolStrip1);
			this.Controls.Add(this.txreplacedem);
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.MinimumSize = new System.Drawing.Size(300, 350);
			this.Name = "ListDialog";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.toolStrip1.ResumeLayout(false);
			this.toolStrip1.PerformLayout();
			((System.ComponentModel.ISupportInitialize) (this.errorProvider)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

19 Source : MembersDialog.designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
            this.txtSyntax = new System.Windows.Forms.TextBox();
            this.lblSyntax = new System.Windows.Forms.Label();
            this.lblName = new System.Windows.Forms.Label();
            this.txtName = new System.Windows.Forms.TextBox();
            this.lblType = new System.Windows.Forms.Label();
            this.lblAccess = new System.Windows.Forms.Label();
            this.cboAccess = new System.Windows.Forms.ComboBox();
            this.txtInitialValue = new System.Windows.Forms.TextBox();
            this.lblInitValue = new System.Windows.Forms.Label();
            this.lstMembers = new System.Windows.Forms.ListView();
            this.icon = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.type = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.access = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.modifier = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.cboType = new System.Windows.Forms.ComboBox();
            this.btnClose = new System.Windows.Forms.Button();
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.toolNewField = new System.Windows.Forms.ToolStripButton();
            this.toolNewMethod = new System.Windows.Forms.ToolStripButton();
            this.toolNewConstructor = new System.Windows.Forms.ToolStripButton();
            this.toolNewDestructor = new System.Windows.Forms.ToolStripButton();
            this.toolNewProperty = new System.Windows.Forms.ToolStripButton();
            this.toolNewEvent = new System.Windows.Forms.ToolStripButton();
            this.toolDelete = new System.Windows.Forms.ToolStripButton();
            this.toolSepMoving = new System.Windows.Forms.ToolStripSeparator();
            this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
            this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
            this.toolSepSorting = new System.Windows.Forms.ToolStripSeparator();
            this.toolSortByName = new System.Windows.Forms.ToolStripButton();
            this.toolSortByAccess = new System.Windows.Forms.ToolStripButton();
            this.toolSortByKind = new System.Windows.Forms.ToolStripButton();
            this.toolSepAddNew = new System.Windows.Forms.ToolStripSeparator();
            this.toolOverrideList = new System.Windows.Forms.ToolStripButton();
            this.toolImplementList = new System.Windows.Forms.ToolStripButton();
            this.grpFieldModifiers = new System.Windows.Forms.GroupBox();
            this.chkVolatile = new System.Windows.Forms.CheckBox();
            this.chkFieldHider = new System.Windows.Forms.CheckBox();
            this.chkConstant = new System.Windows.Forms.CheckBox();
            this.chkReadonly = new System.Windows.Forms.CheckBox();
            this.chkFieldStatic = new System.Windows.Forms.CheckBox();
            this.chkOperationStatic = new System.Windows.Forms.CheckBox();
            this.chkVirtual = new System.Windows.Forms.CheckBox();
            this.chkAbstract = new System.Windows.Forms.CheckBox();
            this.chkOverride = new System.Windows.Forms.CheckBox();
            this.chkSealed = new System.Windows.Forms.CheckBox();
            this.chkOperationHider = new System.Windows.Forms.CheckBox();
            this.grpOperationModifiers = new System.Windows.Forms.GroupBox();
            this.lblNHMColumnName = new System.Windows.Forms.Label();
            this.txtNHMColumnName = new System.Windows.Forms.TextBox();
            this.chkIsPrimaryKey = new System.Windows.Forms.CheckBox();
            this.chkIsNotNull = new System.Windows.Forms.CheckBox();
            this.chkIsUnique = new System.Windows.Forms.CheckBox();
            this.lblForeignKey = new System.Windows.Forms.Label();
            this.cboForeignKey = new System.Windows.Forms.ComboBox();
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
            this.toolStrip.SuspendLayout();
            this.grpFieldModifiers.SuspendLayout();
            this.grpOperationModifiers.SuspendLayout();
            this.SuspendLayout();
            // 
            // errorProvider
            // 
            this.errorProvider.ContainerControl = this;
            // 
            // txtSyntax
            // 
            this.txtSyntax.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSyntax.Location = new System.Drawing.Point(71, 12);
            this.txtSyntax.Name = "txtSyntax";
            this.txtSyntax.Size = new System.Drawing.Size(367, 20);
            this.txtSyntax.TabIndex = 0;
            this.txtSyntax.Validating += new System.ComponentModel.CancelEventHandler(this.txtSyntax_Validating);
            // 
            // lblSyntax
            // 
            this.lblSyntax.Location = new System.Drawing.Point(0, 15);
            this.lblSyntax.Name = "lblSyntax";
            this.lblSyntax.Size = new System.Drawing.Size(65, 13);
            this.lblSyntax.TabIndex = 10;
            this.lblSyntax.Text = "Syntax";
            this.lblSyntax.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblName
            // 
            this.lblName.Location = new System.Drawing.Point(0, 47);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(65, 13);
            this.lblName.TabIndex = 11;
            this.lblName.Text = "Name";
            this.lblName.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // txtName
            // 
            this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtName.Location = new System.Drawing.Point(71, 44);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(187, 20);
            this.txtName.TabIndex = 1;
            this.txtName.Validating += new System.ComponentModel.CancelEventHandler(this.txtName_Validating);
            // 
            // lblType
            // 
            this.lblType.Location = new System.Drawing.Point(0, 77);
            this.lblType.Name = "lblType";
            this.lblType.Size = new System.Drawing.Size(65, 13);
            this.lblType.TabIndex = 12;
            this.lblType.Text = "Type";
            this.lblType.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // lblAccess
            // 
            this.lblAccess.Location = new System.Drawing.Point(0, 107);
            this.lblAccess.Name = "lblAccess";
            this.lblAccess.Size = new System.Drawing.Size(65, 13);
            this.lblAccess.TabIndex = 13;
            this.lblAccess.Text = "Access";
            this.lblAccess.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // cboAccess
            // 
            this.cboAccess.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboAccess.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboAccess.FormattingEnabled = true;
            this.cboAccess.Items.AddRange(new object[] {
            "Default",
            "Public",
            "Protected Internal",
            "Internal",
            "Protected",
            "Private"});
            this.cboAccess.Location = new System.Drawing.Point(71, 104);
            this.cboAccess.Name = "cboAccess";
            this.cboAccess.Size = new System.Drawing.Size(187, 21);
            this.cboAccess.TabIndex = 3;
            this.cboAccess.SelectedIndexChanged += new System.EventHandler(this.cboAccess_SelectedIndexChanged);
            this.cboAccess.Validated += new System.EventHandler(this.cboAccess_Validated);
            // 
            // txtInitialValue
            // 
            this.txtInitialValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtInitialValue.Location = new System.Drawing.Point(71, 134);
            this.txtInitialValue.Name = "txtInitialValue";
            this.txtInitialValue.Size = new System.Drawing.Size(367, 20);
            this.txtInitialValue.TabIndex = 4;
            this.txtInitialValue.Validating += new System.ComponentModel.CancelEventHandler(this.txtInitialValue_Validating);
            // 
            // lblInitValue
            // 
            this.lblInitValue.Location = new System.Drawing.Point(0, 137);
            this.lblInitValue.Name = "lblInitValue";
            this.lblInitValue.Size = new System.Drawing.Size(65, 13);
            this.lblInitValue.TabIndex = 14;
            this.lblInitValue.Text = "Initial value";
            this.lblInitValue.TextAlign = System.Drawing.ContentAlignment.TopRight;
            // 
            // lstMembers
            // 
            this.lstMembers.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.lstMembers.AutoArrange = false;
            this.lstMembers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.icon,
            this.name,
            this.type,
            this.access,
            this.modifier});
            this.lstMembers.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
            this.lstMembers.FullRowSelect = true;
            this.lstMembers.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.lstMembers.HideSelection = false;
            this.lstMembers.Location = new System.Drawing.Point(12, 266);
            this.lstMembers.MultiSelect = false;
            this.lstMembers.Name = "lstMembers";
            this.lstMembers.ShowGroups = false;
            this.lstMembers.Size = new System.Drawing.Size(445, 255);
            this.lstMembers.TabIndex = 7;
            this.lstMembers.UseCompatibleStateImageBehavior = false;
            this.lstMembers.View = System.Windows.Forms.View.Details;
            this.lstMembers.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.lstMembers_ItemSelectionChanged);
            this.lstMembers.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lstMembers_KeyDown);
            // 
            // icon
            // 
            this.icon.Text = "";
            this.icon.Width = 20;
            // 
            // name
            // 
            this.name.Text = "Name";
            this.name.Width = 119;
            // 
            // type
            // 
            this.type.Text = "Type";
            this.type.Width = 101;
            // 
            // access
            // 
            this.access.Text = "Access";
            this.access.Width = 102;
            // 
            // modifier
            // 
            this.modifier.Text = "Modifier";
            this.modifier.Width = 99;
            // 
            // cboType
            // 
            this.cboType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.cboType.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
            this.cboType.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.Lisreplacedems;
            this.cboType.FormattingEnabled = true;
            this.cboType.Location = new System.Drawing.Point(71, 74);
            this.cboType.Name = "cboType";
            this.cboType.Size = new System.Drawing.Size(187, 21);
            this.cboType.Sorted = true;
            this.cboType.TabIndex = 2;
            this.cboType.Validating += new System.ComponentModel.CancelEventHandler(this.cboType_Validating);
            // 
            // btnClose
            // 
            this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnClose.Location = new System.Drawing.Point(382, 527);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(75, 23);
            this.btnClose.TabIndex = 8;
            this.btnClose.Text = "Close";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // toolStrip
            // 
            this.toolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.toolStrip.AutoSize = false;
            this.toolStrip.BackColor = System.Drawing.SystemColors.Control;
            this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNewField,
            this.toolNewMethod,
            this.toolNewConstructor,
            this.toolNewDestructor,
            this.toolNewProperty,
            this.toolNewEvent,
            this.toolDelete,
            this.toolSepMoving,
            this.toolMoveDown,
            this.toolMoveUp,
            this.toolSepSorting,
            this.toolSortByName,
            this.toolSortByAccess,
            this.toolSortByKind,
            this.toolSepAddNew,
            this.toolOverrideList,
            this.toolImplementList});
            this.toolStrip.Location = new System.Drawing.Point(12, 241);
            this.toolStrip.Name = "toolStrip";
            this.toolStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
            this.toolStrip.Size = new System.Drawing.Size(445, 25);
            this.toolStrip.TabIndex = 6;
            this.toolStrip.Text = "toolStrip1";
            // 
            // toolNewField
            // 
            this.toolNewField.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewField.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Field;
            this.toolNewField.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewField.Name = "toolNewField";
            this.toolNewField.Size = new System.Drawing.Size(23, 22);
            this.toolNewField.Text = "New Field";
            this.toolNewField.Click += new System.EventHandler(this.toolNewField_Click);
            // 
            // toolNewMethod
            // 
            this.toolNewMethod.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewMethod.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Method;
            this.toolNewMethod.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewMethod.Name = "toolNewMethod";
            this.toolNewMethod.Size = new System.Drawing.Size(23, 22);
            this.toolNewMethod.Text = "New Method";
            this.toolNewMethod.Click += new System.EventHandler(this.toolNewMethod_Click);
            // 
            // toolNewConstructor
            // 
            this.toolNewConstructor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewConstructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Constructor;
            this.toolNewConstructor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewConstructor.Name = "toolNewConstructor";
            this.toolNewConstructor.Size = new System.Drawing.Size(23, 22);
            this.toolNewConstructor.Text = "New Constructor";
            this.toolNewConstructor.Click += new System.EventHandler(this.toolNewConstructor_Click);
            // 
            // toolNewDestructor
            // 
            this.toolNewDestructor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewDestructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Destructor;
            this.toolNewDestructor.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewDestructor.Name = "toolNewDestructor";
            this.toolNewDestructor.Size = new System.Drawing.Size(23, 22);
            this.toolNewDestructor.Text = "New Destructor";
            this.toolNewDestructor.Click += new System.EventHandler(this.toolNewDestructor_Click);
            // 
            // toolNewProperty
            // 
            this.toolNewProperty.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewProperty.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Property;
            this.toolNewProperty.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewProperty.Name = "toolNewProperty";
            this.toolNewProperty.Size = new System.Drawing.Size(23, 22);
            this.toolNewProperty.Text = "New Property";
            this.toolNewProperty.Click += new System.EventHandler(this.toolNewProperty_Click);
            // 
            // toolNewEvent
            // 
            this.toolNewEvent.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolNewEvent.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Event;
            this.toolNewEvent.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolNewEvent.Name = "toolNewEvent";
            this.toolNewEvent.Size = new System.Drawing.Size(23, 22);
            this.toolNewEvent.Text = "New Event";
            this.toolNewEvent.Click += new System.EventHandler(this.toolNewEvent_Click);
            // 
            // toolDelete
            // 
            this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolDelete.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delete;
            this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolDelete.Name = "toolDelete";
            this.toolDelete.Size = new System.Drawing.Size(23, 22);
            this.toolDelete.Text = "Delete";
            this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
            // 
            // toolSepMoving
            // 
            this.toolSepMoving.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolSepMoving.Name = "toolSepMoving";
            this.toolSepMoving.Size = new System.Drawing.Size(6, 25);
            // 
            // toolMoveDown
            // 
            this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolMoveDown.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveDown;
            this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolMoveDown.Name = "toolMoveDown";
            this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
            this.toolMoveDown.Text = "Move Down";
            this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
            // 
            // toolMoveUp
            // 
            this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolMoveUp.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveUp;
            this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolMoveUp.Name = "toolMoveUp";
            this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
            this.toolMoveUp.Text = "Move Up";
            this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
            // 
            // toolSepSorting
            // 
            this.toolSepSorting.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolSepSorting.Name = "toolSepSorting";
            this.toolSepSorting.Size = new System.Drawing.Size(6, 25);
            // 
            // toolSortByName
            // 
            this.toolSortByName.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolSortByName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolSortByName.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByName;
            this.toolSortByName.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolSortByName.Name = "toolSortByName";
            this.toolSortByName.Size = new System.Drawing.Size(23, 22);
            this.toolSortByName.Text = "Sort by Name";
            this.toolSortByName.Click += new System.EventHandler(this.toolSortByName_Click);
            // 
            // toolSortByAccess
            // 
            this.toolSortByAccess.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolSortByAccess.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolSortByAccess.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByAccess;
            this.toolSortByAccess.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolSortByAccess.Name = "toolSortByAccess";
            this.toolSortByAccess.Size = new System.Drawing.Size(23, 22);
            this.toolSortByAccess.Text = "Sort by Access";
            this.toolSortByAccess.Click += new System.EventHandler(this.toolSortByAccess_Click);
            // 
            // toolSortByKind
            // 
            this.toolSortByKind.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolSortByKind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolSortByKind.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByKind;
            this.toolSortByKind.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolSortByKind.Name = "toolSortByKind";
            this.toolSortByKind.Size = new System.Drawing.Size(23, 22);
            this.toolSortByKind.Text = "Sort by Kind";
            this.toolSortByKind.Click += new System.EventHandler(this.toolSortByKind_Click);
            // 
            // toolSepAddNew
            // 
            this.toolSepAddNew.Name = "toolSepAddNew";
            this.toolSepAddNew.Size = new System.Drawing.Size(6, 25);
            // 
            // toolOverrideList
            // 
            this.toolOverrideList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolOverrideList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Overrides;
            this.toolOverrideList.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolOverrideList.Name = "toolOverrideList";
            this.toolOverrideList.Size = new System.Drawing.Size(23, 22);
            this.toolOverrideList.Text = "Override List";
            this.toolOverrideList.Click += new System.EventHandler(this.toolOverrideList_Click);
            // 
            // toolImplementList
            // 
            this.toolImplementList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolImplementList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Implements;
            this.toolImplementList.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolImplementList.Name = "toolImplementList";
            this.toolImplementList.Size = new System.Drawing.Size(23, 22);
            this.toolImplementList.Text = "Interface Implement List";
            this.toolImplementList.Click += new System.EventHandler(this.toolImplementList_Click);
            // 
            // grpFieldModifiers
            // 
            this.grpFieldModifiers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.grpFieldModifiers.Controls.Add(this.chkVolatile);
            this.grpFieldModifiers.Controls.Add(this.chkFieldHider);
            this.grpFieldModifiers.Controls.Add(this.chkConstant);
            this.grpFieldModifiers.Controls.Add(this.chkReadonly);
            this.grpFieldModifiers.Controls.Add(this.chkFieldStatic);
            this.grpFieldModifiers.Location = new System.Drawing.Point(280, 37);
            this.grpFieldModifiers.Name = "grpFieldModifiers";
            this.grpFieldModifiers.Size = new System.Drawing.Size(158, 88);
            this.grpFieldModifiers.TabIndex = 6;
            this.grpFieldModifiers.TabStop = false;
            this.grpFieldModifiers.Text = "Modifiers";
            this.grpFieldModifiers.Validated += new System.EventHandler(this.grpFieldModifiers_Validated);
            // 
            // chkVolatile
            // 
            this.chkVolatile.AutoSize = true;
            this.chkVolatile.Location = new System.Drawing.Point(88, 42);
            this.chkVolatile.Name = "chkVolatile";
            this.chkVolatile.Size = new System.Drawing.Size(60, 17);
            this.chkVolatile.TabIndex = 4;
            this.chkVolatile.Text = "Volatile";
            this.chkVolatile.UseVisualStyleBackColor = true;
            this.chkVolatile.CheckedChanged += new System.EventHandler(this.chkVolatile_CheckedChanged);
            // 
            // chkFieldHider
            // 
            this.chkFieldHider.AutoSize = true;
            this.chkFieldHider.Location = new System.Drawing.Point(88, 19);
            this.chkFieldHider.Name = "chkFieldHider";
            this.chkFieldHider.Size = new System.Drawing.Size(48, 17);
            this.chkFieldHider.TabIndex = 3;
            this.chkFieldHider.Text = "New";
            this.chkFieldHider.UseVisualStyleBackColor = true;
            this.chkFieldHider.CheckedChanged += new System.EventHandler(this.chkFieldHider_CheckedChanged);
            // 
            // chkConstant
            // 
            this.chkConstant.AutoSize = true;
            this.chkConstant.Location = new System.Drawing.Point(11, 65);
            this.chkConstant.Name = "chkConstant";
            this.chkConstant.Size = new System.Drawing.Size(53, 17);
            this.chkConstant.TabIndex = 2;
            this.chkConstant.Text = "Const";
            this.chkConstant.UseVisualStyleBackColor = true;
            this.chkConstant.CheckedChanged += new System.EventHandler(this.chkConstant_CheckedChanged);
            // 
            // chkReadonly
            // 
            this.chkReadonly.AutoSize = true;
            this.chkReadonly.Location = new System.Drawing.Point(11, 42);
            this.chkReadonly.Name = "chkReadonly";
            this.chkReadonly.Size = new System.Drawing.Size(71, 17);
            this.chkReadonly.TabIndex = 1;
            this.chkReadonly.Text = "Readonly";
            this.chkReadonly.UseVisualStyleBackColor = true;
            this.chkReadonly.CheckedChanged += new System.EventHandler(this.chkReadonly_CheckedChanged);
            // 
            // chkFieldStatic
            // 
            this.chkFieldStatic.AutoSize = true;
            this.chkFieldStatic.Location = new System.Drawing.Point(11, 19);
            this.chkFieldStatic.Name = "chkFieldStatic";
            this.chkFieldStatic.Size = new System.Drawing.Size(53, 17);
            this.chkFieldStatic.TabIndex = 0;
            this.chkFieldStatic.Text = "Static";
            this.chkFieldStatic.UseVisualStyleBackColor = true;
            this.chkFieldStatic.CheckedChanged += new System.EventHandler(this.chkFieldStatic_CheckedChanged);
            // 
            // chkOperationStatic
            // 
            this.chkOperationStatic.AutoSize = true;
            this.chkOperationStatic.Location = new System.Drawing.Point(11, 19);
            this.chkOperationStatic.Name = "chkOperationStatic";
            this.chkOperationStatic.Size = new System.Drawing.Size(53, 17);
            this.chkOperationStatic.TabIndex = 0;
            this.chkOperationStatic.Text = "Static";
            this.chkOperationStatic.UseVisualStyleBackColor = true;
            this.chkOperationStatic.CheckedChanged += new System.EventHandler(this.chkOperationStatic_CheckedChanged);
            // 
            // chkVirtual
            // 
            this.chkVirtual.AutoSize = true;
            this.chkVirtual.Location = new System.Drawing.Point(11, 42);
            this.chkVirtual.Name = "chkVirtual";
            this.chkVirtual.Size = new System.Drawing.Size(55, 17);
            this.chkVirtual.TabIndex = 1;
            this.chkVirtual.Text = "Virtual";
            this.chkVirtual.UseVisualStyleBackColor = true;
            this.chkVirtual.CheckedChanged += new System.EventHandler(this.chkVirtual_CheckedChanged);
            // 
            // chkAbstract
            // 
            this.chkAbstract.AutoSize = true;
            this.chkAbstract.Location = new System.Drawing.Point(11, 65);
            this.chkAbstract.Name = "chkAbstract";
            this.chkAbstract.Size = new System.Drawing.Size(65, 17);
            this.chkAbstract.TabIndex = 2;
            this.chkAbstract.Text = "Abstract";
            this.chkAbstract.UseVisualStyleBackColor = true;
            this.chkAbstract.CheckedChanged += new System.EventHandler(this.chkAbstract_CheckedChanged);
            // 
            // chkOverride
            // 
            this.chkOverride.AutoSize = true;
            this.chkOverride.Location = new System.Drawing.Point(88, 42);
            this.chkOverride.Name = "chkOverride";
            this.chkOverride.Size = new System.Drawing.Size(66, 17);
            this.chkOverride.TabIndex = 4;
            this.chkOverride.Text = "Override";
            this.chkOverride.UseVisualStyleBackColor = true;
            this.chkOverride.CheckedChanged += new System.EventHandler(this.chkOverride_CheckedChanged);
            // 
            // chkSealed
            // 
            this.chkSealed.AutoSize = true;
            this.chkSealed.Location = new System.Drawing.Point(88, 65);
            this.chkSealed.Name = "chkSealed";
            this.chkSealed.Size = new System.Drawing.Size(59, 17);
            this.chkSealed.TabIndex = 5;
            this.chkSealed.Text = "Sealed";
            this.chkSealed.UseVisualStyleBackColor = true;
            this.chkSealed.CheckedChanged += new System.EventHandler(this.chkSealed_CheckedChanged);
            // 
            // chkOperationHider
            // 
            this.chkOperationHider.AutoSize = true;
            this.chkOperationHider.Location = new System.Drawing.Point(88, 19);
            this.chkOperationHider.Name = "chkOperationHider";
            this.chkOperationHider.Size = new System.Drawing.Size(48, 17);
            this.chkOperationHider.TabIndex = 3;
            this.chkOperationHider.Text = "New";
            this.chkOperationHider.UseVisualStyleBackColor = true;
            this.chkOperationHider.CheckedChanged += new System.EventHandler(this.chkOperationHider_CheckedChanged);
            // 
            // grpOperationModifiers
            // 
            this.grpOperationModifiers.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.grpOperationModifiers.Controls.Add(this.chkOperationHider);
            this.grpOperationModifiers.Controls.Add(this.chkSealed);
            this.grpOperationModifiers.Controls.Add(this.chkOverride);
            this.grpOperationModifiers.Controls.Add(this.chkAbstract);
            this.grpOperationModifiers.Controls.Add(this.chkVirtual);
            this.grpOperationModifiers.Controls.Add(this.chkOperationStatic);
            this.grpOperationModifiers.Location = new System.Drawing.Point(280, 37);
            this.grpOperationModifiers.Name = "grpOperationModifiers";
            this.grpOperationModifiers.Size = new System.Drawing.Size(158, 88);
            this.grpOperationModifiers.TabIndex = 5;
            this.grpOperationModifiers.TabStop = false;
            this.grpOperationModifiers.Text = "Modifiers";
            this.grpOperationModifiers.Validated += new System.EventHandler(this.grpOperationModifiers_Validated);
            // 
            // lblNHMColumnName
            // 
            this.lblNHMColumnName.AutoSize = true;
            this.lblNHMColumnName.Location = new System.Drawing.Point(0, 163);
            this.lblNHMColumnName.Name = "lblNHMColumnName";
            this.lblNHMColumnName.Size = new System.Drawing.Size(70, 13);
            this.lblNHMColumnName.TabIndex = 15;
            this.lblNHMColumnName.Text = "NHM Column";
            // 
            // txtNHMColumnName
            // 
            this.txtNHMColumnName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtNHMColumnName.Location = new System.Drawing.Point(71, 160);
            this.txtNHMColumnName.Name = "txtNHMColumnName";
            this.txtNHMColumnName.Size = new System.Drawing.Size(367, 20);
            this.txtNHMColumnName.TabIndex = 5;
            this.txtNHMColumnName.Validating += new System.ComponentModel.CancelEventHandler(this.txtNHMColumnName_Validating);
            // 
            // chkIsPrimaryKey
            // 
            this.chkIsPrimaryKey.AutoSize = true;
            this.chkIsPrimaryKey.Location = new System.Drawing.Point(71, 186);
            this.chkIsPrimaryKey.Name = "chkIsPrimaryKey";
            this.chkIsPrimaryKey.Size = new System.Drawing.Size(60, 17);
            this.chkIsPrimaryKey.TabIndex = 16;
            this.chkIsPrimaryKey.Text = "Idenreplacedy";
            this.chkIsPrimaryKey.UseVisualStyleBackColor = true;
            this.chkIsPrimaryKey.CheckedChanged += new System.EventHandler(this.chkIsPrimaryKey_CheckedChanged);
            // 
            // chkIsNotNull
            // 
            this.chkIsNotNull.AutoSize = true;
            this.chkIsNotNull.Location = new System.Drawing.Point(229, 186);
            this.chkIsNotNull.Name = "chkIsNotNull";
            this.chkIsNotNull.Size = new System.Drawing.Size(64, 17);
            this.chkIsNotNull.TabIndex = 17;
            this.chkIsNotNull.Text = "Not Null";
            this.chkIsNotNull.UseVisualStyleBackColor = true;
            this.chkIsNotNull.CheckedChanged += new System.EventHandler(this.chkIsNotNull_CheckedChanged);
            // 
            // chkIsUnique
            // 
            this.chkIsUnique.AutoSize = true;
            this.chkIsUnique.Location = new System.Drawing.Point(151, 186);
            this.chkIsUnique.Name = "chkIsUnique";
            this.chkIsUnique.Size = new System.Drawing.Size(60, 17);
            this.chkIsUnique.TabIndex = 18;
            this.chkIsUnique.Text = "Unique";
            this.chkIsUnique.UseVisualStyleBackColor = true;
            this.chkIsUnique.CheckedChanged += new System.EventHandler(this.chkIsUnique_CheckedChanged);
            // 
            // lblForeignKey
            // 
            this.lblForeignKey.AutoSize = true;
            this.lblForeignKey.Location = new System.Drawing.Point(68, 212);
            this.lblForeignKey.Name = "lblForeignKey";
            this.lblForeignKey.Size = new System.Drawing.Size(71, 13);
            this.lblForeignKey.TabIndex = 19;
            this.lblForeignKey.Text = "Many to One:";
            // 
            // cboForeignKey
            // 
            this.cboForeignKey.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboForeignKey.FormattingEnabled = true;
            this.cboForeignKey.Location = new System.Drawing.Point(137, 209);
            this.cboForeignKey.Name = "cboForeignKey";
            this.cboForeignKey.Size = new System.Drawing.Size(156, 21);
            this.cboForeignKey.TabIndex = 20;
            this.cboForeignKey.SelectedIndexChanged += new System.EventHandler(this.cboForeignKey_SelectedIndexChanged);
            // 
            // MembersDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CausesValidation = false;
            this.ClientSize = new System.Drawing.Size(469, 562);
            this.Controls.Add(this.cboForeignKey);
            this.Controls.Add(this.lblForeignKey);
            this.Controls.Add(this.chkIsUnique);
            this.Controls.Add(this.txtNHMColumnName);
            this.Controls.Add(this.chkIsNotNull);
            this.Controls.Add(this.chkIsPrimaryKey);
            this.Controls.Add(this.lblNHMColumnName);
            this.Controls.Add(this.lstMembers);
            this.Controls.Add(this.toolStrip);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.cboType);
            this.Controls.Add(this.txtInitialValue);
            this.Controls.Add(this.lblInitValue);
            this.Controls.Add(this.cboAccess);
            this.Controls.Add(this.lblAccess);
            this.Controls.Add(this.lblType);
            this.Controls.Add(this.txtName);
            this.Controls.Add(this.lblName);
            this.Controls.Add(this.lblSyntax);
            this.Controls.Add(this.txtSyntax);
            this.Controls.Add(this.grpOperationModifiers);
            this.Controls.Add(this.grpFieldModifiers);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(400, 450);
            this.Name = "MembersDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Members";
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PropertiesDialog_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
            this.toolStrip.ResumeLayout(false);
            this.toolStrip.PerformLayout();
            this.grpFieldModifiers.ResumeLayout(false);
            this.grpFieldModifiers.PerformLayout();
            this.grpOperationModifiers.ResumeLayout(false);
            this.grpOperationModifiers.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

		}

19 Source : MemberEditor.Designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.toolStrip = new System.Windows.Forms.ToolStrip();
			this.toolVisibility = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolPublic = new System.Windows.Forms.ToolStripMenuItem();
			this.toolProtint = new System.Windows.Forms.ToolStripMenuItem();
			this.toolInternal = new System.Windows.Forms.ToolStripMenuItem();
			this.toolProtected = new System.Windows.Forms.ToolStripMenuItem();
			this.toolPrivate = new System.Windows.Forms.ToolStripMenuItem();
			this.toolDefault = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStatic = new System.Windows.Forms.ToolStripButton();
			this.toolDelete = new System.Windows.Forms.ToolStripButton();
			this.toolMoveDown = new System.Windows.Forms.ToolStripButton();
			this.toolMoveUp = new System.Windows.Forms.ToolStripButton();
			this.toolHider = new System.Windows.Forms.ToolStripButton();
			this.toolFieldModifiers = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolFieldNone = new System.Windows.Forms.ToolStripMenuItem();
			this.toolReadonlyField = new System.Windows.Forms.ToolStripMenuItem();
			this.toolConst = new System.Windows.Forms.ToolStripMenuItem();
			this.toolVolatile = new System.Windows.Forms.ToolStripMenuItem();
			this.toolOperationModifiers = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolOperationNone = new System.Windows.Forms.ToolStripMenuItem();
			this.toolAbstract = new System.Windows.Forms.ToolStripMenuItem();
			this.toolVirtual = new System.Windows.Forms.ToolStripMenuItem();
			this.toolOverride = new System.Windows.Forms.ToolStripMenuItem();
			this.toolSealed = new System.Windows.Forms.ToolStripMenuItem();
			this.toolAbstractOverride = new System.Windows.Forms.ToolStripMenuItem();
			this.toolAccessor = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolReadWrite = new System.Windows.Forms.ToolStripMenuItem();
			this.toolReadOnly = new System.Windows.Forms.ToolStripMenuItem();
			this.toolWriteOnly = new System.Windows.Forms.ToolStripMenuItem();
			this.sepNewMember = new System.Windows.Forms.ToolStripSeparator();
			this.toolNewMember = new System.Windows.Forms.ToolStripSplitButton();
			this.toolNewField = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewMethod = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewProperty = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewEvent = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewConstructor = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewDestructor = new System.Windows.Forms.ToolStripMenuItem();
            this.txtDeclaration = new NClreplaced.DiagramEditor.ClreplacedDiagram.Editors.BorderedTextBox();
            this.pnlAdvancedOptions = new System.Windows.Forms.Panel();
            this.lblNHMColumnName = new System.Windows.Forms.Label();
            this.txtNHMColumnName = new NClreplaced.DiagramEditor.ClreplacedDiagram.Editors.BorderedTextBox();
            this.chkIsIdenreplacedy = new System.Windows.Forms.CheckBox();
            this.chkIsUnique = new System.Windows.Forms.CheckBox();
            this.chkIsNotNull = new System.Windows.Forms.CheckBox();
            this.lblManyToOne = new System.Windows.Forms.Label();
            this.cboManyToOne = new System.Windows.Forms.ComboBox();
            this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.toolStrip.SuspendLayout();
			((System.ComponentModel.ISupportInitialize) (this.errorProvider)).BeginInit();
			this.SuspendLayout();
			// 
			// toolStrip
			// 
			this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolVisibility,
            this.toolStatic,
            this.toolDelete,
            this.toolMoveDown,
            this.toolMoveUp,
            this.toolHider,
            this.toolFieldModifiers,
            this.toolOperationModifiers,
            this.toolAccessor,
            this.sepNewMember,
            this.toolNewMember});
			this.toolStrip.Location = new System.Drawing.Point(0, 0);
			this.toolStrip.Name = "toolStrip";
			this.toolStrip.Padding = new System.Windows.Forms.Padding(5, 0, 1, 0);
			this.toolStrip.Size = new System.Drawing.Size(330, 25);
			this.toolStrip.TabIndex = 0;
			this.toolStrip.Text = "toolStrip1";
			// 
			// toolVisibility
			// 
			this.toolVisibility.AutoSize = false;
			this.toolVisibility.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolVisibility.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolPublic,
            this.toolProtint,
            this.toolInternal,
            this.toolProtected,
            this.toolPrivate,
            this.toolDefault});
			this.toolVisibility.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolVisibility.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolVisibility.Name = "toolVisibility";
			this.toolVisibility.Size = new System.Drawing.Size(30, 22);
			this.toolVisibility.Text = "Protected";
			// 
			// toolPublic
			// 
			this.toolPublic.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolPublic.Name = "toolPublic";
			this.toolPublic.Size = new System.Drawing.Size(173, 22);
			this.toolPublic.Text = "Public";
			this.toolPublic.Click += new System.EventHandler(this.toolPublic_Click);
			// 
			// toolProtint
			// 
			this.toolProtint.Image = global::NClreplaced.DiagramEditor.Properties.Resources.ProtintMethod;
			this.toolProtint.Name = "toolProtint";
			this.toolProtint.Size = new System.Drawing.Size(173, 22);
			this.toolProtint.Text = "Protected Internal";
			this.toolProtint.Click += new System.EventHandler(this.toolProtint_Click);
			// 
			// toolInternal
			// 
			this.toolInternal.Image = global::NClreplaced.DiagramEditor.Properties.Resources.InternalMethod;
			this.toolInternal.Name = "toolInternal";
			this.toolInternal.Size = new System.Drawing.Size(173, 22);
			this.toolInternal.Text = "Internal";
			this.toolInternal.Click += new System.EventHandler(this.toolInternal_Click);
			// 
			// toolProtected
			// 
			this.toolProtected.Image = global::NClreplaced.DiagramEditor.Properties.Resources.ProtectedMethod;
			this.toolProtected.Name = "toolProtected";
			this.toolProtected.Size = new System.Drawing.Size(173, 22);
			this.toolProtected.Text = "Protected";
			this.toolProtected.Click += new System.EventHandler(this.toolProtected_Click);
			// 
			// toolPrivate
			// 
			this.toolPrivate.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PrivateMethod;
			this.toolPrivate.Name = "toolPrivate";
			this.toolPrivate.Size = new System.Drawing.Size(173, 22);
			this.toolPrivate.Text = "Private";
			this.toolPrivate.Click += new System.EventHandler(this.toolPrivate_Click);
			// 
			// toolDefault
			// 
			this.toolDefault.Image = global::NClreplaced.DiagramEditor.Properties.Resources.DefaultMethod;
			this.toolDefault.Name = "toolDefault";
			this.toolDefault.Size = new System.Drawing.Size(173, 22);
			this.toolDefault.Text = "Default";
			this.toolDefault.Click += new System.EventHandler(this.toolDefault_Click);
			// 
			// toolStatic
			// 
			this.toolStatic.CheckOnClick = true;
			this.toolStatic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolStatic.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Static;
			this.toolStatic.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolStatic.Name = "toolStatic";
			this.toolStatic.Size = new System.Drawing.Size(23, 22);
			this.toolStatic.Text = "Static";
			this.toolStatic.ToolTipText = "Static";
			this.toolStatic.CheckedChanged += new System.EventHandler(this.toolStatic_CheckedChanged);
			// 
			// toolDelete
			// 
			this.toolDelete.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolDelete.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delete;
			this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolDelete.Name = "toolDelete";
			this.toolDelete.Size = new System.Drawing.Size(23, 22);
			this.toolDelete.Text = "toolStripButton2";
			this.toolDelete.ToolTipText = "Delete";
			this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
			// 
			// toolMoveDown
			// 
			this.toolMoveDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolMoveDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolMoveDown.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveDown;
			this.toolMoveDown.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolMoveDown.Name = "toolMoveDown";
			this.toolMoveDown.Size = new System.Drawing.Size(23, 22);
			this.toolMoveDown.Text = "toolStripButton3";
			this.toolMoveDown.ToolTipText = "Move Down";
			this.toolMoveDown.Click += new System.EventHandler(this.toolMoveDown_Click);
			// 
			// toolMoveUp
			// 
			this.toolMoveUp.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolMoveUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolMoveUp.Image = global::NClreplaced.DiagramEditor.Properties.Resources.MoveUp;
			this.toolMoveUp.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolMoveUp.Name = "toolMoveUp";
			this.toolMoveUp.Size = new System.Drawing.Size(23, 22);
			this.toolMoveUp.Text = "toolStripButton4";
			this.toolMoveUp.ToolTipText = "Move Up";
			this.toolMoveUp.Click += new System.EventHandler(this.toolMoveUp_Click);
			// 
			// toolHider
			// 
			this.toolHider.CheckOnClick = true;
			this.toolHider.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolHider.Image = global::NClreplaced.DiagramEditor.Properties.Resources.NewModifier;
			this.toolHider.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolHider.Name = "toolHider";
			this.toolHider.Size = new System.Drawing.Size(23, 22);
			this.toolHider.Text = "toolStripButton5";
			this.toolHider.ToolTipText = "New";
			this.toolHider.CheckedChanged += new System.EventHandler(this.toolHider_CheckedChanged);
			// 
			// toolFieldModifiers
			// 
			this.toolFieldModifiers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.toolFieldModifiers.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolFieldNone,
            this.toolReadonlyField,
            this.toolConst,
            this.toolVolatile});
			this.toolFieldModifiers.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolFieldModifiers.Name = "toolFieldModifiers";
			this.toolFieldModifiers.Size = new System.Drawing.Size(45, 22);
			this.toolFieldModifiers.Text = "None";
			// 
			// toolFieldNone
			// 
			this.toolFieldNone.Name = "toolFieldNone";
			this.toolFieldNone.Size = new System.Drawing.Size(130, 22);
			this.toolFieldNone.Text = "None";
			this.toolFieldNone.Click += new System.EventHandler(this.toolFieldNone_Click);
			// 
			// toolReadonlyField
			// 
			this.toolReadonlyField.Name = "toolReadonlyField";
			this.toolReadonlyField.Size = new System.Drawing.Size(130, 22);
			this.toolReadonlyField.Text = "Readonly";
			this.toolReadonlyField.Click += new System.EventHandler(this.toolReadonlyField_Click);
			// 
			// toolConst
			// 
			this.toolConst.Name = "toolConst";
			this.toolConst.Size = new System.Drawing.Size(130, 22);
			this.toolConst.Text = "Const";
			this.toolConst.Click += new System.EventHandler(this.toolConst_Click);
			// 
			// toolVolatile
			// 
			this.toolVolatile.Name = "toolVolatile";
			this.toolVolatile.Size = new System.Drawing.Size(130, 22);
			this.toolVolatile.Text = "Volatile";
			this.toolVolatile.Click += new System.EventHandler(this.toolVolatile_Click);
			// 
			// toolOperationModifiers
			// 
			this.toolOperationModifiers.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.toolOperationModifiers.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolOperationNone,
            this.toolAbstract,
            this.toolVirtual,
            this.toolOverride,
            this.toolSealed,
            this.toolAbstractOverride});
			this.toolOperationModifiers.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolOperationModifiers.Name = "toolOperationModifiers";
			this.toolOperationModifiers.Size = new System.Drawing.Size(45, 22);
			this.toolOperationModifiers.Text = "None";
			// 
			// toolOperationNone
			// 
			this.toolOperationNone.Name = "toolOperationNone";
			this.toolOperationNone.Size = new System.Drawing.Size(171, 22);
			this.toolOperationNone.Text = "None";
			this.toolOperationNone.Click += new System.EventHandler(this.toolOperationNone_Click);
			// 
			// toolAbstract
			// 
			this.toolAbstract.Name = "toolAbstract";
			this.toolAbstract.Size = new System.Drawing.Size(171, 22);
			this.toolAbstract.Text = "Abstract";
			this.toolAbstract.Click += new System.EventHandler(this.toolAbstract_Click);
			// 
			// toolVirtual
			// 
			this.toolVirtual.Name = "toolVirtual";
			this.toolVirtual.Size = new System.Drawing.Size(171, 22);
			this.toolVirtual.Text = "Virtual";
			this.toolVirtual.Click += new System.EventHandler(this.toolVirtual_Click);
			// 
			// toolOverride
			// 
			this.toolOverride.Name = "toolOverride";
			this.toolOverride.Size = new System.Drawing.Size(171, 22);
			this.toolOverride.Text = "Override";
			this.toolOverride.Click += new System.EventHandler(this.toolOverride_Click);
			// 
			// toolSealed
			// 
			this.toolSealed.Name = "toolSealed";
			this.toolSealed.Size = new System.Drawing.Size(171, 22);
			this.toolSealed.Text = "Sealed";
			this.toolSealed.Click += new System.EventHandler(this.toolSealed_Click);
			// 
			// toolAbstractOverride
			// 
			this.toolAbstractOverride.Name = "toolAbstractOverride";
			this.toolAbstractOverride.Size = new System.Drawing.Size(171, 22);
			this.toolAbstractOverride.Text = "Abstract Override";
			this.toolAbstractOverride.Click += new System.EventHandler(this.toolAbstractOverride_Click);
			// 
			// toolAccessor
			// 
			this.toolAccessor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolAccessor.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolReadWrite,
            this.toolReadOnly,
            this.toolWriteOnly});
			this.toolAccessor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicProperty;
			this.toolAccessor.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolAccessor.Name = "toolAccessor";
			this.toolAccessor.Size = new System.Drawing.Size(29, 22);
			this.toolAccessor.Text = "toolStripDropDownButton3";
			this.toolAccessor.ToolTipText = "Read-Write";
			// 
			// toolReadWrite
			// 
			this.toolReadWrite.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicProperty;
			this.toolReadWrite.Name = "toolReadWrite";
			this.toolReadWrite.Size = new System.Drawing.Size(140, 22);
			this.toolReadWrite.Text = "Read-Write";
			this.toolReadWrite.Click += new System.EventHandler(this.toolReadWrite_Click);
			// 
			// toolReadOnly
			// 
			this.toolReadOnly.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicReadonly;
			this.toolReadOnly.Name = "toolReadOnly";
			this.toolReadOnly.Size = new System.Drawing.Size(140, 22);
			this.toolReadOnly.Text = "Read-only";
			this.toolReadOnly.Click += new System.EventHandler(this.toolReadOnly_Click);
			// 
			// toolWriteOnly
			// 
			this.toolWriteOnly.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicWriteonly;
			this.toolWriteOnly.Name = "toolWriteOnly";
			this.toolWriteOnly.Size = new System.Drawing.Size(140, 22);
			this.toolWriteOnly.Text = "Write-only";
			this.toolWriteOnly.Click += new System.EventHandler(this.toolWriteOnly_Click);
			// 
			// sepNewMember
			// 
			this.sepNewMember.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.sepNewMember.Name = "sepNewMember";
			this.sepNewMember.Size = new System.Drawing.Size(6, 25);
			// 
			// toolNewMember
			// 
			this.toolNewMember.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolNewMember.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewMember.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNewField,
            this.toolNewMethod,
            this.toolNewProperty,
            this.toolNewEvent,
            this.toolNewConstructor,
            this.toolNewDestructor});
			this.toolNewMember.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolNewMember.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewMember.Name = "toolNewMember";
			this.toolNewMember.Size = new System.Drawing.Size(32, 22);
			this.toolNewMember.Text = "toolStripSplitButton1";
			this.toolNewMember.ButtonClick += new System.EventHandler(this.toolNewMember_ButtonClick);
			// 
			// toolNewField
			// 
			this.toolNewField.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Field;
			this.toolNewField.Name = "toolNewField";
			this.toolNewField.Size = new System.Drawing.Size(166, 22);
			this.toolNewField.Text = "New Field";
			this.toolNewField.Click += new System.EventHandler(this.toolNewField_Click);
			// 
			// toolNewMethod
			// 
			this.toolNewMethod.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Method;
			this.toolNewMethod.Name = "toolNewMethod";
			this.toolNewMethod.Size = new System.Drawing.Size(166, 22);
			this.toolNewMethod.Text = "New Method";
			this.toolNewMethod.Click += new System.EventHandler(this.toolNewMethod_Click);
			// 
			// toolNewProperty
			// 
			this.toolNewProperty.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Property;
			this.toolNewProperty.Name = "toolNewProperty";
			this.toolNewProperty.Size = new System.Drawing.Size(166, 22);
			this.toolNewProperty.Text = "New Property";
			this.toolNewProperty.Click += new System.EventHandler(this.toolNewProperty_Click);
			// 
			// toolNewEvent
			// 
			this.toolNewEvent.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Event;
			this.toolNewEvent.Name = "toolNewEvent";
			this.toolNewEvent.Size = new System.Drawing.Size(166, 22);
			this.toolNewEvent.Text = "New Event";
			this.toolNewEvent.Click += new System.EventHandler(this.toolNewEvent_Click);
			// 
			// toolNewConstructor
			// 
			this.toolNewConstructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Constructor;
			this.toolNewConstructor.Name = "toolNewConstructor";
			this.toolNewConstructor.Size = new System.Drawing.Size(166, 22);
			this.toolNewConstructor.Text = "New Constructor";
			this.toolNewConstructor.Click += new System.EventHandler(this.toolNewConstructor_Click);
			// 
			// toolNewDestructor
			// 
			this.toolNewDestructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Destructor;
			this.toolNewDestructor.Name = "toolNewDestructor";
			this.toolNewDestructor.Size = new System.Drawing.Size(166, 22);
			this.toolNewDestructor.Text = "New Destructor";
			this.toolNewDestructor.Click += new System.EventHandler(this.toolNewDestructor_Click);
			// 
			// txtDeclaration
			// 
			this.txtDeclaration.Anchor = ((System.Windows.Forms.AnchorStyles) (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))));
			this.txtDeclaration.Location = new System.Drawing.Point(4, 28);
			this.txtDeclaration.Name = "txtDeclaration";
			this.txtDeclaration.Padding = new System.Windows.Forms.Padding(1);
			this.txtDeclaration.ReadOnly = false;
			this.txtDeclaration.SelectionStart = 0;
			this.txtDeclaration.Size = new System.Drawing.Size(322, 20);
			this.txtDeclaration.TabIndex = 1;
			this.txtDeclaration.TextChanged += new System.EventHandler(this.txtDeclaration_TextChanged);
			this.txtDeclaration.Validating += new System.ComponentModel.CancelEventHandler(this.txtDeclaration_Validating);
			this.txtDeclaration.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDeclaration_KeyDown);
            // 
            // pnlAdvancedOptions
            // 
            this.pnlAdvancedOptions.Controls.Add(this.lblNHMColumnName);
            this.pnlAdvancedOptions.Controls.Add(this.txtNHMColumnName);
            this.pnlAdvancedOptions.Controls.Add(this.chkIsIdenreplacedy);
            this.pnlAdvancedOptions.Controls.Add(this.chkIsUnique);
            this.pnlAdvancedOptions.Controls.Add(this.chkIsNotNull);
            this.pnlAdvancedOptions.Controls.Add(this.lblManyToOne);
            this.pnlAdvancedOptions.Controls.Add(this.cboManyToOne);
            this.pnlAdvancedOptions.Location = new System.Drawing.Point(1, 52);
            this.pnlAdvancedOptions.Name = "pnlAdvancedOptions";
            this.pnlAdvancedOptions.Size = new System.Drawing.Size(338, 68);
            this.pnlAdvancedOptions.TabIndex = 12;
            // 
            // lblNHMColumnName
            // 
            this.lblNHMColumnName.AutoSize = true;
            this.lblNHMColumnName.Location = new System.Drawing.Point(1, 6);
            this.lblNHMColumnName.Name = "lblNHMColumnName";
            this.lblNHMColumnName.Size = new System.Drawing.Size(64, 13);
            this.lblNHMColumnName.Text = "NHM Column:";
            this.lblNHMColumnName.SendToBack();
            // 
            // txtNHMColumnName
            // 
            this.txtNHMColumnName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left))));
            this.txtNHMColumnName.Location = new System.Drawing.Point(73, 2);
            this.txtNHMColumnName.Name = "txtNHMColumnName";
            this.txtNHMColumnName.Padding = new System.Windows.Forms.Padding(1);
            this.txtNHMColumnName.ReadOnly = false;
            this.txtNHMColumnName.SelectionStart = 0;
            this.txtNHMColumnName.Size = new System.Drawing.Size(252, 20);
            this.txtNHMColumnName.TabIndex = 2;
            this.txtNHMColumnName.TextChanged += new System.EventHandler(this.txtNHMColumnName_TextChanged);
            this.txtNHMColumnName.Validating += new System.ComponentModel.CancelEventHandler(this.txtNHMColumnName_Validating);
            this.txtNHMColumnName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNHMColumnName_KeyDown);
            // 
            // chkIsIdenreplacedy
            //
            this.chkIsIdenreplacedy.AutoSize = true;
            this.chkIsIdenreplacedy.Location = new System.Drawing.Point(74, 26);
            this.chkIsIdenreplacedy.Name = "chkIsIdenreplacedy";
            this.chkIsIdenreplacedy.Size = new System.Drawing.Size(60, 17);
            this.chkIsIdenreplacedy.TabIndex = 3;
            this.chkIsIdenreplacedy.Text = "Idenreplacedy";
            this.chkIsIdenreplacedy.UseVisualStyleBackColor = true;
            this.chkIsIdenreplacedy.CheckedChanged += new System.EventHandler(this.chkIsIdenreplacedy_CheckedChanged);
            // 
            // chkIsUnique
            //
            this.chkIsUnique.AutoSize = true;
            this.chkIsUnique.Location = new System.Drawing.Point(150, 26);
            this.chkIsUnique.Name = "chkIsUnique";
            this.chkIsUnique.Size = new System.Drawing.Size(60, 17);
            this.chkIsUnique.TabIndex = 4;
            this.chkIsUnique.Text = "Unique";
            this.chkIsUnique.UseVisualStyleBackColor = true;
            this.chkIsUnique.BringToFront();
            this.chkIsUnique.CheckedChanged += new System.EventHandler(this.chkIsUnique_CheckedChanged);
            // 
            // chkIsNotNull
            // 
            this.chkIsNotNull.AutoSize = true;
            this.chkIsNotNull.Location = new System.Drawing.Point(225, 26);
            this.chkIsNotNull.Name = "chkNotNull";
            this.chkIsNotNull.Size = new System.Drawing.Size(60, 17);
            this.chkIsNotNull.TabIndex = 5;
            this.chkIsNotNull.Text = "Not Null";
            this.chkIsNotNull.UseVisualStyleBackColor = true;
            this.chkIsNotNull.CheckedChanged += new System.EventHandler(this.chkIsNotNull_CheckedChanged);
            // 
            // lblManyToOne
            // 
            this.lblManyToOne.AutoSize = true;
            this.lblManyToOne.Location = new System.Drawing.Point(70, 48);
            this.lblManyToOne.Name = "lblManyToOne";
            this.lblManyToOne.Size = new System.Drawing.Size(64, 13);
            this.lblManyToOne.Text = "Many to One:";
            this.lblManyToOne.SendToBack();
            // 
            // cboManyToOne
            // 
            this.cboManyToOne.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboManyToOne.FormattingEnabled = true;
            this.cboManyToOne.Location = new System.Drawing.Point(140, 45);
            this.cboManyToOne.Name = "cboManyToOne";
            this.cboManyToOne.Size = new System.Drawing.Size(145, 21);
            this.cboManyToOne.TabIndex = 12;
            this.cboManyToOne.SelectedIndexChanged += new System.EventHandler(this.cboManyToOne_SelectedIndexChanged);
            // 
			// errorProvider
			// 
			this.errorProvider.ContainerControl = this;
			// 
			// MemberEditor
			// 
            this.Controls.Add(this.txtDeclaration);
            this.Controls.Add(this.pnlAdvancedOptions);
			this.Controls.Add(this.toolStrip);
			this.Name = "MemberEditor";
			this.Size = new System.Drawing.Size(340, 122);
			this.toolStrip.ResumeLayout(false);
			this.toolStrip.PerformLayout();
            this.Controls.SetChildIndex(this.pnlAdvancedOptions, 0);
            this.pnlAdvancedOptions.ResumeLayout(false);
            this.pnlAdvancedOptions.PerformLayout();
			((System.ComponentModel.ISupportInitialize) (this.errorProvider)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

19 Source : DiagramDynamicMenu.designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
			this.menuStrip = new System.Windows.Forms.MenuStrip();
			this.mnuDiagram = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuFormat = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlign = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuMakeSameSize = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSameWidth = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSameHeight = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSameSize = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuAutoWidth = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAutoHeight = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
			this.elementsToolStrip = new System.Windows.Forms.ToolStrip();
			this.toolSepEnreplacedies = new System.Windows.Forms.ToolStripSeparator();
			this.toolSepRelationships = new System.Windows.Forms.ToolStripSeparator();
			this.mnuAddNewElement = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewClreplaced = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewStructure = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewInterface = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewEnum = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewDelegate = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewComment = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.mnuNewreplacedociation = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewComposition = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewAggregation = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewGeneralization = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewRealization = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewDependency = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewNesting = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuNewCommentRelationship = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuMembersFormat = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuShowType = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuShowParameters = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuShowParameterNames = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuShowInitialValue = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuGenerateCode = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSaveAsImage = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignTop = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignLeft = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignBottom = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignRight = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignHorizontal = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAlignVertical = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuAutoLayout = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCollapseAll = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuExpandAll = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewClreplaced = new System.Windows.Forms.ToolStripButton();
			this.toolNewStructure = new System.Windows.Forms.ToolStripButton();
			this.toolNewInterface = new System.Windows.Forms.ToolStripButton();
			this.toolNewEnum = new System.Windows.Forms.ToolStripButton();
			this.toolNewDelegate = new System.Windows.Forms.ToolStripButton();
			this.toolNewComment = new System.Windows.Forms.ToolStripButton();
			this.toolNewreplacedociation = new System.Windows.Forms.ToolStripButton();
			this.toolNewComposition = new System.Windows.Forms.ToolStripButton();
			this.toolNewAggregation = new System.Windows.Forms.ToolStripButton();
			this.toolNewGeneralization = new System.Windows.Forms.ToolStripButton();
			this.toolNewRealization = new System.Windows.Forms.ToolStripButton();
			this.toolNewDependency = new System.Windows.Forms.ToolStripButton();
			this.toolNewNesting = new System.Windows.Forms.ToolStripButton();
			this.toolNewCommentRelationship = new System.Windows.Forms.ToolStripButton();
			this.toolDelete = new System.Windows.Forms.ToolStripButton();
			this.mnuAutoSize = new System.Windows.Forms.ToolStripMenuItem();
			this.menuStrip.SuspendLayout();
			this.elementsToolStrip.SuspendLayout();
			// 
			// menuStrip
			// 
			this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuDiagram,
            this.mnuFormat});
			this.menuStrip.Location = new System.Drawing.Point(0, 0);
			this.menuStrip.Name = "menuStrip";
			this.menuStrip.Size = new System.Drawing.Size(530, 24);
			this.menuStrip.TabIndex = 0;
			this.menuStrip.Text = "menuStrip1";
			// 
			// mnuDiagram
			// 
			this.mnuDiagram.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuAddNewElement,
            this.mnuMembersFormat,
            this.toolStripSeparator1,
            this.mnuGenerateCode,
            this.mnuSaveAsImage});
			this.mnuDiagram.Name = "mnuDiagram";
			this.mnuDiagram.Size = new System.Drawing.Size(58, 20);
			this.mnuDiagram.Text = "&Diagram";
			this.mnuDiagram.DropDownOpening += new System.EventHandler(this.mnuDiagram_DropDownOpening);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(167, 6);
			// 
			// mnuFormat
			// 
			this.mnuFormat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuAlign,
            this.mnuMakeSameSize,
            this.toolStripSeparator4,
            this.mnuAutoSize,
            this.mnuAutoWidth,
            this.mnuAutoHeight,
            this.mnuAutoLayout,
            this.toolStripSeparator5,
            this.mnuCollapseAll,
            this.mnuExpandAll});
			this.mnuFormat.Name = "mnuFormat";
			this.mnuFormat.Size = new System.Drawing.Size(53, 20);
			this.mnuFormat.Text = "F&ormat";
			this.mnuFormat.DropDownOpening += new System.EventHandler(this.mnuFormat_DropDownOpening);
			// 
			// mnuAlign
			// 
			this.mnuAlign.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuAlignTop,
            this.mnuAlignLeft,
            this.mnuAlignBottom,
            this.mnuAlignRight,
            this.toolStripSeparator3,
            this.mnuAlignHorizontal,
            this.mnuAlignVertical});
			this.mnuAlign.Name = "mnuAlign";
			this.mnuAlign.Size = new System.Drawing.Size(161, 22);
			this.mnuAlign.Text = "&Align";
			// 
			// toolStripSeparator3
			// 
			this.toolStripSeparator3.Name = "toolStripSeparator3";
			this.toolStripSeparator3.Size = new System.Drawing.Size(192, 6);
			// 
			// mnuMakeSameSize
			// 
			this.mnuMakeSameSize.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuSameWidth,
            this.mnuSameHeight,
            this.mnuSameSize});
			this.mnuMakeSameSize.Name = "mnuMakeSameSize";
			this.mnuMakeSameSize.Size = new System.Drawing.Size(161, 22);
			this.mnuMakeSameSize.Text = "&Make Same Size";
			// 
			// mnuSameWidth
			// 
			this.mnuSameWidth.Name = "mnuSameWidth";
			this.mnuSameWidth.Size = new System.Drawing.Size(197, 22);
			this.mnuSameWidth.Text = "Same &Width";
			this.mnuSameWidth.Click += new System.EventHandler(this.mnuSameWidth_Click);
			// 
			// mnuSameHeight
			// 
			this.mnuSameHeight.Name = "mnuSameHeight";
			this.mnuSameHeight.Size = new System.Drawing.Size(197, 22);
			this.mnuSameHeight.Text = "Same &Height";
			this.mnuSameHeight.Click += new System.EventHandler(this.mnuSameHeight_Click);
			// 
			// mnuSameSize
			// 
			this.mnuSameSize.Name = "mnuSameSize";
			this.mnuSameSize.Size = new System.Drawing.Size(197, 22);
			this.mnuSameSize.Text = "&Same Width and Height";
			this.mnuSameSize.Click += new System.EventHandler(this.mnuSameSize_Click);
			// 
			// toolStripSeparator4
			// 
			this.toolStripSeparator4.Name = "toolStripSeparator4";
			this.toolStripSeparator4.Size = new System.Drawing.Size(158, 6);
			// 
			// mnuAutoWidth
			// 
			this.mnuAutoWidth.Name = "mnuAutoWidth";
			this.mnuAutoWidth.Size = new System.Drawing.Size(161, 22);
			this.mnuAutoWidth.Text = "Auto &Width";
			this.mnuAutoWidth.Click += new System.EventHandler(this.mnuAutoWidth_Click);
			// 
			// mnuAutoHeight
			// 
			this.mnuAutoHeight.Name = "mnuAutoHeight";
			this.mnuAutoHeight.Size = new System.Drawing.Size(161, 22);
			this.mnuAutoHeight.Text = "Auto &Height";
			this.mnuAutoHeight.Click += new System.EventHandler(this.mnuAutoHeight_Click);
			// 
			// toolStripSeparator5
			// 
			this.toolStripSeparator5.Name = "toolStripSeparator5";
			this.toolStripSeparator5.Size = new System.Drawing.Size(158, 6);
			// 
			// elementsToolStrip
			// 
			this.elementsToolStrip.Dock = System.Windows.Forms.DockStyle.None;
			this.elementsToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.elementsToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNewClreplaced,
            this.toolNewStructure,
            this.toolNewInterface,
            this.toolNewEnum,
            this.toolNewDelegate,
            this.toolNewComment,
            this.toolSepEnreplacedies,
            this.toolNewreplacedociation,
            this.toolNewComposition,
            this.toolNewAggregation,
            this.toolNewGeneralization,
            this.toolNewRealization,
            this.toolNewDependency,
            this.toolNewNesting,
            this.toolNewCommentRelationship,
            this.toolSepRelationships,
            this.toolDelete});
			this.elementsToolStrip.Location = new System.Drawing.Point(0, 0);
			this.elementsToolStrip.Name = "elementsToolStrip";
			this.elementsToolStrip.Size = new System.Drawing.Size(369, 25);
			this.elementsToolStrip.TabIndex = 8;
			// 
			// toolSepEnreplacedies
			// 
			this.toolSepEnreplacedies.Name = "toolSepEnreplacedies";
			this.toolSepEnreplacedies.Size = new System.Drawing.Size(6, 25);
			// 
			// toolSepRelationships
			// 
			this.toolSepRelationships.Name = "toolSepRelationships";
			this.toolSepRelationships.Size = new System.Drawing.Size(6, 25);
			// 
			// mnuAddNewElement
			// 
			this.mnuAddNewElement.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuNewClreplaced,
            this.mnuNewStructure,
            this.mnuNewInterface,
            this.mnuNewEnum,
            this.mnuNewDelegate,
            this.mnuNewComment,
            this.toolStripSeparator2,
            this.mnuNewreplacedociation,
            this.mnuNewComposition,
            this.mnuNewAggregation,
            this.mnuNewGeneralization,
            this.mnuNewRealization,
            this.mnuNewDependency,
            this.mnuNewNesting,
            this.mnuNewCommentRelationship});
			this.mnuAddNewElement.Image = global::NClreplaced.DiagramEditor.Properties.Resources.NewEnreplacedy;
			this.mnuAddNewElement.Name = "mnuAddNewElement";
			this.mnuAddNewElement.Size = new System.Drawing.Size(170, 22);
			this.mnuAddNewElement.Text = "&Add New";
			// 
			// mnuNewClreplaced
			// 
			this.mnuNewClreplaced.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Clreplaced;
			this.mnuNewClreplaced.Name = "mnuNewClreplaced";
			this.mnuNewClreplaced.Size = new System.Drawing.Size(191, 22);
			this.mnuNewClreplaced.Text = "&Clreplaced";
			this.mnuNewClreplaced.Click += new System.EventHandler(this.mnuNewClreplaced_Click);
			// 
			// mnuNewStructure
			// 
			this.mnuNewStructure.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Structure;
			this.mnuNewStructure.Name = "mnuNewStructure";
			this.mnuNewStructure.Size = new System.Drawing.Size(191, 22);
			this.mnuNewStructure.Text = "&Structure";
			this.mnuNewStructure.Click += new System.EventHandler(this.mnuNewStructure_Click);
			// 
			// mnuNewInterface
			// 
			this.mnuNewInterface.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Interface32;
			this.mnuNewInterface.Name = "mnuNewInterface";
			this.mnuNewInterface.Size = new System.Drawing.Size(191, 22);
			this.mnuNewInterface.Text = "&Interface";
			this.mnuNewInterface.Click += new System.EventHandler(this.mnuNewInterface_Click);
			// 
			// mnuNewEnum
			// 
			this.mnuNewEnum.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Enum;
			this.mnuNewEnum.Name = "mnuNewEnum";
			this.mnuNewEnum.Size = new System.Drawing.Size(191, 22);
			this.mnuNewEnum.Text = "&Enum";
			this.mnuNewEnum.Click += new System.EventHandler(this.mnuNewEnum_Click);
			// 
			// mnuNewDelegate
			// 
			this.mnuNewDelegate.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delegate;
			this.mnuNewDelegate.Name = "mnuNewDelegate";
			this.mnuNewDelegate.Size = new System.Drawing.Size(191, 22);
			this.mnuNewDelegate.Text = "&Delegate";
			this.mnuNewDelegate.Click += new System.EventHandler(this.mnuNewDelegate_Click);
			// 
			// mnuNewComment
			// 
			this.mnuNewComment.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Comment;
			this.mnuNewComment.Name = "mnuNewComment";
			this.mnuNewComment.Size = new System.Drawing.Size(191, 22);
			this.mnuNewComment.Text = "Commen&t";
			this.mnuNewComment.Click += new System.EventHandler(this.mnuNewComment_Click);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(188, 6);
			// 
			// mnuNewreplacedociation
			// 
			this.mnuNewreplacedociation.Image = global::NClreplaced.DiagramEditor.Properties.Resources.replacedociation;
			this.mnuNewreplacedociation.Name = "mnuNewreplacedociation";
			this.mnuNewreplacedociation.Size = new System.Drawing.Size(191, 22);
			this.mnuNewreplacedociation.Text = "&replacedociation";
			this.mnuNewreplacedociation.Click += new System.EventHandler(this.mnuNewreplacedociation_Click);
			// 
			// mnuNewComposition
			// 
			this.mnuNewComposition.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Composition;
			this.mnuNewComposition.Name = "mnuNewComposition";
			this.mnuNewComposition.Size = new System.Drawing.Size(191, 22);
			this.mnuNewComposition.Text = "C&omposition";
			this.mnuNewComposition.Click += new System.EventHandler(this.mnuNewComposition_Click);
			// 
			// mnuNewAggregation
			// 
			this.mnuNewAggregation.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Aggregation;
			this.mnuNewAggregation.Name = "mnuNewAggregation";
			this.mnuNewAggregation.Size = new System.Drawing.Size(191, 22);
			this.mnuNewAggregation.Text = "A&ggregation";
			this.mnuNewAggregation.Click += new System.EventHandler(this.mnuNewAggregation_Click);
			// 
			// mnuNewGeneralization
			// 
			this.mnuNewGeneralization.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Generalization;
			this.mnuNewGeneralization.Name = "mnuNewGeneralization";
			this.mnuNewGeneralization.Size = new System.Drawing.Size(191, 22);
			this.mnuNewGeneralization.Text = "Genera&lization";
			this.mnuNewGeneralization.Click += new System.EventHandler(this.mnuNewGeneralization_Click);
			// 
			// mnuNewRealization
			// 
			this.mnuNewRealization.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Realization;
			this.mnuNewRealization.Name = "mnuNewRealization";
			this.mnuNewRealization.Size = new System.Drawing.Size(191, 22);
			this.mnuNewRealization.Text = "&Realization";
			this.mnuNewRealization.Click += new System.EventHandler(this.mnuNewRealization_Click);
			// 
			// mnuNewDependency
			// 
			this.mnuNewDependency.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Dependency;
			this.mnuNewDependency.Name = "mnuNewDependency";
			this.mnuNewDependency.Size = new System.Drawing.Size(191, 22);
			this.mnuNewDependency.Text = "&Dependency";
			this.mnuNewDependency.Click += new System.EventHandler(this.mnuNewDependency_Click);
			// 
			// mnuNewNesting
			// 
			this.mnuNewNesting.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Nesting;
			this.mnuNewNesting.Name = "mnuNewNesting";
			this.mnuNewNesting.Size = new System.Drawing.Size(191, 22);
			this.mnuNewNesting.Text = "&Nesting";
			this.mnuNewNesting.Click += new System.EventHandler(this.mnuNewNesting_Click);
			// 
			// mnuNewCommentRelationship
			// 
			this.mnuNewCommentRelationship.Image = global::NClreplaced.DiagramEditor.Properties.Resources.CommentRel;
			this.mnuNewCommentRelationship.Name = "mnuNewCommentRelationship";
			this.mnuNewCommentRelationship.Size = new System.Drawing.Size(191, 22);
			this.mnuNewCommentRelationship.Text = "Co&mment Relationship";
			this.mnuNewCommentRelationship.Click += new System.EventHandler(this.mnuNewCommentRelationship_Click);
			// 
			// mnuMembersFormat
			// 
			this.mnuMembersFormat.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuShowType,
            this.mnuShowParameters,
            this.mnuShowParameterNames,
            this.mnuShowInitialValue});
			this.mnuMembersFormat.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Format;
			this.mnuMembersFormat.Name = "mnuMembersFormat";
			this.mnuMembersFormat.Size = new System.Drawing.Size(170, 22);
			this.mnuMembersFormat.Text = "&Member\'s Format";
			this.mnuMembersFormat.DropDownOpening += new System.EventHandler(this.mnuMembersFormat_DropDownOpening);
			// 
			// mnuShowType
			// 
			this.mnuShowType.CheckOnClick = true;
			this.mnuShowType.Name = "mnuShowType";
			this.mnuShowType.Size = new System.Drawing.Size(170, 22);
			this.mnuShowType.Text = "&Type";
			this.mnuShowType.Click += new System.EventHandler(this.mnuShowType_Click);
			// 
			// mnuShowParameters
			// 
			this.mnuShowParameters.CheckOnClick = true;
			this.mnuShowParameters.Name = "mnuShowParameters";
			this.mnuShowParameters.Size = new System.Drawing.Size(170, 22);
			this.mnuShowParameters.Text = "&Parameters";
			this.mnuShowParameters.Click += new System.EventHandler(this.mnuShowParameters_Click);
			// 
			// mnuShowParameterNames
			// 
			this.mnuShowParameterNames.CheckOnClick = true;
			this.mnuShowParameterNames.Name = "mnuShowParameterNames";
			this.mnuShowParameterNames.Size = new System.Drawing.Size(170, 22);
			this.mnuShowParameterNames.Text = "Parameter &Names";
			this.mnuShowParameterNames.Click += new System.EventHandler(this.mnuShowParameterNames_Click);
			// 
			// mnuShowInitialValue
			// 
			this.mnuShowInitialValue.CheckOnClick = true;
			this.mnuShowInitialValue.Name = "mnuShowInitialValue";
			this.mnuShowInitialValue.Size = new System.Drawing.Size(170, 22);
			this.mnuShowInitialValue.Text = "&Initial Value";
			this.mnuShowInitialValue.Click += new System.EventHandler(this.mnuShowInitialValue_Click);
			// 
			// mnuGenerateCode
			// 
			this.mnuGenerateCode.Image = global::NClreplaced.DiagramEditor.Properties.Resources.CodeGenerator;
			this.mnuGenerateCode.Name = "mnuGenerateCode";
			this.mnuGenerateCode.Size = new System.Drawing.Size(170, 22);
			this.mnuGenerateCode.Text = "&Generate Code...";
			this.mnuGenerateCode.Click += new System.EventHandler(this.mnuGenerateCode_Click);
			// 
			// mnuSaveAsImage
			// 
			this.mnuSaveAsImage.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Image;
			this.mnuSaveAsImage.Name = "mnuSaveAsImage";
			this.mnuSaveAsImage.Size = new System.Drawing.Size(170, 22);
			this.mnuSaveAsImage.Text = "&Save As Image...";
			this.mnuSaveAsImage.Click += new System.EventHandler(this.mnuSaveAsImage_Click);
			// 
			// mnuAlignTop
			// 
			this.mnuAlignTop.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignTop;
			this.mnuAlignTop.Name = "mnuAlignTop";
			this.mnuAlignTop.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignTop.Text = "Align &Top";
			this.mnuAlignTop.Click += new System.EventHandler(this.mnuAlignTop_Click);
			// 
			// mnuAlignLeft
			// 
			this.mnuAlignLeft.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignLeft;
			this.mnuAlignLeft.Name = "mnuAlignLeft";
			this.mnuAlignLeft.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignLeft.Text = "Align &Left";
			this.mnuAlignLeft.Click += new System.EventHandler(this.mnuAlignLeft_Click);
			// 
			// mnuAlignBottom
			// 
			this.mnuAlignBottom.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignBottom;
			this.mnuAlignBottom.Name = "mnuAlignBottom";
			this.mnuAlignBottom.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignBottom.Text = "Align &Bottom";
			this.mnuAlignBottom.Click += new System.EventHandler(this.mnuAlignBottom_Click);
			// 
			// mnuAlignRight
			// 
			this.mnuAlignRight.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignRight;
			this.mnuAlignRight.Name = "mnuAlignRight";
			this.mnuAlignRight.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignRight.Text = "Align &Right";
			this.mnuAlignRight.Click += new System.EventHandler(this.mnuAlignRight_Click);
			// 
			// mnuAlignHorizontal
			// 
			this.mnuAlignHorizontal.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignHorizontal;
			this.mnuAlignHorizontal.Name = "mnuAlignHorizontal";
			this.mnuAlignHorizontal.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignHorizontal.Text = "Align &Horizontal Center";
			this.mnuAlignHorizontal.Click += new System.EventHandler(this.mnuAlignHorizontal_Click);
			// 
			// mnuAlignVertical
			// 
			this.mnuAlignVertical.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AlignVertical;
			this.mnuAlignVertical.Name = "mnuAlignVertical";
			this.mnuAlignVertical.Size = new System.Drawing.Size(195, 22);
			this.mnuAlignVertical.Text = "Align &Vertical Center";
			this.mnuAlignVertical.Click += new System.EventHandler(this.mnuAlignVertical_Click);
			// 
			// mnuAutoLayout
			// 
			this.mnuAutoLayout.Image = global::NClreplaced.DiagramEditor.Properties.Resources.AutoLayout;
			this.mnuAutoLayout.Name = "mnuAutoLayout";
			this.mnuAutoLayout.Size = new System.Drawing.Size(161, 22);
			this.mnuAutoLayout.Text = "Auto &Layout";
			this.mnuAutoLayout.Visible = false;
			// 
			// mnuCollapseAll
			// 
			this.mnuCollapseAll.Image = global::NClreplaced.DiagramEditor.Properties.Resources.CollapseAll;
			this.mnuCollapseAll.Name = "mnuCollapseAll";
			this.mnuCollapseAll.Size = new System.Drawing.Size(161, 22);
			this.mnuCollapseAll.Text = "&Collapse All";
			this.mnuCollapseAll.Click += new System.EventHandler(this.mnuCollapseAll_Click);
			// 
			// mnuExpandAll
			// 
			this.mnuExpandAll.Image = global::NClreplaced.DiagramEditor.Properties.Resources.ExpandAll;
			this.mnuExpandAll.Name = "mnuExpandAll";
			this.mnuExpandAll.Size = new System.Drawing.Size(161, 22);
			this.mnuExpandAll.Text = "&Expand All";
			this.mnuExpandAll.Click += new System.EventHandler(this.mnuExpandAll_Click);
			// 
			// toolNewClreplaced
			// 
			this.toolNewClreplaced.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewClreplaced.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Clreplaced;
			this.toolNewClreplaced.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewClreplaced.Name = "toolNewClreplaced";
			this.toolNewClreplaced.Size = new System.Drawing.Size(23, 22);
			this.toolNewClreplaced.Click += new System.EventHandler(this.mnuNewClreplaced_Click);
			// 
			// toolNewStructure
			// 
			this.toolNewStructure.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewStructure.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Structure;
			this.toolNewStructure.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewStructure.Name = "toolNewStructure";
			this.toolNewStructure.Size = new System.Drawing.Size(23, 22);
			this.toolNewStructure.Click += new System.EventHandler(this.mnuNewStructure_Click);
			// 
			// toolNewInterface
			// 
			this.toolNewInterface.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewInterface.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Interface32;
			this.toolNewInterface.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewInterface.Name = "toolNewInterface";
			this.toolNewInterface.Size = new System.Drawing.Size(23, 22);
			this.toolNewInterface.Click += new System.EventHandler(this.mnuNewInterface_Click);
			// 
			// toolNewEnum
			// 
			this.toolNewEnum.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewEnum.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Enum;
			this.toolNewEnum.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewEnum.Name = "toolNewEnum";
			this.toolNewEnum.Size = new System.Drawing.Size(23, 22);
			this.toolNewEnum.Click += new System.EventHandler(this.mnuNewEnum_Click);
			// 
			// toolNewDelegate
			// 
			this.toolNewDelegate.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewDelegate.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delegate;
			this.toolNewDelegate.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewDelegate.Name = "toolNewDelegate";
			this.toolNewDelegate.Size = new System.Drawing.Size(23, 22);
			this.toolNewDelegate.Click += new System.EventHandler(this.mnuNewDelegate_Click);
			// 
			// toolNewComment
			// 
			this.toolNewComment.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewComment.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Comment;
			this.toolNewComment.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewComment.Name = "toolNewComment";
			this.toolNewComment.Size = new System.Drawing.Size(23, 22);
			this.toolNewComment.Click += new System.EventHandler(this.mnuNewComment_Click);
			// 
			// toolNewreplacedociation
			// 
			this.toolNewreplacedociation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewreplacedociation.Image = global::NClreplaced.DiagramEditor.Properties.Resources.replacedociation;
			this.toolNewreplacedociation.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewreplacedociation.Name = "toolNewreplacedociation";
			this.toolNewreplacedociation.Size = new System.Drawing.Size(23, 22);
			this.toolNewreplacedociation.Click += new System.EventHandler(this.mnuNewreplacedociation_Click);
			// 
			// toolNewComposition
			// 
			this.toolNewComposition.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewComposition.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Composition;
			this.toolNewComposition.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewComposition.Name = "toolNewComposition";
			this.toolNewComposition.Size = new System.Drawing.Size(23, 22);
			this.toolNewComposition.Click += new System.EventHandler(this.mnuNewComposition_Click);
			// 
			// toolNewAggregation
			// 
			this.toolNewAggregation.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewAggregation.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Aggregation;
			this.toolNewAggregation.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewAggregation.Name = "toolNewAggregation";
			this.toolNewAggregation.Size = new System.Drawing.Size(23, 22);
			this.toolNewAggregation.Click += new System.EventHandler(this.mnuNewAggregation_Click);
			// 
			// toolNewGeneralization
			// 
			this.toolNewGeneralization.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewGeneralization.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Generalization;
			this.toolNewGeneralization.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewGeneralization.Name = "toolNewGeneralization";
			this.toolNewGeneralization.Size = new System.Drawing.Size(23, 22);
			this.toolNewGeneralization.Click += new System.EventHandler(this.mnuNewGeneralization_Click);
			// 
			// toolNewRealization
			// 
			this.toolNewRealization.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewRealization.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Realization;
			this.toolNewRealization.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewRealization.Name = "toolNewRealization";
			this.toolNewRealization.Size = new System.Drawing.Size(23, 22);
			this.toolNewRealization.Click += new System.EventHandler(this.mnuNewRealization_Click);
			// 
			// toolNewDependency
			// 
			this.toolNewDependency.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewDependency.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Dependency;
			this.toolNewDependency.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewDependency.Name = "toolNewDependency";
			this.toolNewDependency.Size = new System.Drawing.Size(23, 22);
			this.toolNewDependency.Click += new System.EventHandler(this.mnuNewDependency_Click);
			// 
			// toolNewNesting
			// 
			this.toolNewNesting.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewNesting.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Nesting;
			this.toolNewNesting.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewNesting.Name = "toolNewNesting";
			this.toolNewNesting.Size = new System.Drawing.Size(23, 22);
			this.toolNewNesting.Click += new System.EventHandler(this.mnuNewNesting_Click);
			// 
			// toolNewCommentRelationship
			// 
			this.toolNewCommentRelationship.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewCommentRelationship.Image = global::NClreplaced.DiagramEditor.Properties.Resources.CommentRel;
			this.toolNewCommentRelationship.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewCommentRelationship.Name = "toolNewCommentRelationship";
			this.toolNewCommentRelationship.Size = new System.Drawing.Size(23, 22);
			this.toolNewCommentRelationship.Click += new System.EventHandler(this.mnuNewCommentRelationship_Click);
			// 
			// toolDelete
			// 
			this.toolDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolDelete.Enabled = false;
			this.toolDelete.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Delete;
			this.toolDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolDelete.Name = "toolDelete";
			this.toolDelete.Size = new System.Drawing.Size(23, 22);
			this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click);
			// 
			// mnuAutoSize
			// 
			this.mnuAutoSize.Name = "mnuAutoSize";
			this.mnuAutoSize.Size = new System.Drawing.Size(161, 22);
			this.mnuAutoSize.Text = "Auto &Size";
			this.mnuAutoSize.Click += new System.EventHandler(this.mnuAutoSize_Click);
			// 
			// DiagramDynamicMenu
			// 
			this.menuStrip.ResumeLayout(false);
			this.menuStrip.PerformLayout();
			this.elementsToolStrip.ResumeLayout(false);
			this.elementsToolStrip.PerformLayout();

		}

19 Source : ModelView.Designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ModelView));
			this.contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.mnuNewProject = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuOpenFile = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSepOpenFile = new System.Windows.Forms.ToolStripSeparator();
			this.mnuRecentFile1 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuRecentFile2 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuRecentFile3 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuRecentFile4 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuRecentFile5 = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuSaveAll = new System.Windows.Forms.ToolStripMenuItem();
			this.mnuCloseAll = new System.Windows.Forms.ToolStripMenuItem();
			this.imageList = new System.Windows.Forms.ImageList(this.components);
			this.lblAddProject = new System.Windows.Forms.Label();
			this.mnuSepOpen = new System.Windows.Forms.ToolStripSeparator();
			this.contextMenu.SuspendLayout();
			this.SuspendLayout();
			// 
			// contextMenu
			// 
			this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuNewProject,
            this.mnuOpen,
            this.mnuSepOpen,
            this.mnuSaveAll,
            this.mnuCloseAll});
			this.contextMenu.Name = "contextMenu";
			this.contextMenu.Size = new System.Drawing.Size(168, 98);
			this.contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
			// 
			// mnuNewProject
			// 
			this.mnuNewProject.Image = global::NClreplaced.GUI.Properties.Resources.Project;
			this.mnuNewProject.Name = "mnuNewProject";
			this.mnuNewProject.Size = new System.Drawing.Size(167, 22);
			this.mnuNewProject.Text = "&New Project";
			this.mnuNewProject.Click += new System.EventHandler(this.mnuNewProject_Click);
			// 
			// mnuOpen
			// 
			this.mnuOpen.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mnuOpenFile,
            this.mnuSepOpenFile,
            this.mnuRecentFile1,
            this.mnuRecentFile2,
            this.mnuRecentFile3,
            this.mnuRecentFile4,
            this.mnuRecentFile5});
			this.mnuOpen.Image = global::NClreplaced.GUI.Properties.Resources.Open;
			this.mnuOpen.Name = "mnuOpen";
			this.mnuOpen.Size = new System.Drawing.Size(167, 22);
			this.mnuOpen.Text = "&Open";
			this.mnuOpen.DropDownOpening += new System.EventHandler(this.mnuOpen_DropDownOpening);
			// 
			// mnuOpenFile
			// 
			this.mnuOpenFile.Name = "mnuOpenFile";
			this.mnuOpenFile.ShortcutKeys = ((System.Windows.Forms.Keys) ((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
			this.mnuOpenFile.Size = new System.Drawing.Size(177, 22);
			this.mnuOpenFile.Text = "&New File...";
			this.mnuOpenFile.Click += new System.EventHandler(this.mnuOpenFile_Click);
			// 
			// mnuSepOpenFile
			// 
			this.mnuSepOpenFile.Name = "mnuSepOpenFile";
			this.mnuSepOpenFile.Size = new System.Drawing.Size(174, 6);
			// 
			// mnuRecentFile1
			// 
			this.mnuRecentFile1.Name = "mnuRecentFile1";
			this.mnuRecentFile1.Size = new System.Drawing.Size(177, 22);
			this.mnuRecentFile1.Tag = 0;
			this.mnuRecentFile1.Text = "Recent File 1";
			this.mnuRecentFile1.Click += new System.EventHandler(this.OpenRecentFile_Click);
			// 
			// mnuRecentFile2
			// 
			this.mnuRecentFile2.Name = "mnuRecentFile2";
			this.mnuRecentFile2.Size = new System.Drawing.Size(177, 22);
			this.mnuRecentFile2.Tag = 1;
			this.mnuRecentFile2.Text = "Recent File 2";
			this.mnuRecentFile2.Click += new System.EventHandler(this.OpenRecentFile_Click);
			// 
			// mnuRecentFile3
			// 
			this.mnuRecentFile3.Name = "mnuRecentFile3";
			this.mnuRecentFile3.Size = new System.Drawing.Size(177, 22);
			this.mnuRecentFile3.Tag = 2;
			this.mnuRecentFile3.Text = "Recent File 3";
			this.mnuRecentFile3.Click += new System.EventHandler(this.OpenRecentFile_Click);
			// 
			// mnuRecentFile4
			// 
			this.mnuRecentFile4.Name = "mnuRecentFile4";
			this.mnuRecentFile4.Size = new System.Drawing.Size(177, 22);
			this.mnuRecentFile4.Tag = 3;
			this.mnuRecentFile4.Text = "Recent File 4";
			this.mnuRecentFile4.Click += new System.EventHandler(this.OpenRecentFile_Click);
			// 
			// mnuRecentFile5
			// 
			this.mnuRecentFile5.Name = "mnuRecentFile5";
			this.mnuRecentFile5.Size = new System.Drawing.Size(177, 22);
			this.mnuRecentFile5.Tag = 4;
			this.mnuRecentFile5.Text = "Recent File 5";
			this.mnuRecentFile5.Click += new System.EventHandler(this.OpenRecentFile_Click);
			// 
			// mnuSaveAll
			// 
			this.mnuSaveAll.Image = global::NClreplaced.GUI.Properties.Resources.SaveAll;
			this.mnuSaveAll.Name = "mnuSaveAll";
			this.mnuSaveAll.Size = new System.Drawing.Size(167, 22);
			this.mnuSaveAll.Text = "Save A&ll Projects";
			this.mnuSaveAll.Click += new System.EventHandler(this.mnuSaveAll_Click);
			// 
			// mnuCloseAll
			// 
			this.mnuCloseAll.Name = "mnuCloseAll";
			this.mnuCloseAll.Size = new System.Drawing.Size(167, 22);
			this.mnuCloseAll.Text = "Close All Projects";
			this.mnuCloseAll.Click += new System.EventHandler(this.mnuCloseAll_Click);
			// 
			// imageList
			// 
			this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer) (resources.GetObject("imageList.ImageStream")));
			this.imageList.TransparentColor = System.Drawing.Color.Transparent;
			this.imageList.Images.SetKeyName(0, "project");
			this.imageList.Images.SetKeyName(1, "diagram");
			// 
			// lblAddProject
			// 
			this.lblAddProject.Dock = System.Windows.Forms.DockStyle.Fill;
			this.lblAddProject.ForeColor = System.Drawing.SystemColors.GrayText;
			this.lblAddProject.Location = new System.Drawing.Point(0, 0);
			this.lblAddProject.Name = "lblAddProject";
			this.lblAddProject.Size = new System.Drawing.Size(100, 23);
			this.lblAddProject.TabIndex = 0;
			this.lblAddProject.Text = "« Double click here to add new project »";
			this.lblAddProject.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.lblAddProject.Visible = false;
			this.lblAddProject.DoubleClick += new System.EventHandler(this.lblAddProject_DoubleClick);
			// 
			// mnuSepOpen
			// 
			this.mnuSepOpen.Name = "mnuSepOpen";
			this.mnuSepOpen.Size = new System.Drawing.Size(164, 6);
			// 
			// ModelView
			// 
			this.ContextMenuStrip = this.contextMenu;
			this.ImageIndex = 0;
			this.ImageList = this.imageList;
			this.LabelEdit = true;
			this.LineColor = System.Drawing.Color.Black;
			this.SelectedImageIndex = 0;
			this.ShowRootLines = false;
			this.contextMenu.ResumeLayout(false);
			this.ResumeLayout(false);

		}

19 Source : CompositeTypeEditor.Designer.cs
with GNU General Public License v3.0
from alexgracianoarj

private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.toolStrip = new System.Windows.Forms.ToolStrip();
			this.toolVisibility = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolPublic = new System.Windows.Forms.ToolStripMenuItem();
			this.toolProtint = new System.Windows.Forms.ToolStripMenuItem();
			this.toolInternal = new System.Windows.Forms.ToolStripMenuItem();
			this.toolProtected = new System.Windows.Forms.ToolStripMenuItem();
			this.toolPrivate = new System.Windows.Forms.ToolStripMenuItem();
			this.toolDefault = new System.Windows.Forms.ToolStripMenuItem();
			this.toolModifier = new System.Windows.Forms.ToolStripDropDownButton();
			this.toolNone = new System.Windows.Forms.ToolStripMenuItem();
			this.toolAbstract = new System.Windows.Forms.ToolStripMenuItem();
			this.toolSealed = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStatic = new System.Windows.Forms.ToolStripMenuItem();
			this.toolSortByName = new System.Windows.Forms.ToolStripButton();
			this.toolSortByAccess = new System.Windows.Forms.ToolStripButton();
			this.toolSortByKind = new System.Windows.Forms.ToolStripButton();
			this.sepNewMember = new System.Windows.Forms.ToolStripSeparator();
			this.toolImplementList = new System.Windows.Forms.ToolStripButton();
			this.toolOverrideList = new System.Windows.Forms.ToolStripButton();
			this.toolNewMember = new System.Windows.Forms.ToolStripSplitButton();
			this.toolNewField = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewMethod = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewProperty = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewEvent = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewConstructor = new System.Windows.Forms.ToolStripMenuItem();
			this.toolNewDestructor = new System.Windows.Forms.ToolStripMenuItem();
			this.txtName = new NClreplaced.DiagramEditor.ClreplacedDiagram.Editors.BorderedTextBox();
			this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
			this.toolStrip.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
			this.SuspendLayout();
			// 
			// toolStrip
			// 
			this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
			this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolVisibility,
            this.toolModifier,
            this.toolSortByName,
            this.toolSortByAccess,
            this.toolSortByKind,
            this.sepNewMember,
            this.toolImplementList,
            this.toolOverrideList,
            this.toolNewMember});
			this.toolStrip.Location = new System.Drawing.Point(0, 0);
			this.toolStrip.Name = "toolStrip";
			this.toolStrip.Padding = new System.Windows.Forms.Padding(5, 0, 1, 0);
			this.toolStrip.Size = new System.Drawing.Size(330, 25);
			this.toolStrip.TabIndex = 4;
			this.toolStrip.Text = "toolStrip1";
			// 
			// toolVisibility
			// 
			this.toolVisibility.AutoSize = false;
			this.toolVisibility.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolVisibility.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolPublic,
            this.toolProtint,
            this.toolInternal,
            this.toolProtected,
            this.toolPrivate,
            this.toolDefault});
			this.toolVisibility.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolVisibility.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolVisibility.Name = "toolVisibility";
			this.toolVisibility.Size = new System.Drawing.Size(30, 22);
			this.toolVisibility.Text = "Protected";
			// 
			// toolPublic
			// 
			this.toolPublic.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolPublic.Name = "toolPublic";
			this.toolPublic.Size = new System.Drawing.Size(173, 22);
			this.toolPublic.Text = "Public";
			this.toolPublic.Click += new System.EventHandler(this.toolPublic_Click);
			// 
			// toolProtint
			// 
			this.toolProtint.Image = global::NClreplaced.DiagramEditor.Properties.Resources.ProtintMethod;
			this.toolProtint.Name = "toolProtint";
			this.toolProtint.Size = new System.Drawing.Size(173, 22);
			this.toolProtint.Text = "Protected Internal";
			this.toolProtint.Click += new System.EventHandler(this.toolProtint_Click);
			// 
			// toolInternal
			// 
			this.toolInternal.Image = global::NClreplaced.DiagramEditor.Properties.Resources.InternalMethod;
			this.toolInternal.Name = "toolInternal";
			this.toolInternal.Size = new System.Drawing.Size(173, 22);
			this.toolInternal.Text = "Internal";
			this.toolInternal.Click += new System.EventHandler(this.toolInternal_Click);
			// 
			// toolProtected
			// 
			this.toolProtected.Image = global::NClreplaced.DiagramEditor.Properties.Resources.ProtectedMethod;
			this.toolProtected.Name = "toolProtected";
			this.toolProtected.Size = new System.Drawing.Size(173, 22);
			this.toolProtected.Text = "Protected";
			this.toolProtected.Click += new System.EventHandler(this.toolProtected_Click);
			// 
			// toolPrivate
			// 
			this.toolPrivate.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PrivateMethod;
			this.toolPrivate.Name = "toolPrivate";
			this.toolPrivate.Size = new System.Drawing.Size(173, 22);
			this.toolPrivate.Text = "Private";
			this.toolPrivate.Click += new System.EventHandler(this.toolPrivate_Click);
			// 
			// toolDefault
			// 
			this.toolDefault.Name = "toolDefault";
			this.toolDefault.Size = new System.Drawing.Size(173, 22);
			this.toolDefault.Text = "Default";
			this.toolDefault.Click += new System.EventHandler(this.toolDefault_Click);
			// 
			// toolModifier
			// 
			this.toolModifier.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
			this.toolModifier.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNone,
            this.toolAbstract,
            this.toolSealed,
            this.toolStatic});
			this.toolModifier.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolModifier.Name = "toolModifier";
			this.toolModifier.Size = new System.Drawing.Size(45, 22);
			this.toolModifier.Text = "None";
			// 
			// toolNone
			// 
			this.toolNone.Name = "toolNone";
			this.toolNone.Size = new System.Drawing.Size(126, 22);
			this.toolNone.Text = "None";
			this.toolNone.Click += new System.EventHandler(this.toolNone_Click);
			// 
			// toolAbstract
			// 
			this.toolAbstract.Name = "toolAbstract";
			this.toolAbstract.Size = new System.Drawing.Size(126, 22);
			this.toolAbstract.Text = "Abstract";
			this.toolAbstract.Click += new System.EventHandler(this.toolAbstract_Click);
			// 
			// toolSealed
			// 
			this.toolSealed.Name = "toolSealed";
			this.toolSealed.Size = new System.Drawing.Size(126, 22);
			this.toolSealed.Text = "Sealed";
			this.toolSealed.Click += new System.EventHandler(this.toolSealed_Click);
			// 
			// toolStatic
			// 
			this.toolStatic.Name = "toolStatic";
			this.toolStatic.Size = new System.Drawing.Size(126, 22);
			this.toolStatic.Text = "Static";
			this.toolStatic.Click += new System.EventHandler(this.toolStatic_Click);
			// 
			// toolSortByName
			// 
			this.toolSortByName.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolSortByName.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolSortByName.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByName;
			this.toolSortByName.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolSortByName.Name = "toolSortByName";
			this.toolSortByName.Size = new System.Drawing.Size(23, 22);
			this.toolSortByName.Text = "Sort by Name";
			this.toolSortByName.Click += new System.EventHandler(this.toolSortByName_Click);
			// 
			// toolSortByAccess
			// 
			this.toolSortByAccess.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolSortByAccess.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolSortByAccess.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByAccess;
			this.toolSortByAccess.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolSortByAccess.Name = "toolSortByAccess";
			this.toolSortByAccess.Size = new System.Drawing.Size(23, 22);
			this.toolSortByAccess.Text = "Sort by Access";
			this.toolSortByAccess.Click += new System.EventHandler(this.toolSortByAccess_Click);
			// 
			// toolSortByKind
			// 
			this.toolSortByKind.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolSortByKind.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolSortByKind.Image = global::NClreplaced.DiagramEditor.Properties.Resources.SortByKind;
			this.toolSortByKind.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolSortByKind.Name = "toolSortByKind";
			this.toolSortByKind.Size = new System.Drawing.Size(23, 22);
			this.toolSortByKind.Text = "Sort by Kind";
			this.toolSortByKind.Click += new System.EventHandler(this.toolSortByKind_Click);
			// 
			// sepNewMember
			// 
			this.sepNewMember.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.sepNewMember.Name = "sepNewMember";
			this.sepNewMember.Size = new System.Drawing.Size(6, 25);
			// 
			// toolImplementList
			// 
			this.toolImplementList.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolImplementList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolImplementList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Implements;
			this.toolImplementList.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolImplementList.Name = "toolImplementList";
			this.toolImplementList.Size = new System.Drawing.Size(23, 22);
			this.toolImplementList.Text = "Interface Implement List";
			this.toolImplementList.Click += new System.EventHandler(this.toolImplementList_Click);
			// 
			// toolOverrideList
			// 
			this.toolOverrideList.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolOverrideList.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolOverrideList.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Overrides;
			this.toolOverrideList.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolOverrideList.Name = "toolOverrideList";
			this.toolOverrideList.Size = new System.Drawing.Size(23, 22);
			this.toolOverrideList.Text = "Override List";
			this.toolOverrideList.Click += new System.EventHandler(this.toolOverrideList_Click);
			// 
			// toolNewMember
			// 
			this.toolNewMember.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
			this.toolNewMember.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
			this.toolNewMember.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolNewField,
            this.toolNewMethod,
            this.toolNewProperty,
            this.toolNewEvent,
            this.toolNewConstructor,
            this.toolNewDestructor});
			this.toolNewMember.Image = global::NClreplaced.DiagramEditor.Properties.Resources.PublicMethod;
			this.toolNewMember.ImageTransparentColor = System.Drawing.Color.Magenta;
			this.toolNewMember.Name = "toolNewMember";
			this.toolNewMember.Size = new System.Drawing.Size(32, 22);
			this.toolNewMember.Text = "New Member";
			this.toolNewMember.ButtonClick += new System.EventHandler(this.toolNewMember_ButtonClick);
			// 
			// toolNewField
			// 
			this.toolNewField.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Field;
			this.toolNewField.Name = "toolNewField";
			this.toolNewField.Size = new System.Drawing.Size(166, 22);
			this.toolNewField.Text = "New Field";
			this.toolNewField.Click += new System.EventHandler(this.toolNewField_Click);
			// 
			// toolNewMethod
			// 
			this.toolNewMethod.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Method;
			this.toolNewMethod.Name = "toolNewMethod";
			this.toolNewMethod.Size = new System.Drawing.Size(166, 22);
			this.toolNewMethod.Text = "New Method";
			this.toolNewMethod.Click += new System.EventHandler(this.toolNewMethod_Click);
			// 
			// toolNewProperty
			// 
			this.toolNewProperty.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Property;
			this.toolNewProperty.Name = "toolNewProperty";
			this.toolNewProperty.Size = new System.Drawing.Size(166, 22);
			this.toolNewProperty.Text = "New Property";
			this.toolNewProperty.Click += new System.EventHandler(this.toolNewProperty_Click);
			// 
			// toolNewEvent
			// 
			this.toolNewEvent.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Event;
			this.toolNewEvent.Name = "toolNewEvent";
			this.toolNewEvent.Size = new System.Drawing.Size(166, 22);
			this.toolNewEvent.Text = "New Event";
			this.toolNewEvent.Click += new System.EventHandler(this.toolNewEvent_Click);
			// 
			// toolNewConstructor
			// 
			this.toolNewConstructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Constructor;
			this.toolNewConstructor.Name = "toolNewConstructor";
			this.toolNewConstructor.Size = new System.Drawing.Size(166, 22);
			this.toolNewConstructor.Text = "New Constructor";
			this.toolNewConstructor.Click += new System.EventHandler(this.toolNewConstructor_Click);
			// 
			// toolNewDestructor
			// 
			this.toolNewDestructor.Image = global::NClreplaced.DiagramEditor.Properties.Resources.Destructor;
			this.toolNewDestructor.Name = "toolNewDestructor";
			this.toolNewDestructor.Size = new System.Drawing.Size(166, 22);
			this.toolNewDestructor.Text = "New Destructor";
			this.toolNewDestructor.Click += new System.EventHandler(this.toolNewDestructor_Click);
			// 
			// txtName
			// 
			this.txtName.Location = new System.Drawing.Point(4, 28);
			this.txtName.Name = "txtName";
			this.txtName.Padding = new System.Windows.Forms.Padding(1);
			this.txtName.ReadOnly = false;
			this.txtName.SelectionStart = 0;
			this.txtName.Size = new System.Drawing.Size(322, 20);
			this.txtName.TabIndex = 5;
			this.txtName.TextChanged += new System.EventHandler(this.textBox_TextChanged);
			this.txtName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtName_KeyDown);
			this.txtName.Validating += new System.ComponentModel.CancelEventHandler(this.txtName_Validating);
			// 
			// errorProvider
			// 
			this.errorProvider.ContainerControl = this;
			// 
			// CompositeTypeEditor
			// 
			this.Controls.Add(this.txtName);
			this.Controls.Add(this.toolStrip);
			this.Name = "CompositeTypeEditor";
			this.Size = new System.Drawing.Size(330, 52);
			this.toolStrip.ResumeLayout(false);
			this.toolStrip.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

See More Examples