System.Windows.Forms.Control.SuspendLayout()

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

6441 Examples 7

19 Source : dlgCloneVM.Designer.cs
with MIT License
from 86Box

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.lblPath = new System.Windows.Forms.Label();
            this.lblPath1 = new System.Windows.Forms.Label();
            this.txtDescription = new System.Windows.Forms.TextBox();
            this.txtName = new System.Windows.Forms.TextBox();
            this.lblDesc = new System.Windows.Forms.Label();
            this.lblName = new System.Windows.Forms.Label();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnClone = new System.Windows.Forms.Button();
            this.cbxStartVM = new System.Windows.Forms.CheckBox();
            this.cbxOpenCFG = new System.Windows.Forms.CheckBox();
            this.lblOldVM = new System.Windows.Forms.Label();
            this.tipLblPath1 = new System.Windows.Forms.ToolTip(this.components);
            this.tipTxtName = new System.Windows.Forms.ToolTip(this.components);
            this.pnlBottom.SuspendLayout();
            this.SuspendLayout();
            // 
            // lblPath
            // 
            this.lblPath.AutoSize = true;
            this.lblPath.Location = new System.Drawing.Point(11, 119);
            this.lblPath.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblPath.Name = "lblPath";
            this.lblPath.Size = new System.Drawing.Size(40, 19);
            this.lblPath.TabIndex = 19;
            this.lblPath.Text = "Path:";
            // 
            // lblPath1
            // 
            this.lblPath1.AutoEllipsis = true;
            this.lblPath1.Location = new System.Drawing.Point(55, 119);
            this.lblPath1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblPath1.MaximumSize = new System.Drawing.Size(429, 17);
            this.lblPath1.Name = "lblPath1";
            this.lblPath1.Size = new System.Drawing.Size(429, 17);
            this.lblPath1.TabIndex = 18;
            this.lblPath1.Text = "<path goes here>";
            // 
            // txtDescription
            // 
            this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDescription.Location = new System.Drawing.Point(96, 83);
            this.txtDescription.Margin = new System.Windows.Forms.Padding(2);
            this.txtDescription.Name = "txtDescription";
            this.txtDescription.Size = new System.Drawing.Size(477, 25);
            this.txtDescription.TabIndex = 1;
            // 
            // txtName
            // 
            this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtName.Location = new System.Drawing.Point(96, 49);
            this.txtName.Margin = new System.Windows.Forms.Padding(2);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(477, 25);
            this.txtName.TabIndex = 0;
            this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
            // 
            // lblDesc
            // 
            this.lblDesc.AutoSize = true;
            this.lblDesc.Location = new System.Drawing.Point(11, 86);
            this.lblDesc.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblDesc.Name = "lblDesc";
            this.lblDesc.Size = new System.Drawing.Size(81, 19);
            this.lblDesc.TabIndex = 17;
            this.lblDesc.Text = "Description:";
            // 
            // lblName
            // 
            this.lblName.AutoSize = true;
            this.lblName.Location = new System.Drawing.Point(11, 52);
            this.lblName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(48, 19);
            this.lblName.TabIndex = 16;
            this.lblName.Text = "Name:";
            // 
            // pnlBottom
            // 
            this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
            this.pnlBottom.Controls.Add(this.btnCancel);
            this.pnlBottom.Controls.Add(this.btnClone);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 188);
            this.pnlBottom.Margin = new System.Windows.Forms.Padding(2);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(584, 52);
            this.pnlBottom.TabIndex = 22;
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnCancel.Location = new System.Drawing.Point(508, 11);
            this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(65, 30);
            this.btnCancel.TabIndex = 5;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            // 
            // btnClone
            // 
            this.btnClone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClone.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnClone.Enabled = false;
            this.btnClone.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnClone.Location = new System.Drawing.Point(439, 11);
            this.btnClone.Margin = new System.Windows.Forms.Padding(2);
            this.btnClone.Name = "btnClone";
            this.btnClone.Size = new System.Drawing.Size(65, 30);
            this.btnClone.TabIndex = 4;
            this.btnClone.Text = "Clone";
            this.btnClone.UseVisualStyleBackColor = true;
            this.btnClone.Click += new System.EventHandler(this.btnClone_Click);
            // 
            // cbxStartVM
            // 
            this.cbxStartVM.AutoSize = true;
            this.cbxStartVM.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxStartVM.Location = new System.Drawing.Point(15, 150);
            this.cbxStartVM.Margin = new System.Windows.Forms.Padding(2);
            this.cbxStartVM.Name = "cbxStartVM";
            this.cbxStartVM.Size = new System.Drawing.Size(216, 24);
            this.cbxStartVM.TabIndex = 2;
            this.cbxStartVM.Text = "Start this virtual machine now";
            this.cbxStartVM.UseVisualStyleBackColor = true;
            // 
            // cbxOpenCFG
            // 
            this.cbxOpenCFG.AutoSize = true;
            this.cbxOpenCFG.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxOpenCFG.Location = new System.Drawing.Point(235, 150);
            this.cbxOpenCFG.Margin = new System.Windows.Forms.Padding(2);
            this.cbxOpenCFG.Name = "cbxOpenCFG";
            this.cbxOpenCFG.Size = new System.Drawing.Size(247, 24);
            this.cbxOpenCFG.TabIndex = 3;
            this.cbxOpenCFG.Text = "Configure this virtual machine now";
            this.cbxOpenCFG.UseVisualStyleBackColor = true;
            // 
            // lblOldVM
            // 
            this.lblOldVM.AutoSize = true;
            this.lblOldVM.Location = new System.Drawing.Point(11, 15);
            this.lblOldVM.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblOldVM.Name = "lblOldVM";
            this.lblOldVM.Size = new System.Drawing.Size(320, 19);
            this.lblOldVM.TabIndex = 23;
            this.lblOldVM.Text = "Virtual machine \"<name here>\" will be cloned into:";
            // 
            // tipTxtName
            // 
            this.tipTxtName.Active = false;
            this.tipTxtName.AutomaticDelay = 0;
            this.tipTxtName.IsBalloon = true;
            this.tipTxtName.ShowAlways = true;
            this.tipTxtName.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Error;
            this.tipTxtName.ToolTipreplacedle = "Name contains invalid characters";
            // 
            // dlgCloneVM
            // 
            this.AcceptButton = this.btnClone;
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.BackColor = System.Drawing.Color.White;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(584, 240);
            this.Controls.Add(this.lblOldVM);
            this.Controls.Add(this.pnlBottom);
            this.Controls.Add(this.cbxStartVM);
            this.Controls.Add(this.cbxOpenCFG);
            this.Controls.Add(this.lblPath);
            this.Controls.Add(this.lblPath1);
            this.Controls.Add(this.txtDescription);
            this.Controls.Add(this.txtName);
            this.Controls.Add(this.lblDesc);
            this.Controls.Add(this.lblName);
            this.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "dlgCloneVM";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Clone a virtual machine";
            this.Load += new System.EventHandler(this.dlgCloneVM_Load);
            this.pnlBottom.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : dlgEditVM.Designer.cs
with MIT License
from 86Box

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnApply = new System.Windows.Forms.Button();
            this.lblName = new System.Windows.Forms.Label();
            this.lblDesc = new System.Windows.Forms.Label();
            this.txtName = new System.Windows.Forms.TextBox();
            this.txtDesc = new System.Windows.Forms.TextBox();
            this.lblPath = new System.Windows.Forms.Label();
            this.lblPath1 = new System.Windows.Forms.Label();
            this.tipLblPath1 = new System.Windows.Forms.ToolTip(this.components);
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.pnlBottom.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnCancel
            // 
            this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnCancel.Location = new System.Drawing.Point(508, 11);
            this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(65, 30);
            this.btnCancel.TabIndex = 3;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnApply
            // 
            this.btnApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnApply.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnApply.Enabled = false;
            this.btnApply.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnApply.Location = new System.Drawing.Point(439, 11);
            this.btnApply.Margin = new System.Windows.Forms.Padding(2);
            this.btnApply.Name = "btnApply";
            this.btnApply.Size = new System.Drawing.Size(65, 30);
            this.btnApply.TabIndex = 2;
            this.btnApply.Text = "Apply";
            this.btnApply.UseVisualStyleBackColor = true;
            this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
            // 
            // lblName
            // 
            this.lblName.AutoSize = true;
            this.lblName.Location = new System.Drawing.Point(11, 14);
            this.lblName.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblName.Name = "lblName";
            this.lblName.Size = new System.Drawing.Size(48, 19);
            this.lblName.TabIndex = 2;
            this.lblName.Text = "Name:";
            // 
            // lblDesc
            // 
            this.lblDesc.AutoSize = true;
            this.lblDesc.Location = new System.Drawing.Point(11, 48);
            this.lblDesc.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblDesc.Name = "lblDesc";
            this.lblDesc.Size = new System.Drawing.Size(81, 19);
            this.lblDesc.TabIndex = 4;
            this.lblDesc.Text = "Description:";
            // 
            // txtName
            // 
            this.txtName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtName.Location = new System.Drawing.Point(63, 11);
            this.txtName.Margin = new System.Windows.Forms.Padding(2);
            this.txtName.Name = "txtName";
            this.txtName.Size = new System.Drawing.Size(510, 25);
            this.txtName.TabIndex = 0;
            this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
            // 
            // txtDesc
            // 
            this.txtDesc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtDesc.Location = new System.Drawing.Point(96, 45);
            this.txtDesc.Margin = new System.Windows.Forms.Padding(2);
            this.txtDesc.Name = "txtDesc";
            this.txtDesc.Size = new System.Drawing.Size(477, 25);
            this.txtDesc.TabIndex = 1;
            // 
            // lblPath
            // 
            this.lblPath.AutoSize = true;
            this.lblPath.Location = new System.Drawing.Point(11, 81);
            this.lblPath.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblPath.Name = "lblPath";
            this.lblPath.Size = new System.Drawing.Size(40, 19);
            this.lblPath.TabIndex = 9;
            this.lblPath.Text = "Path:";
            // 
            // lblPath1
            // 
            this.lblPath1.AutoEllipsis = true;
            this.lblPath1.Location = new System.Drawing.Point(55, 81);
            this.lblPath1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblPath1.MaximumSize = new System.Drawing.Size(429, 17);
            this.lblPath1.Name = "lblPath1";
            this.lblPath1.Size = new System.Drawing.Size(429, 17);
            this.lblPath1.TabIndex = 10;
            this.lblPath1.Text = "<path goes here>";
            // 
            // pnlBottom
            // 
            this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
            this.pnlBottom.Controls.Add(this.btnCancel);
            this.pnlBottom.Controls.Add(this.btnApply);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 119);
            this.pnlBottom.Margin = new System.Windows.Forms.Padding(2);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(584, 52);
            this.pnlBottom.TabIndex = 16;
            // 
            // dlgEditVM
            // 
            this.AcceptButton = this.btnApply;
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.BackColor = System.Drawing.Color.White;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(584, 171);
            this.Controls.Add(this.pnlBottom);
            this.Controls.Add(this.lblPath1);
            this.Controls.Add(this.lblPath);
            this.Controls.Add(this.txtDesc);
            this.Controls.Add(this.txtName);
            this.Controls.Add(this.lblDesc);
            this.Controls.Add(this.lblName);
            this.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "dlgEditVM";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Edit a virtual machine";
            this.Load += new System.EventHandler(this.dlgEditVM_Load);
            this.pnlBottom.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : dlgSettings.Designer.cs
with MIT License
from 86Box

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            this.btnApply = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnOK = new System.Windows.Forms.Button();
            this.cbxShowConsole = new System.Windows.Forms.CheckBox();
            this.btnDefaults = new System.Windows.Forms.Button();
            this.pnlBottom = new System.Windows.Forms.Panel();
            this.lblLaunchTimeout = new System.Windows.Forms.Label();
            this.txtLaunchTimeout = new System.Windows.Forms.TextBox();
            this.tbcSettings = new System.Windows.Forms.TabControl();
            this.tabGeneral = new System.Windows.Forms.TabPage();
            this.gbxBehaviour = new System.Windows.Forms.GroupBox();
            this.cbxMinimizeTray = new System.Windows.Forms.CheckBox();
            this.cbxCloseTray = new System.Windows.Forms.CheckBox();
            this.cbxMinimize = new System.Windows.Forms.CheckBox();
            this.gbxPaths = new System.Windows.Forms.GroupBox();
            this.lbl86BoxVer1 = new System.Windows.Forms.Label();
            this.lbl86BoxVer = new System.Windows.Forms.Label();
            this.lblCFGdir = new System.Windows.Forms.Label();
            this.txtCFGdir = new System.Windows.Forms.TextBox();
            this.txtEXEdir = new System.Windows.Forms.TextBox();
            this.btnBrowse2 = new System.Windows.Forms.Button();
            this.lblEXEdir = new System.Windows.Forms.Label();
            this.btnBrowse1 = new System.Windows.Forms.Button();
            this.tabAdvanced = new System.Windows.Forms.TabPage();
            this.gbxLogging = new System.Windows.Forms.GroupBox();
            this.cbxLogging = new System.Windows.Forms.CheckBox();
            this.txtLogPath = new System.Windows.Forms.TextBox();
            this.btnBrowse3 = new System.Windows.Forms.Button();
            this.gbxMisc = new System.Windows.Forms.GroupBox();
            this.cbxGrid = new System.Windows.Forms.CheckBox();
            this.tabAbout = new System.Windows.Forms.TabPage();
            this.lnkGithub = new System.Windows.Forms.LinkLabel();
            this.imgLogo = new System.Windows.Forms.PictureBox();
            this.lblVersion1 = new System.Windows.Forms.Label();
            this.lnkGithub2 = new System.Windows.Forms.LinkLabel();
            this.lblCopyright = new System.Windows.Forms.Label();
            this.lblVersion = new System.Windows.Forms.Label();
            this.lblDesc = new System.Windows.Forms.Label();
            this.lblreplacedle = new System.Windows.Forms.Label();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.pnlBottom.SuspendLayout();
            this.tbcSettings.SuspendLayout();
            this.tabGeneral.SuspendLayout();
            this.gbxBehaviour.SuspendLayout();
            this.gbxPaths.SuspendLayout();
            this.tabAdvanced.SuspendLayout();
            this.gbxLogging.SuspendLayout();
            this.gbxMisc.SuspendLayout();
            this.tabAbout.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imgLogo)).BeginInit();
            this.SuspendLayout();
            // 
            // btnApply
            // 
            this.btnApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnApply.Enabled = false;
            this.btnApply.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnApply.Location = new System.Drawing.Point(633, 11);
            this.btnApply.Margin = new System.Windows.Forms.Padding(2);
            this.btnApply.Name = "btnApply";
            this.btnApply.Size = new System.Drawing.Size(65, 30);
            this.btnApply.TabIndex = 17;
            this.btnApply.Text = "Apply";
            this.btnApply.UseVisualStyleBackColor = true;
            this.btnApply.Click += new System.EventHandler(this.btnApply_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.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnCancel.Location = new System.Drawing.Point(564, 11);
            this.btnCancel.Margin = new System.Windows.Forms.Padding(2);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(65, 30);
            this.btnCancel.TabIndex = 16;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnOK
            // 
            this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnOK.Location = new System.Drawing.Point(495, 11);
            this.btnOK.Margin = new System.Windows.Forms.Padding(2);
            this.btnOK.Name = "btnOK";
            this.btnOK.Size = new System.Drawing.Size(65, 30);
            this.btnOK.TabIndex = 15;
            this.btnOK.Text = "OK";
            this.btnOK.UseVisualStyleBackColor = true;
            this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
            // 
            // cbxShowConsole
            // 
            this.cbxShowConsole.AutoSize = true;
            this.cbxShowConsole.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxShowConsole.Location = new System.Drawing.Point(285, 23);
            this.cbxShowConsole.Margin = new System.Windows.Forms.Padding(2);
            this.cbxShowConsole.Name = "cbxShowConsole";
            this.cbxShowConsole.Size = new System.Drawing.Size(217, 24);
            this.cbxShowConsole.TabIndex = 13;
            this.cbxShowConsole.Text = "Enable 86Box console window";
            this.cbxShowConsole.UseVisualStyleBackColor = true;
            this.cbxShowConsole.CheckedChanged += new System.EventHandler(this.cbx_CheckedChanged);
            // 
            // btnDefaults
            // 
            this.btnDefaults.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnDefaults.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnDefaults.Location = new System.Drawing.Point(11, 11);
            this.btnDefaults.Margin = new System.Windows.Forms.Padding(2);
            this.btnDefaults.Name = "btnDefaults";
            this.btnDefaults.Size = new System.Drawing.Size(65, 30);
            this.btnDefaults.TabIndex = 14;
            this.btnDefaults.Text = "Defaults";
            this.btnDefaults.UseVisualStyleBackColor = true;
            this.btnDefaults.Click += new System.EventHandler(this.btnDefaults_Click);
            // 
            // pnlBottom
            // 
            this.pnlBottom.BackColor = System.Drawing.SystemColors.Control;
            this.pnlBottom.Controls.Add(this.btnApply);
            this.pnlBottom.Controls.Add(this.btnDefaults);
            this.pnlBottom.Controls.Add(this.btnCancel);
            this.pnlBottom.Controls.Add(this.btnOK);
            this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.pnlBottom.Location = new System.Drawing.Point(0, 284);
            this.pnlBottom.Margin = new System.Windows.Forms.Padding(2);
            this.pnlBottom.Name = "pnlBottom";
            this.pnlBottom.Size = new System.Drawing.Size(709, 52);
            this.pnlBottom.TabIndex = 14;
            // 
            // lblLaunchTimeout
            // 
            this.lblLaunchTimeout.AutoSize = true;
            this.lblLaunchTimeout.Location = new System.Drawing.Point(4, 64);
            this.lblLaunchTimeout.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblLaunchTimeout.Name = "lblLaunchTimeout";
            this.lblLaunchTimeout.Size = new System.Drawing.Size(254, 19);
            this.lblLaunchTimeout.TabIndex = 15;
            this.lblLaunchTimeout.Text = "Launch timeout:                   miliseconds";
            // 
            // txtLaunchTimeout
            // 
            this.txtLaunchTimeout.Location = new System.Drawing.Point(116, 61);
            this.txtLaunchTimeout.Margin = new System.Windows.Forms.Padding(2);
            this.txtLaunchTimeout.MaxLength = 5;
            this.txtLaunchTimeout.Name = "txtLaunchTimeout";
            this.txtLaunchTimeout.Size = new System.Drawing.Size(56, 25);
            this.txtLaunchTimeout.TabIndex = 8;
            this.txtLaunchTimeout.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtLaunchTimeout.TextChanged += new System.EventHandler(this.txt_TextChanged);
            // 
            // tbcSettings
            // 
            this.tbcSettings.Controls.Add(this.tabGeneral);
            this.tbcSettings.Controls.Add(this.tabAdvanced);
            this.tbcSettings.Controls.Add(this.tabAbout);
            this.tbcSettings.Location = new System.Drawing.Point(12, 12);
            this.tbcSettings.Name = "tbcSettings";
            this.tbcSettings.SelectedIndex = 0;
            this.tbcSettings.Size = new System.Drawing.Size(689, 263);
            this.tbcSettings.TabIndex = 0;
            // 
            // tabGeneral
            // 
            this.tabGeneral.Controls.Add(this.gbxBehaviour);
            this.tabGeneral.Controls.Add(this.gbxPaths);
            this.tabGeneral.Location = new System.Drawing.Point(4, 26);
            this.tabGeneral.Name = "tabGeneral";
            this.tabGeneral.Padding = new System.Windows.Forms.Padding(3);
            this.tabGeneral.Size = new System.Drawing.Size(681, 233);
            this.tabGeneral.TabIndex = 0;
            this.tabGeneral.Text = "General";
            this.tabGeneral.UseVisualStyleBackColor = true;
            // 
            // gbxBehaviour
            // 
            this.gbxBehaviour.Controls.Add(this.cbxMinimizeTray);
            this.gbxBehaviour.Controls.Add(this.cbxCloseTray);
            this.gbxBehaviour.Controls.Add(this.cbxMinimize);
            this.gbxBehaviour.Location = new System.Drawing.Point(6, 141);
            this.gbxBehaviour.Name = "gbxBehaviour";
            this.gbxBehaviour.Size = new System.Drawing.Size(669, 86);
            this.gbxBehaviour.TabIndex = 6;
            this.gbxBehaviour.TabStop = false;
            this.gbxBehaviour.Text = "Behaviour";
            // 
            // cbxMinimizeTray
            // 
            this.cbxMinimizeTray.AutoSize = true;
            this.cbxMinimizeTray.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxMinimizeTray.Location = new System.Drawing.Point(9, 23);
            this.cbxMinimizeTray.Margin = new System.Windows.Forms.Padding(2);
            this.cbxMinimizeTray.Name = "cbxMinimizeTray";
            this.cbxMinimizeTray.Size = new System.Drawing.Size(264, 24);
            this.cbxMinimizeTray.TabIndex = 5;
            this.cbxMinimizeTray.Text = "Minimize 86Box Manager to tray icon";
            this.cbxMinimizeTray.UseVisualStyleBackColor = true;
            this.cbxMinimizeTray.CheckedChanged += new System.EventHandler(this.cbx_CheckedChanged);
            // 
            // cbxCloseTray
            // 
            this.cbxCloseTray.AutoSize = true;
            this.cbxCloseTray.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxCloseTray.Location = new System.Drawing.Point(337, 23);
            this.cbxCloseTray.Margin = new System.Windows.Forms.Padding(2);
            this.cbxCloseTray.Name = "cbxCloseTray";
            this.cbxCloseTray.Size = new System.Drawing.Size(242, 24);
            this.cbxCloseTray.TabIndex = 6;
            this.cbxCloseTray.Text = "Close 86Box Manager to tray icon";
            this.cbxCloseTray.UseVisualStyleBackColor = true;
            this.cbxCloseTray.CheckedChanged += new System.EventHandler(this.cbx_CheckedChanged);
            // 
            // cbxMinimize
            // 
            this.cbxMinimize.AutoSize = true;
            this.cbxMinimize.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxMinimize.Location = new System.Drawing.Point(9, 51);
            this.cbxMinimize.Margin = new System.Windows.Forms.Padding(2);
            this.cbxMinimize.Name = "cbxMinimize";
            this.cbxMinimize.Size = new System.Drawing.Size(324, 24);
            this.cbxMinimize.TabIndex = 7;
            this.cbxMinimize.Text = "Minimize 86Box Manager when a VM is started";
            this.cbxMinimize.UseVisualStyleBackColor = true;
            this.cbxMinimize.CheckedChanged += new System.EventHandler(this.cbx_CheckedChanged);
            // 
            // gbxPaths
            // 
            this.gbxPaths.Controls.Add(this.lbl86BoxVer1);
            this.gbxPaths.Controls.Add(this.lbl86BoxVer);
            this.gbxPaths.Controls.Add(this.lblCFGdir);
            this.gbxPaths.Controls.Add(this.txtCFGdir);
            this.gbxPaths.Controls.Add(this.txtEXEdir);
            this.gbxPaths.Controls.Add(this.btnBrowse2);
            this.gbxPaths.Controls.Add(this.lblEXEdir);
            this.gbxPaths.Controls.Add(this.btnBrowse1);
            this.gbxPaths.Location = new System.Drawing.Point(6, 6);
            this.gbxPaths.Name = "gbxPaths";
            this.gbxPaths.Size = new System.Drawing.Size(669, 129);
            this.gbxPaths.TabIndex = 5;
            this.gbxPaths.TabStop = false;
            this.gbxPaths.Text = "Paths";
            // 
            // lbl86BoxVer1
            // 
            this.lbl86BoxVer1.AutoSize = true;
            this.lbl86BoxVer1.Font = new System.Drawing.Font("Segoe UI Semibold", 10F, System.Drawing.FontStyle.Bold);
            this.lbl86BoxVer1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lbl86BoxVer1.Location = new System.Drawing.Point(100, 59);
            this.lbl86BoxVer1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lbl86BoxVer1.Name = "lbl86BoxVer1";
            this.lbl86BoxVer1.Size = new System.Drawing.Size(170, 19);
            this.lbl86BoxVer1.TabIndex = 6;
            this.lbl86BoxVer1.Text = "<status string goes here>";
            // 
            // lbl86BoxVer
            // 
            this.lbl86BoxVer.AutoSize = true;
            this.lbl86BoxVer.Location = new System.Drawing.Point(5, 59);
            this.lbl86BoxVer.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lbl86BoxVer.Name = "lbl86BoxVer";
            this.lbl86BoxVer.Size = new System.Drawing.Size(98, 19);
            this.lbl86BoxVer.TabIndex = 5;
            this.lbl86BoxVer.Text = "86Box version:";
            // 
            // lblCFGdir
            // 
            this.lblCFGdir.AutoSize = true;
            this.lblCFGdir.Location = new System.Drawing.Point(5, 93);
            this.lblCFGdir.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblCFGdir.Name = "lblCFGdir";
            this.lblCFGdir.Size = new System.Drawing.Size(66, 19);
            this.lblCFGdir.TabIndex = 4;
            this.lblCFGdir.Text = "VM path:";
            // 
            // txtCFGdir
            // 
            this.txtCFGdir.Location = new System.Drawing.Point(93, 90);
            this.txtCFGdir.Margin = new System.Windows.Forms.Padding(2);
            this.txtCFGdir.Name = "txtCFGdir";
            this.txtCFGdir.Size = new System.Drawing.Size(497, 25);
            this.txtCFGdir.TabIndex = 3;
            this.txtCFGdir.TextChanged += new System.EventHandler(this.txt_TextChanged);
            // 
            // txtEXEdir
            // 
            this.txtEXEdir.Location = new System.Drawing.Point(93, 23);
            this.txtEXEdir.Margin = new System.Windows.Forms.Padding(2);
            this.txtEXEdir.Name = "txtEXEdir";
            this.txtEXEdir.Size = new System.Drawing.Size(497, 25);
            this.txtEXEdir.TabIndex = 1;
            this.txtEXEdir.TextChanged += new System.EventHandler(this.txt_TextChanged);
            // 
            // btnBrowse2
            // 
            this.btnBrowse2.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnBrowse2.Location = new System.Drawing.Point(594, 87);
            this.btnBrowse2.Margin = new System.Windows.Forms.Padding(2);
            this.btnBrowse2.Name = "btnBrowse2";
            this.btnBrowse2.Size = new System.Drawing.Size(70, 30);
            this.btnBrowse2.TabIndex = 4;
            this.btnBrowse2.Text = "Browse...";
            this.btnBrowse2.UseVisualStyleBackColor = true;
            this.btnBrowse2.Click += new System.EventHandler(this.btnBrowse2_Click);
            // 
            // lblEXEdir
            // 
            this.lblEXEdir.AutoSize = true;
            this.lblEXEdir.Location = new System.Drawing.Point(5, 26);
            this.lblEXEdir.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
            this.lblEXEdir.Name = "lblEXEdir";
            this.lblEXEdir.Size = new System.Drawing.Size(82, 19);
            this.lblEXEdir.TabIndex = 3;
            this.lblEXEdir.Text = "86Box path:";
            // 
            // btnBrowse1
            // 
            this.btnBrowse1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnBrowse1.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.btnBrowse1.Location = new System.Drawing.Point(594, 20);
            this.btnBrowse1.Margin = new System.Windows.Forms.Padding(2);
            this.btnBrowse1.Name = "btnBrowse1";
            this.btnBrowse1.Size = new System.Drawing.Size(70, 30);
            this.btnBrowse1.TabIndex = 2;
            this.btnBrowse1.Text = "Browse...";
            this.btnBrowse1.UseVisualStyleBackColor = true;
            this.btnBrowse1.Click += new System.EventHandler(this.btnBrowse1_Click);
            // 
            // tabAdvanced
            // 
            this.tabAdvanced.Controls.Add(this.gbxLogging);
            this.tabAdvanced.Controls.Add(this.gbxMisc);
            this.tabAdvanced.Location = new System.Drawing.Point(4, 26);
            this.tabAdvanced.Name = "tabAdvanced";
            this.tabAdvanced.Padding = new System.Windows.Forms.Padding(3);
            this.tabAdvanced.Size = new System.Drawing.Size(681, 233);
            this.tabAdvanced.TabIndex = 1;
            this.tabAdvanced.Text = "Advanced";
            this.tabAdvanced.UseVisualStyleBackColor = true;
            // 
            // gbxLogging
            // 
            this.gbxLogging.Controls.Add(this.cbxLogging);
            this.gbxLogging.Controls.Add(this.txtLogPath);
            this.gbxLogging.Controls.Add(this.btnBrowse3);
            this.gbxLogging.Location = new System.Drawing.Point(6, 6);
            this.gbxLogging.Name = "gbxLogging";
            this.gbxLogging.Size = new System.Drawing.Size(669, 93);
            this.gbxLogging.TabIndex = 18;
            this.gbxLogging.TabStop = false;
            this.gbxLogging.Text = "Logging";
            // 
            // cbxLogging
            // 
            this.cbxLogging.AutoSize = true;
            this.cbxLogging.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxLogging.Location = new System.Drawing.Point(9, 23);
            this.cbxLogging.Margin = new System.Windows.Forms.Padding(2);
            this.cbxLogging.Name = "cbxLogging";
            this.cbxLogging.Size = new System.Drawing.Size(207, 24);
            this.cbxLogging.TabIndex = 9;
            this.cbxLogging.Text = "Enable 86Box logging to file:";
            this.cbxLogging.UseVisualStyleBackColor = true;
            this.cbxLogging.CheckedChanged += new System.EventHandler(this.cbxLogging_CheckedChanged);
            // 
            // txtLogPath
            // 
            this.txtLogPath.Location = new System.Drawing.Point(9, 52);
            this.txtLogPath.Name = "txtLogPath";
            this.txtLogPath.Size = new System.Drawing.Size(580, 25);
            this.txtLogPath.TabIndex = 10;
            this.txtLogPath.TextChanged += new System.EventHandler(this.txt_TextChanged);
            // 
            // btnBrowse3
            // 
            this.btnBrowse3.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.btnBrowse3.Location = new System.Drawing.Point(594, 49);
            this.btnBrowse3.Margin = new System.Windows.Forms.Padding(2);
            this.btnBrowse3.Name = "btnBrowse3";
            this.btnBrowse3.Size = new System.Drawing.Size(70, 30);
            this.btnBrowse3.TabIndex = 11;
            this.btnBrowse3.Text = "Browse...";
            this.btnBrowse3.UseVisualStyleBackColor = true;
            this.btnBrowse3.Click += new System.EventHandler(this.btnBrowse3_Click);
            // 
            // gbxMisc
            // 
            this.gbxMisc.Controls.Add(this.cbxGrid);
            this.gbxMisc.Controls.Add(this.txtLaunchTimeout);
            this.gbxMisc.Controls.Add(this.cbxShowConsole);
            this.gbxMisc.Controls.Add(this.lblLaunchTimeout);
            this.gbxMisc.Location = new System.Drawing.Point(6, 105);
            this.gbxMisc.Name = "gbxMisc";
            this.gbxMisc.Size = new System.Drawing.Size(669, 122);
            this.gbxMisc.TabIndex = 17;
            this.gbxMisc.TabStop = false;
            this.gbxMisc.Text = "Miscellaneous";
            // 
            // cbxGrid
            // 
            this.cbxGrid.AutoSize = true;
            this.cbxGrid.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cbxGrid.Location = new System.Drawing.Point(9, 23);
            this.cbxGrid.Margin = new System.Windows.Forms.Padding(2);
            this.cbxGrid.Name = "cbxGrid";
            this.cbxGrid.Size = new System.Drawing.Size(272, 24);
            this.cbxGrid.TabIndex = 12;
            this.cbxGrid.Text = "Enable grid lines in virtual machines list";
            this.cbxGrid.UseVisualStyleBackColor = true;
            this.cbxGrid.CheckedChanged += new System.EventHandler(this.cbx_CheckedChanged);
            // 
            // tabAbout
            // 
            this.tabAbout.Controls.Add(this.lnkGithub);
            this.tabAbout.Controls.Add(this.imgLogo);
            this.tabAbout.Controls.Add(this.lblVersion1);
            this.tabAbout.Controls.Add(this.lnkGithub2);
            this.tabAbout.Controls.Add(this.lblCopyright);
            this.tabAbout.Controls.Add(this.lblVersion);
            this.tabAbout.Controls.Add(this.lblDesc);
            this.tabAbout.Controls.Add(this.lblreplacedle);
            this.tabAbout.Location = new System.Drawing.Point(4, 26);
            this.tabAbout.Name = "tabAbout";
            this.tabAbout.Padding = new System.Windows.Forms.Padding(3);
            this.tabAbout.Size = new System.Drawing.Size(681, 233);
            this.tabAbout.TabIndex = 2;
            this.tabAbout.Text = "About";
            this.tabAbout.UseVisualStyleBackColor = true;
            // 
            // lnkGithub
            // 
            this.lnkGithub.AutoSize = true;
            this.lnkGithub.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lnkGithub.Location = new System.Drawing.Point(15, 200);
            this.lnkGithub.Name = "lnkGithub";
            this.lnkGithub.Size = new System.Drawing.Size(264, 19);
            this.lnkGithub.TabIndex = 12;
            this.lnkGithub.TabStop = true;
            this.lnkGithub.Text = "https://github.com/86Box/86BoxManager";
            this.lnkGithub.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGithub_LinkClicked);
            // 
            // imgLogo
            // 
            this.imgLogo.Image = global::_86boxManager.Properties.Resources._86Box;
            this.imgLogo.Location = new System.Drawing.Point(15, 14);
            this.imgLogo.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
            this.imgLogo.Name = "imgLogo";
            this.imgLogo.Size = new System.Drawing.Size(32, 32);
            this.imgLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.imgLogo.TabIndex = 17;
            this.imgLogo.TabStop = false;
            // 
            // lblVersion1
            // 
            this.lblVersion1.AutoSize = true;
            this.lblVersion1.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lblVersion1.Location = new System.Drawing.Point(69, 83);
            this.lblVersion1.Name = "lblVersion1";
            this.lblVersion1.Size = new System.Drawing.Size(137, 19);
            this.lblVersion1.TabIndex = 16;
            this.lblVersion1.Text = "<version goes here>";
            // 
            // lnkGithub2
            // 
            this.lnkGithub2.AutoSize = true;
            this.lnkGithub2.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lnkGithub2.Location = new System.Drawing.Point(15, 177);
            this.lnkGithub2.Name = "lnkGithub2";
            this.lnkGithub2.Size = new System.Drawing.Size(209, 19);
            this.lnkGithub2.TabIndex = 10;
            this.lnkGithub2.TabStop = true;
            this.lnkGithub2.Text = "https://github.com/86Box/86Box";
            this.lnkGithub2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkGithub2_LinkClicked);
            // 
            // lblCopyright
            // 
            this.lblCopyright.AutoSize = true;
            this.lblCopyright.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lblCopyright.Location = new System.Drawing.Point(15, 111);
            this.lblCopyright.Name = "lblCopyright";
            this.lblCopyright.Size = new System.Drawing.Size(368, 57);
            this.lblCopyright.TabIndex = 15;
            this.lblCopyright.Text = "Copyright © 2018-2020 David Simunič\r\nLicensed under the MIT license. See the LICE" +
    "NSE file for\r\nlicense information and AUTHORS for a list of contributors.";
            // 
            // lblVersion
            // 
            this.lblVersion.AutoSize = true;
            this.lblVersion.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lblVersion.Location = new System.Drawing.Point(15, 83);
            this.lblVersion.Name = "lblVersion";
            this.lblVersion.Size = new System.Drawing.Size(57, 19);
            this.lblVersion.TabIndex = 14;
            this.lblVersion.Text = "Version:";
            // 
            // lblDesc
            // 
            this.lblDesc.AutoSize = true;
            this.lblDesc.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.lblDesc.Location = new System.Drawing.Point(15, 55);
            this.lblDesc.Name = "lblDesc";
            this.lblDesc.Size = new System.Drawing.Size(307, 19);
            this.lblDesc.TabIndex = 13;
            this.lblDesc.Text = "A configuration manager for the 86Box emulator";
            // 
            // lblreplacedle
            // 
            this.lblreplacedle.Anchor = System.Windows.Forms.AnchorStyles.Top;
            this.lblreplacedle.AutoSize = true;
            this.lblreplacedle.Font = new System.Drawing.Font("Segoe UI Semibold", 15F, System.Drawing.FontStyle.Bold);
            this.lblreplacedle.Location = new System.Drawing.Point(53, 15);
            this.lblreplacedle.Name = "lblreplacedle";
            this.lblreplacedle.Size = new System.Drawing.Size(154, 28);
            this.lblreplacedle.TabIndex = 11;
            this.lblreplacedle.Text = "86Box Manager";
            // 
            // dlgSettings
            // 
            this.AcceptButton = this.btnOK;
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
            this.BackColor = System.Drawing.Color.White;
            this.CancelButton = this.btnCancel;
            this.ClientSize = new System.Drawing.Size(709, 336);
            this.Controls.Add(this.tbcSettings);
            this.Controls.Add(this.pnlBottom);
            this.Font = new System.Drawing.Font("Segoe UI", 10F);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "dlgSettings";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Settings";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.dlgSettings_FormClosing);
            this.Load += new System.EventHandler(this.dlgSettings_Load);
            this.pnlBottom.ResumeLayout(false);
            this.tbcSettings.ResumeLayout(false);
            this.tabGeneral.ResumeLayout(false);
            this.gbxBehaviour.ResumeLayout(false);
            this.gbxBehaviour.PerformLayout();
            this.gbxPaths.ResumeLayout(false);
            this.gbxPaths.PerformLayout();
            this.tabAdvanced.ResumeLayout(false);
            this.gbxLogging.ResumeLayout(false);
            this.gbxLogging.PerformLayout();
            this.gbxMisc.ResumeLayout(false);
            this.gbxMisc.PerformLayout();
            this.tabAbout.ResumeLayout(false);
            this.tabAbout.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.imgLogo)).EndInit();
            this.ResumeLayout(false);

        }

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 : ExportOptions.Designer.cs
with MIT License
from 91Act

private void InitializeComponent()
        {
            this.includeBox = new System.Windows.Forms.GroupBox();
            this.convertDummies = new System.Windows.Forms.CheckBox();
            this.embedBox = new System.Windows.Forms.CheckBox();
            this.lightsBox = new System.Windows.Forms.CheckBox();
            this.camerasBox = new System.Windows.Forms.CheckBox();
            this.exportDeformers = new System.Windows.Forms.CheckBox();
            this.geometryBox = new System.Windows.Forms.GroupBox();
            this.exportColors = new System.Windows.Forms.CheckBox();
            this.exportUVs = new System.Windows.Forms.CheckBox();
            this.exportTangents = new System.Windows.Forms.CheckBox();
            this.exportNormals = new System.Windows.Forms.CheckBox();
            this.advancedBox = new System.Windows.Forms.GroupBox();
            this.axisLabel = new System.Windows.Forms.Label();
            this.upAxis = new System.Windows.Forms.ComboBox();
            this.scaleFactor = new System.Windows.Forms.NumericUpDown();
            this.scaleLabel = new System.Windows.Forms.Label();
            this.fbxOKbutton = new System.Windows.Forms.Button();
            this.fbxCancel = new System.Windows.Forms.Button();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.showExpOpt = new System.Windows.Forms.CheckBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.convertfsb = new System.Windows.Forms.CheckBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.tojpg = new System.Windows.Forms.RadioButton();
            this.topng = new System.Windows.Forms.RadioButton();
            this.tobmp = new System.Windows.Forms.RadioButton();
            this.converttexture = new System.Windows.Forms.CheckBox();
            this.includeBox.SuspendLayout();
            this.geometryBox.SuspendLayout();
            this.advancedBox.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.scaleFactor)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // includeBox
            // 
            this.includeBox.AutoSize = true;
            this.includeBox.Controls.Add(this.convertDummies);
            this.includeBox.Controls.Add(this.embedBox);
            this.includeBox.Controls.Add(this.lightsBox);
            this.includeBox.Controls.Add(this.camerasBox);
            this.includeBox.Controls.Add(this.exportDeformers);
            this.includeBox.Controls.Add(this.geometryBox);
            this.includeBox.Location = new System.Drawing.Point(16, 15);
            this.includeBox.Margin = new System.Windows.Forms.Padding(4);
            this.includeBox.Name = "includeBox";
            this.includeBox.Padding = new System.Windows.Forms.Padding(4);
            this.includeBox.Size = new System.Drawing.Size(332, 334);
            this.includeBox.TabIndex = 0;
            this.includeBox.TabStop = false;
            this.includeBox.Text = "Include";
            // 
            // convertDummies
            // 
            this.convertDummies.AutoSize = true;
            this.convertDummies.Location = new System.Drawing.Point(19, 205);
            this.convertDummies.Margin = new System.Windows.Forms.Padding(4);
            this.convertDummies.Name = "convertDummies";
            this.convertDummies.Size = new System.Drawing.Size(302, 20);
            this.convertDummies.TabIndex = 5;
            this.convertDummies.Text = "Convert Deforming Dummies to Bones";
            this.convertDummies.UseVisualStyleBackColor = true;
            this.convertDummies.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
            // 
            // embedBox
            // 
            this.embedBox.AutoSize = true;
            this.embedBox.Enabled = false;
            this.embedBox.Location = new System.Drawing.Point(19, 288);
            this.embedBox.Margin = new System.Windows.Forms.Padding(4);
            this.embedBox.Name = "embedBox";
            this.embedBox.Size = new System.Drawing.Size(118, 20);
            this.embedBox.TabIndex = 4;
            this.embedBox.Text = "Embed Media";
            this.embedBox.UseVisualStyleBackColor = true;
            // 
            // lightsBox
            // 
            this.lightsBox.AutoSize = true;
            this.lightsBox.Enabled = false;
            this.lightsBox.Location = new System.Drawing.Point(19, 260);
            this.lightsBox.Margin = new System.Windows.Forms.Padding(4);
            this.lightsBox.Name = "lightsBox";
            this.lightsBox.Size = new System.Drawing.Size(78, 20);
            this.lightsBox.TabIndex = 3;
            this.lightsBox.Text = "Lights";
            this.lightsBox.UseVisualStyleBackColor = true;
            // 
            // camerasBox
            // 
            this.camerasBox.AutoSize = true;
            this.camerasBox.Enabled = false;
            this.camerasBox.Location = new System.Drawing.Point(19, 232);
            this.camerasBox.Margin = new System.Windows.Forms.Padding(4);
            this.camerasBox.Name = "camerasBox";
            this.camerasBox.Size = new System.Drawing.Size(86, 20);
            this.camerasBox.TabIndex = 2;
            this.camerasBox.Text = "Cameras";
            this.camerasBox.UseVisualStyleBackColor = true;
            // 
            // exportDeformers
            // 
            this.exportDeformers.AutoSize = true;
            this.exportDeformers.Location = new System.Drawing.Point(19, 178);
            this.exportDeformers.Margin = new System.Windows.Forms.Padding(4);
            this.exportDeformers.Name = "exportDeformers";
            this.exportDeformers.Size = new System.Drawing.Size(142, 20);
            this.exportDeformers.TabIndex = 1;
            this.exportDeformers.Text = "Skin Deformers";
            this.exportDeformers.UseVisualStyleBackColor = true;
            this.exportDeformers.CheckedChanged += new System.EventHandler(this.exportDeformers_CheckedChanged);
            // 
            // geometryBox
            // 
            this.geometryBox.AutoSize = true;
            this.geometryBox.Controls.Add(this.exportColors);
            this.geometryBox.Controls.Add(this.exportUVs);
            this.geometryBox.Controls.Add(this.exportTangents);
            this.geometryBox.Controls.Add(this.exportNormals);
            this.geometryBox.Location = new System.Drawing.Point(9, 22);
            this.geometryBox.Margin = new System.Windows.Forms.Padding(4);
            this.geometryBox.Name = "geometryBox";
            this.geometryBox.Padding = new System.Windows.Forms.Padding(4);
            this.geometryBox.Size = new System.Drawing.Size(313, 152);
            this.geometryBox.TabIndex = 0;
            this.geometryBox.TabStop = false;
            this.geometryBox.Text = "Geometry";
            // 
            // exportColors
            // 
            this.exportColors.AutoSize = true;
            this.exportColors.Checked = true;
            this.exportColors.CheckState = System.Windows.Forms.CheckState.Checked;
            this.exportColors.Location = new System.Drawing.Point(9, 106);
            this.exportColors.Margin = new System.Windows.Forms.Padding(4);
            this.exportColors.Name = "exportColors";
            this.exportColors.Size = new System.Drawing.Size(134, 20);
            this.exportColors.TabIndex = 3;
            this.exportColors.Text = "Vertex Colors";
            this.exportColors.UseVisualStyleBackColor = true;
            this.exportColors.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
            // 
            // exportUVs
            // 
            this.exportUVs.AutoSize = true;
            this.exportUVs.Checked = true;
            this.exportUVs.CheckState = System.Windows.Forms.CheckState.Checked;
            this.exportUVs.Location = new System.Drawing.Point(9, 79);
            this.exportUVs.Margin = new System.Windows.Forms.Padding(4);
            this.exportUVs.Name = "exportUVs";
            this.exportUVs.Size = new System.Drawing.Size(142, 20);
            this.exportUVs.TabIndex = 2;
            this.exportUVs.Text = "UV Coordinates";
            this.exportUVs.UseVisualStyleBackColor = true;
            this.exportUVs.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
            // 
            // exportTangents
            // 
            this.exportTangents.AutoSize = true;
            this.exportTangents.Location = new System.Drawing.Point(9, 51);
            this.exportTangents.Margin = new System.Windows.Forms.Padding(4);
            this.exportTangents.Name = "exportTangents";
            this.exportTangents.Size = new System.Drawing.Size(94, 20);
            this.exportTangents.TabIndex = 1;
            this.exportTangents.Text = "Tangents";
            this.exportTangents.UseVisualStyleBackColor = true;
            this.exportTangents.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
            // 
            // exportNormals
            // 
            this.exportNormals.AutoSize = true;
            this.exportNormals.Checked = true;
            this.exportNormals.CheckState = System.Windows.Forms.CheckState.Checked;
            this.exportNormals.Location = new System.Drawing.Point(9, 22);
            this.exportNormals.Margin = new System.Windows.Forms.Padding(4);
            this.exportNormals.Name = "exportNormals";
            this.exportNormals.Size = new System.Drawing.Size(86, 20);
            this.exportNormals.TabIndex = 0;
            this.exportNormals.Text = "Normals";
            this.exportNormals.UseVisualStyleBackColor = true;
            this.exportNormals.CheckedChanged += new System.EventHandler(this.exportOpnions_CheckedChanged);
            // 
            // advancedBox
            // 
            this.advancedBox.AutoSize = true;
            this.advancedBox.Controls.Add(this.axisLabel);
            this.advancedBox.Controls.Add(this.upAxis);
            this.advancedBox.Controls.Add(this.scaleFactor);
            this.advancedBox.Controls.Add(this.scaleLabel);
            this.advancedBox.Location = new System.Drawing.Point(16, 355);
            this.advancedBox.Margin = new System.Windows.Forms.Padding(4);
            this.advancedBox.Name = "advancedBox";
            this.advancedBox.Padding = new System.Windows.Forms.Padding(4);
            this.advancedBox.Size = new System.Drawing.Size(332, 96);
            this.advancedBox.TabIndex = 5;
            this.advancedBox.TabStop = false;
            this.advancedBox.Text = "Advanced Options";
            // 
            // axisLabel
            // 
            this.axisLabel.AutoSize = true;
            this.axisLabel.Location = new System.Drawing.Point(8, 50);
            this.axisLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.axisLabel.Name = "axisLabel";
            this.axisLabel.Size = new System.Drawing.Size(72, 16);
            this.axisLabel.TabIndex = 3;
            this.axisLabel.Text = "Up Axis:";
            // 
            // upAxis
            // 
            this.upAxis.FormattingEnabled = true;
            this.upAxis.Items.AddRange(new object[] {
            "Y-up"});
            this.upAxis.Location = new System.Drawing.Point(88, 47);
            this.upAxis.Margin = new System.Windows.Forms.Padding(4);
            this.upAxis.MaxDropDownItems = 2;
            this.upAxis.Name = "upAxis";
            this.upAxis.Size = new System.Drawing.Size(92, 23);
            this.upAxis.TabIndex = 2;
            // 
            // scaleFactor
            // 
            this.scaleFactor.DecimalPlaces = 2;
            this.scaleFactor.Increment = new decimal(new int[] {
            1,
            0,
            0,
            131072});
            this.scaleFactor.Location = new System.Drawing.Point(128, 17);
            this.scaleFactor.Margin = new System.Windows.Forms.Padding(4);
            this.scaleFactor.Name = "scaleFactor";
            this.scaleFactor.Size = new System.Drawing.Size(61, 25);
            this.scaleFactor.TabIndex = 1;
            this.scaleFactor.Value = new decimal(new int[] {
            254,
            0,
            0,
            131072});
            // 
            // scaleLabel
            // 
            this.scaleLabel.AutoSize = true;
            this.scaleLabel.Location = new System.Drawing.Point(8, 19);
            this.scaleLabel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.scaleLabel.Name = "scaleLabel";
            this.scaleLabel.Size = new System.Drawing.Size(112, 16);
            this.scaleLabel.TabIndex = 0;
            this.scaleLabel.Text = "Scale Factor:";
            // 
            // fbxOKbutton
            // 
            this.fbxOKbutton.Location = new System.Drawing.Point(443, 455);
            this.fbxOKbutton.Margin = new System.Windows.Forms.Padding(4);
            this.fbxOKbutton.Name = "fbxOKbutton";
            this.fbxOKbutton.Size = new System.Drawing.Size(100, 26);
            this.fbxOKbutton.TabIndex = 6;
            this.fbxOKbutton.Text = "OK";
            this.fbxOKbutton.UseVisualStyleBackColor = true;
            this.fbxOKbutton.Click += new System.EventHandler(this.fbxOKbutton_Click);
            // 
            // fbxCancel
            // 
            this.fbxCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.fbxCancel.Location = new System.Drawing.Point(560, 455);
            this.fbxCancel.Margin = new System.Windows.Forms.Padding(4);
            this.fbxCancel.Name = "fbxCancel";
            this.fbxCancel.Size = new System.Drawing.Size(100, 26);
            this.fbxCancel.TabIndex = 7;
            this.fbxCancel.Text = "Cancel";
            this.fbxCancel.UseVisualStyleBackColor = true;
            this.fbxCancel.Click += new System.EventHandler(this.fbxCancel_Click);
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.Filter = "FBX file|*.fbx|Collada|*.dae";
            this.saveFileDialog1.RestoreDirectory = true;
            // 
            // showExpOpt
            // 
            this.showExpOpt.AutoSize = true;
            this.showExpOpt.Location = new System.Drawing.Point(16, 459);
            this.showExpOpt.Margin = new System.Windows.Forms.Padding(4);
            this.showExpOpt.Name = "showExpOpt";
            this.showExpOpt.Size = new System.Drawing.Size(294, 20);
            this.showExpOpt.TabIndex = 8;
            this.showExpOpt.Text = "Show this dialog for every export";
            this.showExpOpt.UseVisualStyleBackColor = true;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.convertfsb);
            this.groupBox1.Controls.Add(this.panel1);
            this.groupBox1.Controls.Add(this.converttexture);
            this.groupBox1.Location = new System.Drawing.Point(356, 15);
            this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
            this.groupBox1.Size = new System.Drawing.Size(304, 436);
            this.groupBox1.TabIndex = 9;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Convert";
            // 
            // convertfsb
            // 
            this.convertfsb.AutoSize = true;
            this.convertfsb.Checked = true;
            this.convertfsb.CheckState = System.Windows.Forms.CheckState.Checked;
            this.convertfsb.Location = new System.Drawing.Point(11, 101);
            this.convertfsb.Margin = new System.Windows.Forms.Padding(4);
            this.convertfsb.Name = "convertfsb";
            this.convertfsb.Size = new System.Drawing.Size(174, 20);
            this.convertfsb.TabIndex = 6;
            this.convertfsb.Text = "Convert FSB to WAV";
            this.convertfsb.UseVisualStyleBackColor = true;
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.tojpg);
            this.panel1.Controls.Add(this.topng);
            this.panel1.Controls.Add(this.tobmp);
            this.panel1.Location = new System.Drawing.Point(40, 52);
            this.panel1.Margin = new System.Windows.Forms.Padding(4);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(195, 38);
            this.panel1.TabIndex = 5;
            // 
            // tojpg
            // 
            this.tojpg.AutoSize = true;
            this.tojpg.Location = new System.Drawing.Point(129, 8);
            this.tojpg.Margin = new System.Windows.Forms.Padding(4);
            this.tojpg.Name = "tojpg";
            this.tojpg.Size = new System.Drawing.Size(61, 20);
            this.tojpg.TabIndex = 4;
            this.tojpg.Text = "JPEG";
            this.tojpg.UseVisualStyleBackColor = true;
            // 
            // topng
            // 
            this.topng.AutoSize = true;
            this.topng.Checked = true;
            this.topng.Location = new System.Drawing.Point(67, 8);
            this.topng.Margin = new System.Windows.Forms.Padding(4);
            this.topng.Name = "topng";
            this.topng.Size = new System.Drawing.Size(53, 20);
            this.topng.TabIndex = 3;
            this.topng.TabStop = true;
            this.topng.Text = "PNG";
            this.topng.UseVisualStyleBackColor = true;
            // 
            // tobmp
            // 
            this.tobmp.AutoSize = true;
            this.tobmp.Location = new System.Drawing.Point(4, 8);
            this.tobmp.Margin = new System.Windows.Forms.Padding(4);
            this.tobmp.Name = "tobmp";
            this.tobmp.Size = new System.Drawing.Size(53, 20);
            this.tobmp.TabIndex = 2;
            this.tobmp.Text = "BMP";
            this.tobmp.UseVisualStyleBackColor = true;
            // 
            // converttexture
            // 
            this.converttexture.AutoSize = true;
            this.converttexture.Checked = true;
            this.converttexture.CheckState = System.Windows.Forms.CheckState.Checked;
            this.converttexture.Location = new System.Drawing.Point(11, 25);
            this.converttexture.Margin = new System.Windows.Forms.Padding(4);
            this.converttexture.Name = "converttexture";
            this.converttexture.Size = new System.Drawing.Size(254, 20);
            this.converttexture.TabIndex = 1;
            this.converttexture.Text = "Convert Texture (If support)";
            this.converttexture.UseVisualStyleBackColor = true;
            // 
            // ExportOptions
            // 
            this.AcceptButton = this.fbxOKbutton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.fbxCancel;
            this.ClientSize = new System.Drawing.Size(684, 490);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.showExpOpt);
            this.Controls.Add(this.fbxCancel);
            this.Controls.Add(this.fbxOKbutton);
            this.Controls.Add(this.advancedBox);
            this.Controls.Add(this.includeBox);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "ExportOptions";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Export options";
            this.TopMost = true;
            this.includeBox.ResumeLayout(false);
            this.includeBox.PerformLayout();
            this.geometryBox.ResumeLayout(false);
            this.geometryBox.PerformLayout();
            this.advancedBox.ResumeLayout(false);
            this.advancedBox.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.scaleFactor)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : ControlDisplay.cs
with GNU Lesser General Public License v3.0
from 9and3

[DebuggerStepThrough]
        private void InitializeComponent() {
            this.DynamicBut = new Button();
            this.MinusBut = new Button();
            this.PlusBut = new Button();
            base.SuspendLayout();
            this.DynamicBut.BackColor = Color.White;
            this.DynamicBut.FlatAppearance.BorderColor = Color.FromArgb(189, 189, 189);
            this.DynamicBut.FlatAppearance.CheckedBackColor = Color.White;
            this.DynamicBut.FlatAppearance.MouseDownBackColor = Color.White;
            this.DynamicBut.FlatStyle = FlatStyle.Flat;
            this.DynamicBut.Location = new Point(0, 1);
            this.DynamicBut.Name = "DynamicBut";
            this.DynamicBut.Size = new Size(120, 28);
            this.DynamicBut.TabIndex = 0;
            this.DynamicBut.Text = "Dynamic display";
            this.DynamicBut.UseVisualStyleBackColor = false;
            this.MinusBut.BackColor = Color.White;
            this.MinusBut.FlatAppearance.BorderColor = Color.FromArgb(189, 189, 189);
            this.MinusBut.FlatAppearance.CheckedBackColor = Color.White;
            this.MinusBut.FlatAppearance.MouseDownBackColor = Color.White;
            this.MinusBut.FlatStyle = FlatStyle.Flat;
            this.MinusBut.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.MinusBut.Location = new Point(123, 1);
            this.MinusBut.Name = "MinusBut";
            this.MinusBut.Size = new Size(28, 28);
            this.MinusBut.TabIndex = 1;
            this.MinusBut.Text = "-";
            this.MinusBut.UseVisualStyleBackColor = false;
            this.PlusBut.BackColor = Color.White;
            this.PlusBut.FlatAppearance.BorderColor = Color.FromArgb(189, 189, 189);
            this.PlusBut.FlatAppearance.CheckedBackColor = Color.White;
            this.PlusBut.FlatAppearance.MouseDownBackColor = Color.White;
            this.PlusBut.FlatStyle = FlatStyle.Flat;
            this.PlusBut.Font = new Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.PlusBut.Location = new Point(150, 1);
            this.PlusBut.Name = "PlusBut";
            this.PlusBut.Size = new Size(28, 28);
            this.PlusBut.TabIndex = 2;
            this.PlusBut.Text = "+";
            this.PlusBut.UseVisualStyleBackColor = false;
            base.AutoScaleDimensions = new SizeF(6f, 13f);
            base.AutoScaleMode = AutoScaleMode.Font;
            this.BackColor = Color.White;
            base.Controls.Add(this.PlusBut);
            base.Controls.Add(this.MinusBut);
            base.Controls.Add(this.DynamicBut);
            base.Name = "DisplayControl";
            base.Size = new Size(180, 30);
            base.ResumeLayout(false);
        }

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

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAbout));
            this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.logoPictureBox = new System.Windows.Forms.PictureBox();
            this.labelProductName = new System.Windows.Forms.Label();
            this.labelVersion = new System.Windows.Forms.Label();
            this.labelCopyright = new System.Windows.Forms.Label();
            this.labelCompanyName = new System.Windows.Forms.LinkLabel();
            this.textBoxDescription = new System.Windows.Forms.TextBox();
            this.okButton = new System.Windows.Forms.Button();
            this.tableLayoutPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel
            // 
            this.tableLayoutPanel.ColumnCount = 2;
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
            this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
            this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
            this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
            this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
            this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
            this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
            this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
            this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel.Location = new System.Drawing.Point(14, 14);
            this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.tableLayoutPanel.Name = "tableLayoutPanel";
            this.tableLayoutPanel.RowCount = 6;
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.Size = new System.Drawing.Size(624, 407);
            this.tableLayoutPanel.TabIndex = 0;
            // 
            // logoPictureBox
            // 
            this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.logoPictureBox.Image = global::MikuReader.Properties.Resources.miku;
            this.logoPictureBox.Location = new System.Drawing.Point(4, 5);
            this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.logoPictureBox.Name = "logoPictureBox";
            this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
            this.logoPictureBox.Size = new System.Drawing.Size(197, 397);
            this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.logoPictureBox.TabIndex = 12;
            this.logoPictureBox.TabStop = false;
            // 
            // labelProductName
            // 
            this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelProductName.Location = new System.Drawing.Point(214, 0);
            this.labelProductName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelProductName.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelProductName.Name = "labelProductName";
            this.labelProductName.Size = new System.Drawing.Size(406, 26);
            this.labelProductName.TabIndex = 19;
            this.labelProductName.Text = "MikuReader";
            this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVersion
            // 
            this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelVersion.Location = new System.Drawing.Point(214, 40);
            this.labelVersion.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelVersion.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelVersion.Name = "labelVersion";
            this.labelVersion.Size = new System.Drawing.Size(406, 26);
            this.labelVersion.TabIndex = 0;
            this.labelVersion.Text = "Version 1";
            this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelCopyright
            // 
            this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelCopyright.Location = new System.Drawing.Point(214, 80);
            this.labelCopyright.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelCopyright.Name = "labelCopyright";
            this.labelCopyright.Size = new System.Drawing.Size(406, 26);
            this.labelCopyright.TabIndex = 21;
            this.labelCopyright.Text = "Copyright 2019 9volt";
            this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelCompanyName
            // 
            this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelCompanyName.Location = new System.Drawing.Point(214, 120);
            this.labelCompanyName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelCompanyName.Name = "labelCompanyName";
            this.labelCompanyName.Size = new System.Drawing.Size(406, 26);
            this.labelCompanyName.TabIndex = 22;
            this.labelCompanyName.TabStop = true;
            this.labelCompanyName.Text = "Visit Our Website";
            this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.labelCompanyName.VisitedLinkColor = System.Drawing.Color.Blue;
            this.labelCompanyName.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.labelCompanyName_LinkClicked);
            // 
            // textBoxDescription
            // 
            this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxDescription.Location = new System.Drawing.Point(214, 165);
            this.textBoxDescription.Margin = new System.Windows.Forms.Padding(9, 5, 4, 5);
            this.textBoxDescription.Multiline = true;
            this.textBoxDescription.Name = "textBoxDescription";
            this.textBoxDescription.ReadOnly = true;
            this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxDescription.Size = new System.Drawing.Size(406, 193);
            this.textBoxDescription.TabIndex = 23;
            this.textBoxDescription.TabStop = false;
            this.textBoxDescription.Text = resources.GetString("textBoxDescription.Text");
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.okButton.Location = new System.Drawing.Point(508, 368);
            this.okButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(112, 34);
            this.okButton.TabIndex = 24;
            this.okButton.Text = "&OK";
            this.okButton.Click += new System.EventHandler(this.okButton_Click);
            // 
            // FrmAbout
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(652, 435);
            this.Controls.Add(this.tableLayoutPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmAbout";
            this.Padding = new System.Windows.Forms.Padding(14);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "About MikuReader";
            this.Load += new System.EventHandler(this.frmAbout_Load);
            this.tableLayoutPanel.ResumeLayout(false);
            this.tableLayoutPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
            this.ResumeLayout(false);

        }

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 : FrmAbout.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.logoPictureBox = new System.Windows.Forms.PictureBox();
            this.labelProductName = new System.Windows.Forms.Label();
            this.labelVersion = new System.Windows.Forms.Label();
            this.labelCompanyName = new System.Windows.Forms.Label();
            this.labelGithubUrl = new System.Windows.Forms.LinkLabel();
            this.textBoxDescription = new System.Windows.Forms.TextBox();
            this.okButton = new System.Windows.Forms.Button();
            this.tableLayoutPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel
            // 
            this.tableLayoutPanel.ColumnCount = 2;
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
            this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
            this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
            this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
            this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 2);
            this.tableLayoutPanel.Controls.Add(this.labelGithubUrl, 1, 3);
            this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
            this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
            this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel.Location = new System.Drawing.Point(14, 14);
            this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.tableLayoutPanel.Name = "tableLayoutPanel";
            this.tableLayoutPanel.RowCount = 6;
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
            this.tableLayoutPanel.Size = new System.Drawing.Size(624, 407);
            this.tableLayoutPanel.TabIndex = 0;
            // 
            // logoPictureBox
            // 
            this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.logoPictureBox.Image = global::MikuReader.wf.Properties.Resources.miku;
            this.logoPictureBox.Location = new System.Drawing.Point(4, 5);
            this.logoPictureBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.logoPictureBox.Name = "logoPictureBox";
            this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
            this.logoPictureBox.Size = new System.Drawing.Size(197, 397);
            this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.logoPictureBox.TabIndex = 12;
            this.logoPictureBox.TabStop = false;
            // 
            // labelProductName
            // 
            this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelProductName.Location = new System.Drawing.Point(214, 0);
            this.labelProductName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelProductName.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelProductName.Name = "labelProductName";
            this.labelProductName.Size = new System.Drawing.Size(406, 26);
            this.labelProductName.TabIndex = 19;
            this.labelProductName.Text = "Product Name";
            this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelVersion
            // 
            this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelVersion.Location = new System.Drawing.Point(214, 40);
            this.labelVersion.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelVersion.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelVersion.Name = "labelVersion";
            this.labelVersion.Size = new System.Drawing.Size(406, 26);
            this.labelVersion.TabIndex = 0;
            this.labelVersion.Text = "Version";
            this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelCompanyName
            // 
            this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelCompanyName.Location = new System.Drawing.Point(214, 80);
            this.labelCompanyName.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelCompanyName.Name = "labelCompanyName";
            this.labelCompanyName.Size = new System.Drawing.Size(406, 26);
            this.labelCompanyName.TabIndex = 21;
            this.labelCompanyName.Text = "Copyright";
            this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // labelGithubUrl
            // 
            this.labelGithubUrl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelGithubUrl.Location = new System.Drawing.Point(214, 120);
            this.labelGithubUrl.Margin = new System.Windows.Forms.Padding(9, 0, 4, 0);
            this.labelGithubUrl.MaximumSize = new System.Drawing.Size(0, 26);
            this.labelGithubUrl.Name = "labelGithubUrl";
            this.labelGithubUrl.Size = new System.Drawing.Size(406, 26);
            this.labelGithubUrl.TabIndex = 22;
            this.labelGithubUrl.TabStop = true;
            this.labelGithubUrl.Text = "GitHub Repository";
            this.labelGithubUrl.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.labelGithubUrl.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LabelGithubUrl_LinkClicked);
            // 
            // textBoxDescription
            // 
            this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
            this.textBoxDescription.Location = new System.Drawing.Point(214, 165);
            this.textBoxDescription.Margin = new System.Windows.Forms.Padding(9, 5, 4, 5);
            this.textBoxDescription.Multiline = true;
            this.textBoxDescription.Name = "textBoxDescription";
            this.textBoxDescription.ReadOnly = true;
            this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.textBoxDescription.Size = new System.Drawing.Size(406, 193);
            this.textBoxDescription.TabIndex = 23;
            this.textBoxDescription.TabStop = false;
            this.textBoxDescription.Text = "MikuReader is an open-source manga reader, downloader, and tracker for MangaDex a" +
    "nd nHentai.";
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.okButton.Location = new System.Drawing.Point(508, 368);
            this.okButton.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(112, 34);
            this.okButton.TabIndex = 24;
            this.okButton.Text = "&OK";
            this.okButton.Click += new System.EventHandler(this.OkButton_Click);
            // 
            // FrmAbout
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(652, 435);
            this.Controls.Add(this.tableLayoutPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmAbout";
            this.Padding = new System.Windows.Forms.Padding(14);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "FrmAbout";
            this.tableLayoutPanel.ResumeLayout(false);
            this.tableLayoutPanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
            this.ResumeLayout(false);

        }

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 : FrmEdit.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmEdit));
            this.btnDelete = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnCancel = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.txtreplacedle = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.cmboLang = new System.Windows.Forms.ComboBox();
            this.cmboGroup = new System.Windows.Forms.ComboBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.btnChapSelect = new System.Windows.Forms.Button();
            this.btnEnable = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnDelete
            // 
            this.btnDelete.Enabled = false;
            this.btnDelete.ForeColor = System.Drawing.Color.Red;
            this.btnDelete.Location = new System.Drawing.Point(12, 250);
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Size = new System.Drawing.Size(129, 50);
            this.btnDelete.TabIndex = 0;
            this.btnDelete.Text = "Delete";
            this.btnDelete.UseVisualStyleBackColor = true;
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(518, 250);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(129, 50);
            this.btnSave.TabIndex = 1;
            this.btnSave.Text = "Save";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(383, 250);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(129, 50);
            this.btnCancel.TabIndex = 2;
            this.btnCancel.Text = "Cancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 22);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(38, 20);
            this.label1.TabIndex = 3;
            this.label1.Text = "replacedle";
            // 
            // txtreplacedle
            // 
            this.txtreplacedle.Location = new System.Drawing.Point(50, 19);
            this.txtreplacedle.Name = "txtreplacedle";
            this.txtreplacedle.Size = new System.Drawing.Size(579, 26);
            this.txtreplacedle.TabIndex = 4;
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 22);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(81, 20);
            this.label2.TabIndex = 5;
            this.label2.Text = "Language";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 66);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(54, 20);
            this.label3.TabIndex = 6;
            this.label3.Text = "Group";
            // 
            // cmboLang
            // 
            this.cmboLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboLang.Enabled = false;
            this.cmboLang.FormattingEnabled = true;
            this.cmboLang.Location = new System.Drawing.Point(93, 19);
            this.cmboLang.Name = "cmboLang";
            this.cmboLang.Size = new System.Drawing.Size(536, 28);
            this.cmboLang.TabIndex = 7;
            this.cmboLang.SelectedIndexChanged += new System.EventHandler(this.CmboLang_SelectedIndexChanged);
            // 
            // cmboGroup
            // 
            this.cmboGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboGroup.Enabled = false;
            this.cmboGroup.FormattingEnabled = true;
            this.cmboGroup.Location = new System.Drawing.Point(93, 63);
            this.cmboGroup.Name = "cmboGroup";
            this.cmboGroup.Size = new System.Drawing.Size(536, 28);
            this.cmboGroup.TabIndex = 8;
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.txtreplacedle);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Location = new System.Drawing.Point(12, 12);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(635, 76);
            this.groupBox1.TabIndex = 9;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Cosmetics";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.btnChapSelect);
            this.groupBox2.Controls.Add(this.btnEnable);
            this.groupBox2.Controls.Add(this.label2);
            this.groupBox2.Controls.Add(this.cmboGroup);
            this.groupBox2.Controls.Add(this.cmboLang);
            this.groupBox2.Controls.Add(this.label3);
            this.groupBox2.Location = new System.Drawing.Point(12, 97);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(635, 147);
            this.groupBox2.TabIndex = 10;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Downloads";
            // 
            // btnChapSelect
            // 
            this.btnChapSelect.Enabled = false;
            this.btnChapSelect.ForeColor = System.Drawing.Color.SaddleBrown;
            this.btnChapSelect.Location = new System.Drawing.Point(452, 97);
            this.btnChapSelect.Name = "btnChapSelect";
            this.btnChapSelect.Size = new System.Drawing.Size(170, 41);
            this.btnChapSelect.TabIndex = 10;
            this.btnChapSelect.Text = "Select Chapters...";
            this.btnChapSelect.UseVisualStyleBackColor = true;
            this.btnChapSelect.Click += new System.EventHandler(this.BtnChapSelect_Click);
            // 
            // btnEnable
            // 
            this.btnEnable.Location = new System.Drawing.Point(6, 97);
            this.btnEnable.Name = "btnEnable";
            this.btnEnable.Size = new System.Drawing.Size(116, 41);
            this.btnEnable.TabIndex = 9;
            this.btnEnable.Text = "Enable";
            this.btnEnable.UseVisualStyleBackColor = true;
            this.btnEnable.Click += new System.EventHandler(this.BtnEnable_Click);
            // 
            // FrmEdit
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(665, 318);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.btnDelete);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.btnCancel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "FrmEdit";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Edit";
            this.Load += new System.EventHandler(this.FrmEdit_Load);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);

        }

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 : FrmLauncher.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLauncher));
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.btnRead = new System.Windows.Forms.Button();
            this.btnBrowse = new System.Windows.Forms.Button();
            this.btnRefresh = new System.Windows.Forms.Button();
            this.BtnUpdate = new System.Windows.Forms.Button();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabpageManga = new System.Windows.Forms.TabPage();
            this.lstManga = new System.Windows.Forms.ListBox();
            this.tabpageHentai = new System.Windows.Forms.TabPage();
            this.lstHentai = new System.Windows.Forms.ListBox();
            this.btnEdit = new System.Windows.Forms.Button();
            this.lblStatus = new System.Windows.Forms.Label();
            this.btnSettings = new System.Windows.Forms.Button();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tabControl1.SuspendLayout();
            this.tabpageManga.SuspendLayout();
            this.tabpageHentai.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(12, 522);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(754, 23);
            this.progressBar1.TabIndex = 1;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Franchise", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(476, 38);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(288, 68);
            this.label1.TabIndex = 3;
            this.label1.Text = "MikuReader";
            this.label1.Click += new System.EventHandler(this.ShowAboutBox);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Franchise", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(652, 12);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(87, 38);
            this.label2.TabIndex = 4;
            this.label2.Text = "9volt";
            this.label2.Click += new System.EventHandler(this.ShowAboutBox);
            // 
            // btnRead
            // 
            this.btnRead.Location = new System.Drawing.Point(626, 428);
            this.btnRead.Name = "btnRead";
            this.btnRead.Size = new System.Drawing.Size(136, 88);
            this.btnRead.TabIndex = 1;
            this.btnRead.Text = "Read";
            this.btnRead.UseVisualStyleBackColor = true;
            this.btnRead.Click += new System.EventHandler(this.BtnRead_Click);
            // 
            // btnBrowse
            // 
            this.btnBrowse.Location = new System.Drawing.Point(477, 471);
            this.btnBrowse.Name = "btnBrowse";
            this.btnBrowse.Size = new System.Drawing.Size(142, 38);
            this.btnBrowse.TabIndex = 4;
            this.btnBrowse.Text = "Browse";
            this.btnBrowse.UseVisualStyleBackColor = true;
            this.btnBrowse.Click += new System.EventHandler(this.BtnBrowse_Click);
            // 
            // btnRefresh
            // 
            this.btnRefresh.Location = new System.Drawing.Point(328, 428);
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(142, 38);
            this.btnRefresh.TabIndex = 2;
            this.btnRefresh.Text = "Refresh";
            this.btnRefresh.UseVisualStyleBackColor = true;
            this.btnRefresh.Click += new System.EventHandler(this.BtnRefresh_Click);
            // 
            // BtnUpdate
            // 
            this.BtnUpdate.Location = new System.Drawing.Point(328, 471);
            this.BtnUpdate.Name = "BtnUpdate";
            this.BtnUpdate.Size = new System.Drawing.Size(142, 38);
            this.BtnUpdate.TabIndex = 3;
            this.BtnUpdate.Text = "Update";
            this.BtnUpdate.UseVisualStyleBackColor = true;
            this.BtnUpdate.Click += new System.EventHandler(this.BtnUpdate_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabpageManga);
            this.tabControl1.Controls.Add(this.tabpageHentai);
            this.tabControl1.Location = new System.Drawing.Point(280, 109);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(482, 311);
            this.tabControl1.TabIndex = 6;
            // 
            // tabpageManga
            // 
            this.tabpageManga.Controls.Add(this.lstManga);
            this.tabpageManga.Location = new System.Drawing.Point(4, 29);
            this.tabpageManga.Name = "tabpageManga";
            this.tabpageManga.Padding = new System.Windows.Forms.Padding(3);
            this.tabpageManga.Size = new System.Drawing.Size(474, 278);
            this.tabpageManga.TabIndex = 0;
            this.tabpageManga.Text = "Manga";
            this.tabpageManga.UseVisualStyleBackColor = true;
            // 
            // lstManga
            // 
            this.lstManga.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lstManga.Font = new System.Drawing.Font("Menlo", 8F);
            this.lstManga.FormattingEnabled = true;
            this.lstManga.ItemHeight = 19;
            this.lstManga.Location = new System.Drawing.Point(3, 3);
            this.lstManga.Name = "lstManga";
            this.lstManga.Size = new System.Drawing.Size(468, 272);
            this.lstManga.TabIndex = 0;
            // 
            // tabpageHentai
            // 
            this.tabpageHentai.Controls.Add(this.lstHentai);
            this.tabpageHentai.Location = new System.Drawing.Point(4, 29);
            this.tabpageHentai.Name = "tabpageHentai";
            this.tabpageHentai.Padding = new System.Windows.Forms.Padding(3);
            this.tabpageHentai.Size = new System.Drawing.Size(474, 278);
            this.tabpageHentai.TabIndex = 1;
            this.tabpageHentai.Text = "Hentai";
            this.tabpageHentai.UseVisualStyleBackColor = true;
            // 
            // lstHentai
            // 
            this.lstHentai.Dock = System.Windows.Forms.DockStyle.Fill;
            this.lstHentai.Font = new System.Drawing.Font("Menlo", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lstHentai.FormattingEnabled = true;
            this.lstHentai.ItemHeight = 19;
            this.lstHentai.Location = new System.Drawing.Point(3, 3);
            this.lstHentai.Name = "lstHentai";
            this.lstHentai.Size = new System.Drawing.Size(468, 272);
            this.lstHentai.TabIndex = 0;
            // 
            // btnEdit
            // 
            this.btnEdit.Location = new System.Drawing.Point(477, 428);
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Size = new System.Drawing.Size(142, 38);
            this.btnEdit.TabIndex = 7;
            this.btnEdit.Text = "Edit";
            this.btnEdit.UseVisualStyleBackColor = true;
            this.btnEdit.Click += new System.EventHandler(this.BtnEdit_Click);
            // 
            // lblStatus
            // 
            this.lblStatus.AutoSize = true;
            this.lblStatus.Location = new System.Drawing.Point(12, 548);
            this.lblStatus.Name = "lblStatus";
            this.lblStatus.Size = new System.Drawing.Size(55, 20);
            this.lblStatus.TabIndex = 8;
            this.lblStatus.Text = "Ready";
            // 
            // btnSettings
            // 
            this.btnSettings.BackgroundImage = global::MikuReader.wf.Properties.Resources.settings;
            this.btnSettings.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.btnSettings.Location = new System.Drawing.Point(280, 471);
            this.btnSettings.Name = "btnSettings";
            this.btnSettings.Size = new System.Drawing.Size(40, 42);
            this.btnSettings.TabIndex = 5;
            this.btnSettings.UseVisualStyleBackColor = true;
            this.btnSettings.Click += new System.EventHandler(this.BtnSettings_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::MikuReader.wf.Properties.Resources.miku;
            this.pictureBox1.Location = new System.Drawing.Point(12, 12);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(260, 503);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // FrmLauncher
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(776, 574);
            this.Controls.Add(this.lblStatus);
            this.Controls.Add(this.btnEdit);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.BtnUpdate);
            this.Controls.Add(this.btnRefresh);
            this.Controls.Add(this.btnBrowse);
            this.Controls.Add(this.btnRead);
            this.Controls.Add(this.btnSettings);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.progressBar1);
            this.Controls.Add(this.pictureBox1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(798, 630);
            this.MinimumSize = new System.Drawing.Size(798, 630);
            this.Name = "FrmLauncher";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader/2";
            this.Load += new System.EventHandler(this.FrmLauncher_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabpageManga.ResumeLayout(false);
            this.tabpageHentai.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

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 : 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 : FrmSettings.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSettings));
            this.rbSingle = new System.Windows.Forms.RadioButton();
            this.rbDouble = new System.Windows.Forms.RadioButton();
            this.groupBoxReader = new System.Windows.Forms.GroupBox();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnAbout = new System.Windows.Forms.Button();
            this.groupBoxApplication = new System.Windows.Forms.GroupBox();
            this.lblLang = new System.Windows.Forms.Label();
            this.cmboLanguage = new System.Windows.Forms.ComboBox();
            this.btnBrowse = new System.Windows.Forms.Button();
            this.lblAppDir = new System.Windows.Forms.Label();
            this.txtDir = new System.Windows.Forms.TextBox();
            this.chkUpdates = new System.Windows.Forms.CheckBox();
            this.groupBoxReader.SuspendLayout();
            this.groupBoxApplication.SuspendLayout();
            this.SuspendLayout();
            // 
            // rbSingle
            // 
            this.rbSingle.AutoSize = true;
            this.rbSingle.Location = new System.Drawing.Point(6, 25);
            this.rbSingle.Name = "rbSingle";
            this.rbSingle.Size = new System.Drawing.Size(119, 24);
            this.rbSingle.TabIndex = 0;
            this.rbSingle.TabStop = true;
            this.rbSingle.Text = "Single Page";
            this.rbSingle.UseVisualStyleBackColor = true;
            // 
            // rbDouble
            // 
            this.rbDouble.AutoSize = true;
            this.rbDouble.Location = new System.Drawing.Point(6, 55);
            this.rbDouble.Name = "rbDouble";
            this.rbDouble.Size = new System.Drawing.Size(126, 24);
            this.rbDouble.TabIndex = 1;
            this.rbDouble.TabStop = true;
            this.rbDouble.Text = "Double Page";
            this.rbDouble.UseVisualStyleBackColor = true;
            // 
            // groupBoxReader
            // 
            this.groupBoxReader.Controls.Add(this.rbSingle);
            this.groupBoxReader.Controls.Add(this.rbDouble);
            this.groupBoxReader.Location = new System.Drawing.Point(12, 12);
            this.groupBoxReader.Name = "groupBoxReader";
            this.groupBoxReader.Size = new System.Drawing.Size(168, 178);
            this.groupBoxReader.TabIndex = 2;
            this.groupBoxReader.TabStop = false;
            this.groupBoxReader.Text = "Reader";
            // 
            // btnSave
            // 
            this.btnSave.Location = new System.Drawing.Point(364, 196);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(121, 44);
            this.btnSave.TabIndex = 3;
            this.btnSave.Text = "Save";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.BtnSave_Click);
            // 
            // btnAbout
            // 
            this.btnAbout.Location = new System.Drawing.Point(12, 196);
            this.btnAbout.Name = "btnAbout";
            this.btnAbout.Size = new System.Drawing.Size(121, 44);
            this.btnAbout.TabIndex = 4;
            this.btnAbout.Text = "About";
            this.btnAbout.UseVisualStyleBackColor = true;
            this.btnAbout.Click += new System.EventHandler(this.BtnAbout_Click);
            // 
            // groupBoxApplication
            // 
            this.groupBoxApplication.Controls.Add(this.lblLang);
            this.groupBoxApplication.Controls.Add(this.cmboLanguage);
            this.groupBoxApplication.Controls.Add(this.btnBrowse);
            this.groupBoxApplication.Controls.Add(this.lblAppDir);
            this.groupBoxApplication.Controls.Add(this.txtDir);
            this.groupBoxApplication.Controls.Add(this.chkUpdates);
            this.groupBoxApplication.Location = new System.Drawing.Point(186, 12);
            this.groupBoxApplication.Name = "groupBoxApplication";
            this.groupBoxApplication.Size = new System.Drawing.Size(291, 178);
            this.groupBoxApplication.TabIndex = 5;
            this.groupBoxApplication.TabStop = false;
            this.groupBoxApplication.Text = "Application";
            // 
            // lblLang
            // 
            this.lblLang.AutoSize = true;
            this.lblLang.Location = new System.Drawing.Point(6, 121);
            this.lblLang.Name = "lblLang";
            this.lblLang.Size = new System.Drawing.Size(149, 20);
            this.lblLang.TabIndex = 10;
            this.lblLang.Text = "Interface Language";
            // 
            // cmboLanguage
            // 
            this.cmboLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmboLanguage.FormattingEnabled = true;
            this.cmboLanguage.Location = new System.Drawing.Point(6, 144);
            this.cmboLanguage.Name = "cmboLanguage";
            this.cmboLanguage.Size = new System.Drawing.Size(279, 28);
            this.cmboLanguage.TabIndex = 9;
            // 
            // btnBrowse
            // 
            this.btnBrowse.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnBrowse.Location = new System.Drawing.Point(244, 75);
            this.btnBrowse.Name = "btnBrowse";
            this.btnBrowse.Size = new System.Drawing.Size(41, 36);
            this.btnBrowse.TabIndex = 8;
            this.btnBrowse.Text = "...";
            this.btnBrowse.UseVisualStyleBackColor = true;
            this.btnBrowse.Click += new System.EventHandler(this.BtnBrowse_Click);
            // 
            // lblAppDir
            // 
            this.lblAppDir.AutoSize = true;
            this.lblAppDir.Location = new System.Drawing.Point(2, 59);
            this.lblAppDir.Name = "lblAppDir";
            this.lblAppDir.Size = new System.Drawing.Size(105, 20);
            this.lblAppDir.TabIndex = 7;
            this.lblAppDir.Text = "App Directory";
            // 
            // txtDir
            // 
            this.txtDir.Location = new System.Drawing.Point(6, 82);
            this.txtDir.Name = "txtDir";
            this.txtDir.Size = new System.Drawing.Size(232, 26);
            this.txtDir.TabIndex = 6;
            // 
            // chkUpdates
            // 
            this.chkUpdates.AutoSize = true;
            this.chkUpdates.Location = new System.Drawing.Point(6, 26);
            this.chkUpdates.Name = "chkUpdates";
            this.chkUpdates.Size = new System.Drawing.Size(241, 24);
            this.chkUpdates.TabIndex = 0;
            this.chkUpdates.Text = "Check for updates on startup";
            this.chkUpdates.UseVisualStyleBackColor = true;
            // 
            // FrmSettings
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(497, 252);
            this.Controls.Add(this.groupBoxApplication);
            this.Controls.Add(this.btnAbout);
            this.Controls.Add(this.btnSave);
            this.Controls.Add(this.groupBoxReader);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "FrmSettings";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader Settings";
            this.Load += new System.EventHandler(this.FrmSettings_Load);
            this.groupBoxReader.ResumeLayout(false);
            this.groupBoxReader.PerformLayout();
            this.groupBoxApplication.ResumeLayout(false);
            this.groupBoxApplication.PerformLayout();
            this.ResumeLayout(false);

        }

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 : FrmStartPage.Designer.cs
with GNU General Public License v3.0
from 9vult

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmStartPage));
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.btnBrowseManga = new System.Windows.Forms.Button();
            this.btnRefreshManga = new System.Windows.Forms.Button();
            this.lstManga = new System.Windows.Forms.ListBox();
            this.btnReadManga = new System.Windows.Forms.Button();
            this.btnGlobalMangaSettings = new System.Windows.Forms.Button();
            this.lblDownloading = new System.Windows.Forms.Label();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.currentProgress = new System.Windows.Forms.ProgressBar();
            this.btnIndMangaSettings = new System.Windows.Forms.Button();
            this.btnUpdateManga = new System.Windows.Forms.Button();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tpManga = new System.Windows.Forms.TabPage();
            this.tpHentai = new System.Windows.Forms.TabPage();
            this.lstHentai = new System.Windows.Forms.ListBox();
            this.btnBrowseHentai = new System.Windows.Forms.Button();
            this.btnRefreshHentai = new System.Windows.Forms.Button();
            this.btnReadHentai = new System.Windows.Forms.Button();
            this.btnHentaiSettings = new System.Windows.Forms.Button();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.tabControl1.SuspendLayout();
            this.tpManga.SuspendLayout();
            this.tpHentai.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Cabin", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(274, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(99, 44);
            this.label1.TabIndex = 1;
            this.label1.Text = "9volt";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Cabin", 28F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(270, 53);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(316, 68);
            this.label2.TabIndex = 2;
            this.label2.Text = "MikuReader";
            // 
            // btnBrowseManga
            // 
            this.btnBrowseManga.Location = new System.Drawing.Point(3, 283);
            this.btnBrowseManga.Name = "btnBrowseManga";
            this.btnBrowseManga.Size = new System.Drawing.Size(190, 47);
            this.btnBrowseManga.TabIndex = 2;
            this.btnBrowseManga.Text = "Browse For Manga";
            this.btnBrowseManga.UseVisualStyleBackColor = true;
            this.btnBrowseManga.Click += new System.EventHandler(this.BtnBrowseManga_Click);
            // 
            // btnRefreshManga
            // 
            this.btnRefreshManga.Location = new System.Drawing.Point(3, 336);
            this.btnRefreshManga.Name = "btnRefreshManga";
            this.btnRefreshManga.Size = new System.Drawing.Size(190, 32);
            this.btnRefreshManga.TabIndex = 3;
            this.btnRefreshManga.Text = "Refresh All";
            this.btnRefreshManga.UseVisualStyleBackColor = true;
            this.btnRefreshManga.Click += new System.EventHandler(this.BtnRefreshManga_Click);
            // 
            // lstManga
            // 
            this.lstManga.Font = new System.Drawing.Font("Menlo", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lstManga.FormattingEnabled = true;
            this.lstManga.ItemHeight = 19;
            this.lstManga.Location = new System.Drawing.Point(3, 6);
            this.lstManga.Name = "lstManga";
            this.lstManga.Size = new System.Drawing.Size(386, 270);
            this.lstManga.TabIndex = 4;
            // 
            // btnReadManga
            // 
            this.btnReadManga.Location = new System.Drawing.Point(199, 283);
            this.btnReadManga.Name = "btnReadManga";
            this.btnReadManga.Size = new System.Drawing.Size(190, 47);
            this.btnReadManga.TabIndex = 1;
            this.btnReadManga.Text = "Read";
            this.btnReadManga.UseVisualStyleBackColor = true;
            this.btnReadManga.Click += new System.EventHandler(this.BtnReadManga_Click);
            // 
            // btnGlobalMangaSettings
            // 
            this.btnGlobalMangaSettings.Location = new System.Drawing.Point(199, 374);
            this.btnGlobalMangaSettings.Name = "btnGlobalMangaSettings";
            this.btnGlobalMangaSettings.Size = new System.Drawing.Size(190, 32);
            this.btnGlobalMangaSettings.TabIndex = 6;
            this.btnGlobalMangaSettings.Text = "Settings";
            this.btnGlobalMangaSettings.UseVisualStyleBackColor = true;
            this.btnGlobalMangaSettings.Click += new System.EventHandler(this.BtnSettings_Click);
            // 
            // lblDownloading
            // 
            this.lblDownloading.AutoSize = true;
            this.lblDownloading.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblDownloading.ForeColor = System.Drawing.Color.Red;
            this.lblDownloading.Location = new System.Drawing.Point(522, 12);
            this.lblDownloading.Name = "lblDownloading";
            this.lblDownloading.Size = new System.Drawing.Size(166, 40);
            this.lblDownloading.TabIndex = 10;
            this.lblDownloading.Text = "Downloading...\r\nPlease do not close";
            this.lblDownloading.TextAlign = System.Drawing.ContentAlignment.TopRight;
            this.lblDownloading.Visible = false;
            // 
            // timer1
            // 
            this.timer1.Interval = 500;
            this.timer1.Tick += new System.EventHandler(this.Timer1_Tick);
            // 
            // currentProgress
            // 
            this.currentProgress.Location = new System.Drawing.Point(379, 13);
            this.currentProgress.Name = "currentProgress";
            this.currentProgress.Size = new System.Drawing.Size(176, 20);
            this.currentProgress.TabIndex = 11;
            this.currentProgress.Visible = false;
            // 
            // btnIndMangaSettings
            // 
            this.btnIndMangaSettings.Location = new System.Drawing.Point(199, 336);
            this.btnIndMangaSettings.Name = "btnIndMangaSettings";
            this.btnIndMangaSettings.Size = new System.Drawing.Size(190, 32);
            this.btnIndMangaSettings.TabIndex = 12;
            this.btnIndMangaSettings.Text = "Selected Settings";
            this.btnIndMangaSettings.UseVisualStyleBackColor = true;
            this.btnIndMangaSettings.Click += new System.EventHandler(this.BtnIndMangaSettings_Click);
            // 
            // btnUpdateManga
            // 
            this.btnUpdateManga.Location = new System.Drawing.Point(3, 373);
            this.btnUpdateManga.Name = "btnUpdateManga";
            this.btnUpdateManga.Size = new System.Drawing.Size(190, 32);
            this.btnUpdateManga.TabIndex = 13;
            this.btnUpdateManga.Text = "Update All";
            this.btnUpdateManga.UseVisualStyleBackColor = true;
            this.btnUpdateManga.Click += new System.EventHandler(this.BtnUpdate_Click);
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tpManga);
            this.tabControl1.Controls.Add(this.tpHentai);
            this.tabControl1.Location = new System.Drawing.Point(282, 124);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(406, 445);
            this.tabControl1.TabIndex = 14;
            // 
            // tpManga
            // 
            this.tpManga.Controls.Add(this.lstManga);
            this.tpManga.Controls.Add(this.btnUpdateManga);
            this.tpManga.Controls.Add(this.btnBrowseManga);
            this.tpManga.Controls.Add(this.btnIndMangaSettings);
            this.tpManga.Controls.Add(this.btnRefreshManga);
            this.tpManga.Controls.Add(this.btnReadManga);
            this.tpManga.Controls.Add(this.btnGlobalMangaSettings);
            this.tpManga.Location = new System.Drawing.Point(4, 29);
            this.tpManga.Name = "tpManga";
            this.tpManga.Padding = new System.Windows.Forms.Padding(3);
            this.tpManga.Size = new System.Drawing.Size(398, 412);
            this.tpManga.TabIndex = 0;
            this.tpManga.Text = "MangaDex";
            this.tpManga.UseVisualStyleBackColor = true;
            // 
            // tpHentai
            // 
            this.tpHentai.Controls.Add(this.lstHentai);
            this.tpHentai.Controls.Add(this.btnBrowseHentai);
            this.tpHentai.Controls.Add(this.btnRefreshHentai);
            this.tpHentai.Controls.Add(this.btnReadHentai);
            this.tpHentai.Controls.Add(this.btnHentaiSettings);
            this.tpHentai.Location = new System.Drawing.Point(4, 29);
            this.tpHentai.Name = "tpHentai";
            this.tpHentai.Padding = new System.Windows.Forms.Padding(3);
            this.tpHentai.Size = new System.Drawing.Size(398, 412);
            this.tpHentai.TabIndex = 1;
            this.tpHentai.Text = "nHentai";
            this.tpHentai.UseVisualStyleBackColor = true;
            // 
            // lstHentai
            // 
            this.lstHentai.Font = new System.Drawing.Font("Menlo", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lstHentai.FormattingEnabled = true;
            this.lstHentai.ItemHeight = 19;
            this.lstHentai.Location = new System.Drawing.Point(6, 6);
            this.lstHentai.Name = "lstHentai";
            this.lstHentai.Size = new System.Drawing.Size(386, 270);
            this.lstHentai.TabIndex = 17;
            // 
            // btnBrowseHentai
            // 
            this.btnBrowseHentai.Location = new System.Drawing.Point(6, 283);
            this.btnBrowseHentai.Name = "btnBrowseHentai";
            this.btnBrowseHentai.Size = new System.Drawing.Size(190, 47);
            this.btnBrowseHentai.TabIndex = 15;
            this.btnBrowseHentai.Text = "Browse For Hentai";
            this.btnBrowseHentai.UseVisualStyleBackColor = true;
            this.btnBrowseHentai.Click += new System.EventHandler(this.BtnBrowseHentai_Click);
            // 
            // btnRefreshHentai
            // 
            this.btnRefreshHentai.Location = new System.Drawing.Point(6, 336);
            this.btnRefreshHentai.Name = "btnRefreshHentai";
            this.btnRefreshHentai.Size = new System.Drawing.Size(386, 32);
            this.btnRefreshHentai.TabIndex = 16;
            this.btnRefreshHentai.Text = "Refresh All";
            this.btnRefreshHentai.UseVisualStyleBackColor = true;
            this.btnRefreshHentai.Click += new System.EventHandler(this.BtnRefreshHentai_Click);
            // 
            // btnReadHentai
            // 
            this.btnReadHentai.Location = new System.Drawing.Point(202, 283);
            this.btnReadHentai.Name = "btnReadHentai";
            this.btnReadHentai.Size = new System.Drawing.Size(190, 47);
            this.btnReadHentai.TabIndex = 14;
            this.btnReadHentai.Text = "Read";
            this.btnReadHentai.UseVisualStyleBackColor = true;
            this.btnReadHentai.Click += new System.EventHandler(this.BtnReadHentai_Click);
            // 
            // btnHentaiSettings
            // 
            this.btnHentaiSettings.Location = new System.Drawing.Point(3, 374);
            this.btnHentaiSettings.Name = "btnHentaiSettings";
            this.btnHentaiSettings.Size = new System.Drawing.Size(389, 32);
            this.btnHentaiSettings.TabIndex = 18;
            this.btnHentaiSettings.Text = "Hentai Settings";
            this.btnHentaiSettings.UseVisualStyleBackColor = true;
            this.btnHentaiSettings.Click += new System.EventHandler(this.BtnHentaiSettings_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::MikuReader.Properties.Resources.miku;
            this.pictureBox1.Location = new System.Drawing.Point(20, 12);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(256, 553);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // FrmStartPage
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(700, 584);
            this.Controls.Add(this.tabControl1);
            this.Controls.Add(this.currentProgress);
            this.Controls.Add(this.lblDownloading);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "FrmStartPage";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader /Beta/";
            this.Load += new System.EventHandler(this.FrmStartPage_Load);
            this.tabControl1.ResumeLayout(false);
            this.tpManga.ResumeLayout(false);
            this.tpHentai.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

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

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmUpdate));
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.lblNewVer = new System.Windows.Forms.Label();
            this.lblCurVer = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtChangelog = new System.Windows.Forms.RichTextBox();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.btnContinue = new System.Windows.Forms.Button();
            this.rbWait = new System.Windows.Forms.RadioButton();
            this.rbUpdate = new System.Windows.Forms.RadioButton();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Arial", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(12, 9);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(540, 56);
            this.label1.TabIndex = 0;
            this.label1.Text = "An update is available!";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.lblNewVer);
            this.groupBox1.Controls.Add(this.lblCurVer);
            this.groupBox1.Location = new System.Drawing.Point(22, 68);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(530, 96);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Details";
            // 
            // lblNewVer
            // 
            this.lblNewVer.AutoSize = true;
            this.lblNewVer.Font = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblNewVer.Location = new System.Drawing.Point(6, 51);
            this.lblNewVer.Name = "lblNewVer";
            this.lblNewVer.Size = new System.Drawing.Size(97, 29);
            this.lblNewVer.TabIndex = 1;
            this.lblNewVer.Text = "Update to";
            // 
            // lblCurVer
            // 
            this.lblCurVer.AutoSize = true;
            this.lblCurVer.Font = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCurVer.Location = new System.Drawing.Point(6, 22);
            this.lblCurVer.Name = "lblCurVer";
            this.lblCurVer.Size = new System.Drawing.Size(151, 29);
            this.lblCurVer.TabIndex = 0;
            this.lblCurVer.Text = "Current Version";
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.txtChangelog);
            this.groupBox2.Location = new System.Drawing.Point(22, 170);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(530, 290);
            this.groupBox2.TabIndex = 2;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Changelog";
            // 
            // txtChangelog
            // 
            this.txtChangelog.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtChangelog.Location = new System.Drawing.Point(3, 22);
            this.txtChangelog.Name = "txtChangelog";
            this.txtChangelog.ReadOnly = true;
            this.txtChangelog.Size = new System.Drawing.Size(524, 265);
            this.txtChangelog.TabIndex = 0;
            this.txtChangelog.Text = "";
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.btnContinue);
            this.groupBox3.Controls.Add(this.rbWait);
            this.groupBox3.Controls.Add(this.rbUpdate);
            this.groupBox3.Location = new System.Drawing.Point(22, 463);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(527, 100);
            this.groupBox3.TabIndex = 3;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Actions";
            // 
            // btnContinue
            // 
            this.btnContinue.Location = new System.Drawing.Point(395, 25);
            this.btnContinue.Name = "btnContinue";
            this.btnContinue.Size = new System.Drawing.Size(126, 69);
            this.btnContinue.TabIndex = 2;
            this.btnContinue.Text = "Continue";
            this.btnContinue.UseVisualStyleBackColor = true;
            this.btnContinue.Click += new System.EventHandler(this.BtnContinue_Click);
            // 
            // rbWait
            // 
            this.rbWait.AutoSize = true;
            this.rbWait.Font = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rbWait.Location = new System.Drawing.Point(6, 61);
            this.rbWait.Name = "rbWait";
            this.rbWait.Size = new System.Drawing.Size(142, 33);
            this.rbWait.TabIndex = 1;
            this.rbWait.Text = "I Can Wait...";
            this.rbWait.UseVisualStyleBackColor = true;
            // 
            // rbUpdate
            // 
            this.rbUpdate.AutoSize = true;
            this.rbUpdate.Checked = true;
            this.rbUpdate.Font = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.rbUpdate.Location = new System.Drawing.Point(6, 25);
            this.rbUpdate.Name = "rbUpdate";
            this.rbUpdate.Size = new System.Drawing.Size(244, 33);
            this.rbUpdate.TabIndex = 0;
            this.rbUpdate.TabStop = true;
            this.rbUpdate.Text = "Download Update Now!";
            this.rbUpdate.UseVisualStyleBackColor = true;
            // 
            // FrmUpdate
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(575, 591);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.label1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(597, 647);
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(597, 647);
            this.Name = "FrmUpdate";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MikuReader Update Service";
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : ZUART.Designer.cs
with MIT License
from a2633063

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZUART));
            this.panel_Setting = new System.Windows.Forms.Panel();
            this.groupboxSendSetting = new System.Windows.Forms.GroupBox();
            this.txtAutoSendms = new System.Windows.Forms.TextBox();
            this.chkAutoCleanSend = new System.Windows.Forms.CheckBox();
            this.chkAutoSend = new System.Windows.Forms.CheckBox();
            this.chkfromFileSend = new System.Windows.Forms.CheckBox();
            this.chkAutoAddSend = new System.Windows.Forms.CheckBox();
            this.rbtnSendUnicode = new System.Windows.Forms.RadioButton();
            this.rbtnSendHex = new System.Windows.Forms.RadioButton();
            this.rbtnSendASCII = new System.Windows.Forms.RadioButton();
            this.rbtnSendUTF8 = new System.Windows.Forms.RadioButton();
            this.lkbReadSend = new System.Windows.Forms.LinkLabel();
            this.lkbClearSend = new System.Windows.Forms.LinkLabel();
            this.groupboxRecSetting = new System.Windows.Forms.GroupBox();
            this.chkRecSend = new System.Windows.Forms.CheckBox();
            this.lkbSaveRev = new System.Windows.Forms.LinkLabel();
            this.rbtnUnicode = new System.Windows.Forms.RadioButton();
            this.rbtnUTF8 = new System.Windows.Forms.RadioButton();
            this.rbtnASCII = new System.Windows.Forms.RadioButton();
            this.rbtnHex = new System.Windows.Forms.RadioButton();
            this.lkbClearRev = new System.Windows.Forms.LinkLabel();
            this.chkShowTime = new System.Windows.Forms.CheckBox();
            this.chkAutoLine = new System.Windows.Forms.CheckBox();
            this.groupBoxComSetting = new System.Windows.Forms.GroupBox();
            this.cbbParity = new System.Windows.Forms.ComboBox();
            this.cbbStopBits = new System.Windows.Forms.ComboBox();
            this.btnOpen = new System.Windows.Forms.Button();
            this.cbbDataBits = new System.Windows.Forms.ComboBox();
            this.cbbBaudRate = new System.Windows.Forms.ComboBox();
            this.cbbComList = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.panel_Log = new System.Windows.Forms.Panel();
            this.btnabout = new System.Windows.Forms.Button();
            this.Log = new System.Windows.Forms.Label();
            this.btnCleanCount = new System.Windows.Forms.Button();
            this.lblRevCount = new System.Windows.Forms.Label();
            this.lblSendCount = new System.Windows.Forms.Label();
            this.ComDevice = new System.IO.Ports.SerialPort(this.components);
            this.timerAutoSend = new System.Windows.Forms.Timer(this.components);
            this.groupBox6 = new System.Windows.Forms.GroupBox();
            this.panel_ListSend = new System.Windows.Forms.Panel();
            this.ListSend_Send0 = new System.Windows.Forms.Button();
            this.ListSend_Text0 = new System.Windows.Forms.TextBox();
            this.ListSend_Hex0 = new System.Windows.Forms.CheckBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.timerIcon = new System.Windows.Forms.Timer(this.components);
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.btnSend = new System.Windows.Forms.Button();
            this.txtSendData = new System.Windows.Forms.TextBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.txtShowData = new System.Windows.Forms.TextBox();
            this.panel_Setting.SuspendLayout();
            this.groupboxSendSetting.SuspendLayout();
            this.groupboxRecSetting.SuspendLayout();
            this.groupBoxComSetting.SuspendLayout();
            this.panel_Log.SuspendLayout();
            this.groupBox6.SuspendLayout();
            this.panel_ListSend.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel_Setting
            // 
            this.panel_Setting.BackColor = System.Drawing.SystemColors.Control;
            this.panel_Setting.Controls.Add(this.groupboxSendSetting);
            this.panel_Setting.Controls.Add(this.groupboxRecSetting);
            this.panel_Setting.Controls.Add(this.groupBoxComSetting);
            this.panel_Setting.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel_Setting.Location = new System.Drawing.Point(0, 0);
            this.panel_Setting.Name = "panel_Setting";
            this.panel_Setting.Size = new System.Drawing.Size(174, 547);
            this.panel_Setting.TabIndex = 0;
            // 
            // groupboxSendSetting
            // 
            this.groupboxSendSetting.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.groupboxSendSetting.Controls.Add(this.txtAutoSendms);
            this.groupboxSendSetting.Controls.Add(this.chkAutoCleanSend);
            this.groupboxSendSetting.Controls.Add(this.chkAutoSend);
            this.groupboxSendSetting.Controls.Add(this.chkfromFileSend);
            this.groupboxSendSetting.Controls.Add(this.chkAutoAddSend);
            this.groupboxSendSetting.Controls.Add(this.rbtnSendUnicode);
            this.groupboxSendSetting.Controls.Add(this.rbtnSendHex);
            this.groupboxSendSetting.Controls.Add(this.rbtnSendASCII);
            this.groupboxSendSetting.Controls.Add(this.rbtnSendUTF8);
            this.groupboxSendSetting.Controls.Add(this.lkbReadSend);
            this.groupboxSendSetting.Controls.Add(this.lkbClearSend);
            this.groupboxSendSetting.Location = new System.Drawing.Point(3, 360);
            this.groupboxSendSetting.Name = "groupboxSendSetting";
            this.groupboxSendSetting.Size = new System.Drawing.Size(170, 187);
            this.groupboxSendSetting.TabIndex = 3;
            this.groupboxSendSetting.TabStop = false;
            this.groupboxSendSetting.Text = "发送区设置";
            // 
            // txtAutoSendms
            // 
            this.txtAutoSendms.ImeMode = System.Windows.Forms.ImeMode.Disable;
            this.txtAutoSendms.Location = new System.Drawing.Point(105, 82);
            this.txtAutoSendms.MaxLength = 5;
            this.txtAutoSendms.Name = "txtAutoSendms";
            this.txtAutoSendms.Size = new System.Drawing.Size(32, 21);
            this.txtAutoSendms.TabIndex = 5;
            this.txtAutoSendms.Text = "500";
            this.txtAutoSendms.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.toolTip1.SetToolTip(this.txtAutoSendms, "建议20-60000范围内");
            this.txtAutoSendms.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAutoSendms_KeyPress);
            // 
            // chkAutoCleanSend
            // 
            this.chkAutoCleanSend.AutoSize = true;
            this.chkAutoCleanSend.Location = new System.Drawing.Point(9, 64);
            this.chkAutoCleanSend.Name = "chkAutoCleanSend";
            this.chkAutoCleanSend.Size = new System.Drawing.Size(108, 16);
            this.chkAutoCleanSend.TabIndex = 3;
            this.chkAutoCleanSend.Text = "发送完自动清空";
            this.chkAutoCleanSend.UseVisualStyleBackColor = true;
            // 
            // chkAutoSend
            // 
            this.chkAutoSend.AutoSize = true;
            this.chkAutoSend.Location = new System.Drawing.Point(9, 86);
            this.chkAutoSend.Name = "chkAutoSend";
            this.chkAutoSend.Size = new System.Drawing.Size(96, 16);
            this.chkAutoSend.TabIndex = 4;
            this.chkAutoSend.Text = "发送周期(ms)";
            this.chkAutoSend.UseVisualStyleBackColor = true;
            // 
            // chkfromFileSend
            // 
            this.chkfromFileSend.AutoSize = true;
            this.chkfromFileSend.Enabled = false;
            this.chkfromFileSend.Location = new System.Drawing.Point(9, 20);
            this.chkfromFileSend.Name = "chkfromFileSend";
            this.chkfromFileSend.Size = new System.Drawing.Size(108, 16);
            this.chkfromFileSend.TabIndex = 1;
            this.chkfromFileSend.Text = "启用文件数据源";
            this.chkfromFileSend.UseVisualStyleBackColor = true;
            // 
            // chkAutoAddSend
            // 
            this.chkAutoAddSend.AutoSize = true;
            this.chkAutoAddSend.Enabled = false;
            this.chkAutoAddSend.Location = new System.Drawing.Point(9, 42);
            this.chkAutoAddSend.Name = "chkAutoAddSend";
            this.chkAutoAddSend.Size = new System.Drawing.Size(108, 16);
            this.chkAutoAddSend.TabIndex = 2;
            this.chkAutoAddSend.Text = "自动发送附加位";
            this.chkAutoAddSend.UseVisualStyleBackColor = true;
            // 
            // rbtnSendUnicode
            // 
            this.rbtnSendUnicode.AutoSize = true;
            this.rbtnSendUnicode.Location = new System.Drawing.Point(68, 130);
            this.rbtnSendUnicode.Name = "rbtnSendUnicode";
            this.rbtnSendUnicode.Size = new System.Drawing.Size(65, 16);
            this.rbtnSendUnicode.TabIndex = 9;
            this.rbtnSendUnicode.Text = "Unicode";
            this.rbtnSendUnicode.UseVisualStyleBackColor = true;
            this.rbtnSendUnicode.Click += new System.EventHandler(this.rbtnSend_Click);
            // 
            // rbtnSendHex
            // 
            this.rbtnSendHex.AutoSize = true;
            this.rbtnSendHex.Location = new System.Drawing.Point(9, 108);
            this.rbtnSendHex.Name = "rbtnSendHex";
            this.rbtnSendHex.Size = new System.Drawing.Size(41, 16);
            this.rbtnSendHex.TabIndex = 6;
            this.rbtnSendHex.Text = "Hex";
            this.rbtnSendHex.UseVisualStyleBackColor = true;
            this.rbtnSendHex.Click += new System.EventHandler(this.rbtnSend_Click);
            // 
            // rbtnSendASCII
            // 
            this.rbtnSendASCII.AutoSize = true;
            this.rbtnSendASCII.Checked = true;
            this.rbtnSendASCII.Location = new System.Drawing.Point(68, 109);
            this.rbtnSendASCII.Name = "rbtnSendASCII";
            this.rbtnSendASCII.Size = new System.Drawing.Size(41, 16);
            this.rbtnSendASCII.TabIndex = 7;
            this.rbtnSendASCII.TabStop = true;
            this.rbtnSendASCII.Text = "GBK";
            this.rbtnSendASCII.UseVisualStyleBackColor = true;
            this.rbtnSendASCII.Click += new System.EventHandler(this.rbtnSend_Click);
            // 
            // rbtnSendUTF8
            // 
            this.rbtnSendUTF8.AutoSize = true;
            this.rbtnSendUTF8.Location = new System.Drawing.Point(9, 130);
            this.rbtnSendUTF8.Name = "rbtnSendUTF8";
            this.rbtnSendUTF8.Size = new System.Drawing.Size(53, 16);
            this.rbtnSendUTF8.TabIndex = 8;
            this.rbtnSendUTF8.Text = "UTF-8";
            this.rbtnSendUTF8.UseVisualStyleBackColor = true;
            this.rbtnSendUTF8.Click += new System.EventHandler(this.rbtnSend_Click);
            // 
            // lkbReadSend
            // 
            this.lkbReadSend.AutoSize = true;
            this.lkbReadSend.Location = new System.Drawing.Point(16, 159);
            this.lkbReadSend.Name = "lkbReadSend";
            this.lkbReadSend.Size = new System.Drawing.Size(53, 12);
            this.lkbReadSend.TabIndex = 10;
            this.lkbReadSend.TabStop = true;
            this.lkbReadSend.Text = "文件载入";
            this.lkbReadSend.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbReadSend_LinkClicked);
            // 
            // lkbClearSend
            // 
            this.lkbClearSend.AutoSize = true;
            this.lkbClearSend.Location = new System.Drawing.Point(83, 159);
            this.lkbClearSend.Name = "lkbClearSend";
            this.lkbClearSend.Size = new System.Drawing.Size(53, 12);
            this.lkbClearSend.TabIndex = 11;
            this.lkbClearSend.TabStop = true;
            this.lkbClearSend.Text = "清除发送";
            this.lkbClearSend.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbClearSend_LinkClicked);
            // 
            // groupboxRecSetting
            // 
            this.groupboxRecSetting.Controls.Add(this.chkRecSend);
            this.groupboxRecSetting.Controls.Add(this.lkbSaveRev);
            this.groupboxRecSetting.Controls.Add(this.rbtnUnicode);
            this.groupboxRecSetting.Controls.Add(this.rbtnUTF8);
            this.groupboxRecSetting.Controls.Add(this.rbtnASCII);
            this.groupboxRecSetting.Controls.Add(this.rbtnHex);
            this.groupboxRecSetting.Controls.Add(this.lkbClearRev);
            this.groupboxRecSetting.Controls.Add(this.chkShowTime);
            this.groupboxRecSetting.Controls.Add(this.chkAutoLine);
            this.groupboxRecSetting.Location = new System.Drawing.Point(3, 203);
            this.groupboxRecSetting.Name = "groupboxRecSetting";
            this.groupboxRecSetting.Size = new System.Drawing.Size(170, 152);
            this.groupboxRecSetting.TabIndex = 2;
            this.groupboxRecSetting.TabStop = false;
            this.groupboxRecSetting.Text = "接收区设置";
            // 
            // chkRecSend
            // 
            this.chkRecSend.AutoSize = true;
            this.chkRecSend.Location = new System.Drawing.Point(13, 64);
            this.chkRecSend.Name = "chkRecSend";
            this.chkRecSend.Size = new System.Drawing.Size(96, 16);
            this.chkRecSend.TabIndex = 9;
            this.chkRecSend.Text = "输入直接发送";
            this.chkRecSend.UseVisualStyleBackColor = true;
            // 
            // lkbSaveRev
            // 
            this.lkbSaveRev.AutoSize = true;
            this.lkbSaveRev.Location = new System.Drawing.Point(16, 132);
            this.lkbSaveRev.Name = "lkbSaveRev";
            this.lkbSaveRev.Size = new System.Drawing.Size(53, 12);
            this.lkbSaveRev.TabIndex = 7;
            this.lkbSaveRev.TabStop = true;
            this.lkbSaveRev.Text = "保存数据";
            this.lkbSaveRev.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbSaveRev_LinkClicked);
            // 
            // rbtnUnicode
            // 
            this.rbtnUnicode.AutoSize = true;
            this.rbtnUnicode.Location = new System.Drawing.Point(72, 110);
            this.rbtnUnicode.Name = "rbtnUnicode";
            this.rbtnUnicode.Size = new System.Drawing.Size(65, 16);
            this.rbtnUnicode.TabIndex = 6;
            this.rbtnUnicode.Text = "Unicode";
            this.rbtnUnicode.UseVisualStyleBackColor = true;
            this.rbtnUnicode.Click += new System.EventHandler(this.rbtn_Click);
            // 
            // rbtnUTF8
            // 
            this.rbtnUTF8.AutoSize = true;
            this.rbtnUTF8.Location = new System.Drawing.Point(12, 110);
            this.rbtnUTF8.Name = "rbtnUTF8";
            this.rbtnUTF8.Size = new System.Drawing.Size(53, 16);
            this.rbtnUTF8.TabIndex = 5;
            this.rbtnUTF8.Text = "UTF-8";
            this.rbtnUTF8.UseVisualStyleBackColor = true;
            this.rbtnUTF8.Click += new System.EventHandler(this.rbtn_Click);
            // 
            // rbtnASCII
            // 
            this.rbtnASCII.AutoSize = true;
            this.rbtnASCII.Checked = true;
            this.rbtnASCII.Location = new System.Drawing.Point(72, 88);
            this.rbtnASCII.Name = "rbtnASCII";
            this.rbtnASCII.Size = new System.Drawing.Size(41, 16);
            this.rbtnASCII.TabIndex = 4;
            this.rbtnASCII.TabStop = true;
            this.rbtnASCII.Text = "GBK";
            this.rbtnASCII.UseVisualStyleBackColor = true;
            this.rbtnASCII.Click += new System.EventHandler(this.rbtn_Click);
            // 
            // rbtnHex
            // 
            this.rbtnHex.AutoSize = true;
            this.rbtnHex.Location = new System.Drawing.Point(13, 88);
            this.rbtnHex.Name = "rbtnHex";
            this.rbtnHex.Size = new System.Drawing.Size(41, 16);
            this.rbtnHex.TabIndex = 3;
            this.rbtnHex.Text = "Hex";
            this.rbtnHex.UseVisualStyleBackColor = true;
            this.rbtnHex.Click += new System.EventHandler(this.rbtn_Click);
            // 
            // lkbClearRev
            // 
            this.lkbClearRev.AutoSize = true;
            this.lkbClearRev.Location = new System.Drawing.Point(83, 132);
            this.lkbClearRev.Name = "lkbClearRev";
            this.lkbClearRev.Size = new System.Drawing.Size(53, 12);
            this.lkbClearRev.TabIndex = 8;
            this.lkbClearRev.TabStop = true;
            this.lkbClearRev.Text = "清除接收";
            this.lkbClearRev.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lkbClearRev_LinkClicked);
            // 
            // chkShowTime
            // 
            this.chkShowTime.AutoSize = true;
            this.chkShowTime.Location = new System.Drawing.Point(13, 42);
            this.chkShowTime.Name = "chkShowTime";
            this.chkShowTime.Size = new System.Drawing.Size(96, 16);
            this.chkShowTime.TabIndex = 2;
            this.chkShowTime.Text = "显示接收时间";
            this.chkShowTime.UseVisualStyleBackColor = true;
            this.chkShowTime.CheckedChanged += new System.EventHandler(this.chkShowTime_CheckedChanged);
            // 
            // chkAutoLine
            // 
            this.chkAutoLine.AutoSize = true;
            this.chkAutoLine.Location = new System.Drawing.Point(13, 20);
            this.chkAutoLine.Name = "chkAutoLine";
            this.chkAutoLine.Size = new System.Drawing.Size(96, 16);
            this.chkAutoLine.TabIndex = 1;
            this.chkAutoLine.Text = "自动换行显示";
            this.chkAutoLine.UseVisualStyleBackColor = true;
            // 
            // groupBoxComSetting
            // 
            this.groupBoxComSetting.Controls.Add(this.cbbParity);
            this.groupBoxComSetting.Controls.Add(this.cbbStopBits);
            this.groupBoxComSetting.Controls.Add(this.btnOpen);
            this.groupBoxComSetting.Controls.Add(this.cbbDataBits);
            this.groupBoxComSetting.Controls.Add(this.cbbBaudRate);
            this.groupBoxComSetting.Controls.Add(this.cbbComList);
            this.groupBoxComSetting.Controls.Add(this.label2);
            this.groupBoxComSetting.Controls.Add(this.label5);
            this.groupBoxComSetting.Controls.Add(this.label1);
            this.groupBoxComSetting.Controls.Add(this.label4);
            this.groupBoxComSetting.Controls.Add(this.label3);
            this.groupBoxComSetting.Font = new System.Drawing.Font("宋体", 10F);
            this.groupBoxComSetting.Location = new System.Drawing.Point(3, 3);
            this.groupBoxComSetting.Name = "groupBoxComSetting";
            this.groupBoxComSetting.Size = new System.Drawing.Size(170, 194);
            this.groupBoxComSetting.TabIndex = 1;
            this.groupBoxComSetting.TabStop = false;
            this.groupBoxComSetting.Text = "端口设置";
            // 
            // cbbParity
            // 
            this.cbbParity.FormattingEnabled = true;
            this.cbbParity.Items.AddRange(new object[] {
            "None",
            "Odd",
            "Even",
            "Mark",
            "Space"});
            this.cbbParity.Location = new System.Drawing.Point(61, 130);
            this.cbbParity.Name = "cbbParity";
            this.cbbParity.Size = new System.Drawing.Size(98, 21);
            this.cbbParity.TabIndex = 5;
            this.cbbParity.TextChanged += new System.EventHandler(this.cbbComSetChange);
            // 
            // cbbStopBits
            // 
            this.cbbStopBits.FormattingEnabled = true;
            this.cbbStopBits.Items.AddRange(new object[] {
            "1",
            "2",
            "3"});
            this.cbbStopBits.Location = new System.Drawing.Point(61, 104);
            this.cbbStopBits.Name = "cbbStopBits";
            this.cbbStopBits.Size = new System.Drawing.Size(98, 21);
            this.cbbStopBits.TabIndex = 4;
            this.cbbStopBits.TextChanged += new System.EventHandler(this.cbbComSetChange);
            // 
            // btnOpen
            // 
            this.btnOpen.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnOpen.Font = new System.Drawing.Font("宋体", 10F);
            this.btnOpen.Image = global::ZUART.Properties.Resources.close;
            this.btnOpen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnOpen.Location = new System.Drawing.Point(9, 157);
            this.btnOpen.Name = "btnOpen";
            this.btnOpen.Padding = new System.Windows.Forms.Padding(8, 0, 25, 0);
            this.btnOpen.Size = new System.Drawing.Size(150, 32);
            this.btnOpen.TabIndex = 6;
            this.btnOpen.Text = "打开串口";
            this.btnOpen.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            this.btnOpen.UseVisualStyleBackColor = true;
            this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
            // 
            // cbbDataBits
            // 
            this.cbbDataBits.FormattingEnabled = true;
            this.cbbDataBits.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this.cbbDataBits.Items.AddRange(new object[] {
            "8",
            "7",
            "6"});
            this.cbbDataBits.Location = new System.Drawing.Point(61, 77);
            this.cbbDataBits.Name = "cbbDataBits";
            this.cbbDataBits.Size = new System.Drawing.Size(98, 21);
            this.cbbDataBits.TabIndex = 3;
            this.cbbDataBits.TextChanged += new System.EventHandler(this.cbbComSetChange);
            // 
            // cbbBaudRate
            // 
            this.cbbBaudRate.DisplayMember = "1";
            this.cbbBaudRate.FormattingEnabled = true;
            this.cbbBaudRate.Items.AddRange(new object[] {
            "300",
            "600",
            "1200",
            "2400",
            "4800",
            "9600",
            "14400",
            "19200",
            "38400",
            "43000",
            "56000",
            "57600",
            "74880",
            "115200",
            "128000",
            "256000"});
            this.cbbBaudRate.Location = new System.Drawing.Point(61, 48);
            this.cbbBaudRate.Name = "cbbBaudRate";
            this.cbbBaudRate.Size = new System.Drawing.Size(98, 21);
            this.cbbBaudRate.TabIndex = 2;
            this.cbbBaudRate.Text = global::ZUART.Properties.Settings.Default.cbbBaudRate;
            this.cbbBaudRate.ValueMember = "1";
            this.cbbBaudRate.TextChanged += new System.EventHandler(this.cbbComSetChange);
            // 
            // cbbComList
            // 
            this.cbbComList.DisplayMember = "1";
            this.cbbComList.FormattingEnabled = true;
            this.cbbComList.Location = new System.Drawing.Point(61, 22);
            this.cbbComList.Name = "cbbComList";
            this.cbbComList.Size = new System.Drawing.Size(98, 21);
            this.cbbComList.TabIndex = 1;
            this.cbbComList.DropDown += new System.EventHandler(this.cbbComList_DropDown);
            this.cbbComList.TextChanged += new System.EventHandler(this.cbbComSetChange);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(6, 51);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(49, 14);
            this.label2.TabIndex = 1;
            this.label2.Text = "波特率";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(6, 133);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(49, 14);
            this.label5.TabIndex = 4;
            this.label5.Text = "校验位";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(6, 25);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 14);
            this.label1.TabIndex = 0;
            this.label1.Text = "端口";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(6, 107);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(49, 14);
            this.label4.TabIndex = 3;
            this.label4.Text = "停止位";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(6, 80);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(49, 14);
            this.label3.TabIndex = 2;
            this.label3.Text = "数据位";
            // 
            // panel_Log
            // 
            this.panel_Log.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panel_Log.Controls.Add(this.btnabout);
            this.panel_Log.Controls.Add(this.Log);
            this.panel_Log.Controls.Add(this.btnCleanCount);
            this.panel_Log.Controls.Add(this.lblRevCount);
            this.panel_Log.Controls.Add(this.lblSendCount);
            this.panel_Log.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel_Log.Location = new System.Drawing.Point(0, 547);
            this.panel_Log.Name = "panel_Log";
            this.panel_Log.Size = new System.Drawing.Size(986, 25);
            this.panel_Log.TabIndex = 3;
            // 
            // btnabout
            // 
            this.btnabout.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnabout.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnabout.Location = new System.Drawing.Point(930, 1);
            this.btnabout.Name = "btnabout";
            this.btnabout.Size = new System.Drawing.Size(51, 20);
            this.btnabout.TabIndex = 16;
            this.btnabout.Text = "关于";
            this.btnabout.UseVisualStyleBackColor = true;
            this.btnabout.Click += new System.EventHandler(this.btnabout_Click);
            // 
            // Log
            // 
            this.Log.AutoSize = true;
            this.Log.Location = new System.Drawing.Point(6, 3);
            this.Log.MinimumSize = new System.Drawing.Size(100, 0);
            this.Log.Name = "Log";
            this.Log.Padding = new System.Windows.Forms.Padding(2);
            this.Log.Size = new System.Drawing.Size(100, 16);
            this.Log.TabIndex = 15;
            this.Log.Text = "串口关闭";
            this.Log.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // btnCleanCount
            // 
            this.btnCleanCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnCleanCount.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.btnCleanCount.Location = new System.Drawing.Point(858, 1);
            this.btnCleanCount.Name = "btnCleanCount";
            this.btnCleanCount.Size = new System.Drawing.Size(66, 20);
            this.btnCleanCount.TabIndex = 14;
            this.btnCleanCount.Text = "复位计数";
            this.btnCleanCount.UseVisualStyleBackColor = true;
            this.btnCleanCount.Click += new System.EventHandler(this.btnCleanCount_Click);
            // 
            // lblRevCount
            // 
            this.lblRevCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblRevCount.AutoSize = true;
            this.lblRevCount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblRevCount.Location = new System.Drawing.Point(652, 2);
            this.lblRevCount.MinimumSize = new System.Drawing.Size(100, 0);
            this.lblRevCount.Name = "lblRevCount";
            this.lblRevCount.Padding = new System.Windows.Forms.Padding(2);
            this.lblRevCount.Size = new System.Drawing.Size(100, 18);
            this.lblRevCount.TabIndex = 13;
            this.lblRevCount.Text = "接收:0";
            this.lblRevCount.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // lblSendCount
            // 
            this.lblSendCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.lblSendCount.AutoSize = true;
            this.lblSendCount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblSendCount.Location = new System.Drawing.Point(755, 2);
            this.lblSendCount.MinimumSize = new System.Drawing.Size(100, 0);
            this.lblSendCount.Name = "lblSendCount";
            this.lblSendCount.Padding = new System.Windows.Forms.Padding(2);
            this.lblSendCount.Size = new System.Drawing.Size(100, 18);
            this.lblSendCount.TabIndex = 11;
            this.lblSendCount.Text = "发送:0";
            this.lblSendCount.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // ComDevice
            // 
            this.ComDevice.ReadTimeout = 1000;
            this.ComDevice.WriteTimeout = 1000;
            this.ComDevice.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.Com_DataReceived);
            // 
            // timerAutoSend
            // 
            this.timerAutoSend.Interval = 1;
            this.timerAutoSend.Tick += new System.EventHandler(this.timerAutoSend_Tick);
            // 
            // groupBox6
            // 
            this.groupBox6.Controls.Add(this.panel_ListSend);
            this.groupBox6.Controls.Add(this.label7);
            this.groupBox6.Controls.Add(this.label6);
            this.groupBox6.Dock = System.Windows.Forms.DockStyle.Right;
            this.groupBox6.Location = new System.Drawing.Point(801, 0);
            this.groupBox6.Name = "groupBox6";
            this.groupBox6.Size = new System.Drawing.Size(185, 547);
            this.groupBox6.TabIndex = 6;
            this.groupBox6.TabStop = false;
            this.groupBox6.Text = "多字符串发送";
            // 
            // panel_ListSend
            // 
            this.panel_ListSend.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.panel_ListSend.AutoScroll = true;
            this.panel_ListSend.BackColor = System.Drawing.Color.Transparent;
            this.panel_ListSend.Controls.Add(this.ListSend_Send0);
            this.panel_ListSend.Controls.Add(this.ListSend_Text0);
            this.panel_ListSend.Controls.Add(this.ListSend_Hex0);
            this.panel_ListSend.Location = new System.Drawing.Point(4, 32);
            this.panel_ListSend.Name = "panel_ListSend";
            this.panel_ListSend.Size = new System.Drawing.Size(181, 515);
            this.panel_ListSend.TabIndex = 6;
            // 
            // ListSend_Send0
            // 
            this.ListSend_Send0.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.ListSend_Send0.Location = new System.Drawing.Point(0, 0);
            this.ListSend_Send0.Name = "ListSend_Send0";
            this.ListSend_Send0.Size = new System.Drawing.Size(25, 21);
            this.ListSend_Send0.TabIndex = 0;
            this.ListSend_Send0.TabStop = false;
            this.ListSend_Send0.Text = "1";
            this.ListSend_Send0.UseVisualStyleBackColor = true;
            this.ListSend_Send0.Click += new System.EventHandler(this.ListSendButton_Click);
            // 
            // ListSend_Text0
            // 
            this.ListSend_Text0.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.ListSend_Text0.Location = new System.Drawing.Point(27, 0);
            this.ListSend_Text0.Name = "ListSend_Text0";
            this.ListSend_Text0.Size = new System.Drawing.Size(125, 21);
            this.ListSend_Text0.TabIndex = 4;
            this.ListSend_Text0.TabStop = false;
            // 
            // ListSend_Hex0
            // 
            this.ListSend_Hex0.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.ListSend_Hex0.AutoSize = true;
            this.ListSend_Hex0.Location = new System.Drawing.Point(157, 4);
            this.ListSend_Hex0.Name = "ListSend_Hex0";
            this.ListSend_Hex0.Size = new System.Drawing.Size(15, 14);
            this.ListSend_Hex0.TabIndex = 3;
            this.ListSend_Hex0.TabStop = false;
            this.toolTip1.SetToolTip(this.ListSend_Hex0, "选择:以Hex发送\r\n不选:以文本发送");
            this.ListSend_Hex0.UseVisualStyleBackColor = true;
            // 
            // label7
            // 
            this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(138, 16);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(23, 12);
            this.label7.TabIndex = 4;
            this.label7.Text = "HEX";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(2, 16);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(29, 12);
            this.label6.TabIndex = 3;
            this.label6.Text = "发送";
            // 
            // timerIcon
            // 
            this.timerIcon.Interval = 300;
            this.timerIcon.Tick += new System.EventHandler(this.timerIcon_Tick);
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.btnSend);
            this.groupBox3.Controls.Add(this.txtSendData);
            this.groupBox3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.groupBox3.Font = new System.Drawing.Font("宋体", 10F);
            this.groupBox3.Location = new System.Drawing.Point(174, 441);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(627, 106);
            this.groupBox3.TabIndex = 7;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "数据发送区";
            // 
            // btnSend
            // 
            this.btnSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSend.Font = new System.Drawing.Font("宋体", 10F);
            this.btnSend.Location = new System.Drawing.Point(545, 22);
            this.btnSend.Name = "btnSend";
            this.btnSend.Size = new System.Drawing.Size(78, 76);
            this.btnSend.TabIndex = 2;
            this.btnSend.Text = "发送";
            this.btnSend.UseVisualStyleBackColor = true;
            this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
            // 
            // txtSendData
            // 
            this.txtSendData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSendData.Location = new System.Drawing.Point(3, 22);
            this.txtSendData.Multiline = true;
            this.txtSendData.Name = "txtSendData";
            this.txtSendData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtSendData.Size = new System.Drawing.Size(536, 76);
            this.txtSendData.TabIndex = 1;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.txtShowData);
            this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox2.Font = new System.Drawing.Font("宋体", 10F);
            this.groupBox2.Location = new System.Drawing.Point(174, 0);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(627, 441);
            this.groupBox2.TabIndex = 8;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "数据接收区";
            // 
            // txtShowData
            // 
            this.txtShowData.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtShowData.ImeMode = System.Windows.Forms.ImeMode.Disable;
            this.txtShowData.Location = new System.Drawing.Point(3, 19);
            this.txtShowData.Multiline = true;
            this.txtShowData.Name = "txtShowData";
            this.txtShowData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.txtShowData.Size = new System.Drawing.Size(621, 419);
            this.txtShowData.TabIndex = 2;
            this.txtShowData.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtShowData_KeyPress);
            // 
            // ZUART
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.btnOpen;
            this.ClientSize = new System.Drawing.Size(986, 572);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.panel_Setting);
            this.Controls.Add(this.groupBox6);
            this.Controls.Add(this.panel_Log);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "ZUART";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Z串口调试助手";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ZUART_FormClosing);
            this.panel_Setting.ResumeLayout(false);
            this.groupboxSendSetting.ResumeLayout(false);
            this.groupboxSendSetting.PerformLayout();
            this.groupboxRecSetting.ResumeLayout(false);
            this.groupboxRecSetting.PerformLayout();
            this.groupBoxComSetting.ResumeLayout(false);
            this.groupBoxComSetting.PerformLayout();
            this.panel_Log.ResumeLayout(false);
            this.panel_Log.PerformLayout();
            this.groupBox6.ResumeLayout(false);
            this.groupBox6.PerformLayout();
            this.panel_ListSend.ResumeLayout(false);
            this.panel_ListSend.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : AboutBox.Designer.cs
with MIT License
from a1xd

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox));
            this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.logoPictureBox = new System.Windows.Forms.PictureBox();
            this.labelVersion = new System.Windows.Forms.Label();
            this.okButton = new System.Windows.Forms.Button();
            this.labelDriverVersion = new System.Windows.Forms.Label();
            this.tableLayoutPanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
            this.SuspendLayout();
            // 
            // tableLayoutPanel
            // 
            this.tableLayoutPanel.ColumnCount = 2;
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
            this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
            this.tableLayoutPanel.Controls.Add(this.okButton, 1, 4);
            this.tableLayoutPanel.Controls.Add(this.labelDriverVersion, 1, 2);
            this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
            this.tableLayoutPanel.Name = "tableLayoutPanel";
            this.tableLayoutPanel.RowCount = 5;
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
            this.tableLayoutPanel.Size = new System.Drawing.Size(280, 133);
            this.tableLayoutPanel.TabIndex = 0;
            // 
            // logoPictureBox
            // 
            this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
            this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image")));
            this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
            this.logoPictureBox.Name = "logoPictureBox";
            this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 5);
            this.logoPictureBox.Size = new System.Drawing.Size(134, 127);
            this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.logoPictureBox.TabIndex = 12;
            this.logoPictureBox.TabStop = false;
            // 
            // labelVersion
            // 
            this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelVersion.Location = new System.Drawing.Point(146, 26);
            this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
            this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
            this.labelVersion.Name = "labelVersion";
            this.labelVersion.Size = new System.Drawing.Size(131, 17);
            this.labelVersion.TabIndex = 0;
            this.labelVersion.Text = "GUI Version";
            this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.okButton.Location = new System.Drawing.Point(202, 107);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 24;
            this.okButton.Text = "&OK";
            // 
            // labelDriverVersion
            // 
            this.labelDriverVersion.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelDriverVersion.Location = new System.Drawing.Point(146, 52);
            this.labelDriverVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
            this.labelDriverVersion.MaximumSize = new System.Drawing.Size(0, 17);
            this.labelDriverVersion.Name = "labelDriverVersion";
            this.labelDriverVersion.Size = new System.Drawing.Size(131, 17);
            this.labelDriverVersion.TabIndex = 25;
            this.labelDriverVersion.Text = "Driver Version";
            this.labelDriverVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // AboutBox
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(298, 151);
            this.Controls.Add(this.tableLayoutPanel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "AboutBox";
            this.Padding = new System.Windows.Forms.Padding(9);
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "AboutBox";
            this.tableLayoutPanel.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : WaitFm.Designer.cs
with GNU General Public License v3.0
from a4004

private void InitializeComponent()
        {
            this.taskreplacedle = new System.Windows.Forms.Label();
            this.taskCaption = new System.Windows.Forms.Label();
            this.lnkVerbose = new System.Windows.Forms.LinkLabel();
            this.detailView = new System.Windows.Forms.Panel();
            this.debugOutput = new System.Windows.Forms.ListBox();
            this.header = new System.Windows.Forms.Panel();
            this.container = new System.Windows.Forms.Panel();
            this.extendedSpinner = new N2D22.Controls.ExtendedSpinner();
            this.detailView.SuspendLayout();
            this.header.SuspendLayout();
            this.container.SuspendLayout();
            this.SuspendLayout();
            // 
            // taskreplacedle
            // 
            this.taskreplacedle.AutoSize = true;
            this.taskreplacedle.Dock = System.Windows.Forms.DockStyle.Left;
            this.taskreplacedle.Font = new System.Drawing.Font("Segoe UI Semilight", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.taskreplacedle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.taskreplacedle.Location = new System.Drawing.Point(0, 0);
            this.taskreplacedle.Name = "taskreplacedle";
            this.taskreplacedle.Size = new System.Drawing.Size(101, 32);
            this.taskreplacedle.TabIndex = 0;
            this.taskreplacedle.Text = "Working";
            this.taskreplacedle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // taskCaption
            // 
            this.taskCaption.Dock = System.Windows.Forms.DockStyle.Top;
            this.taskCaption.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.taskCaption.Location = new System.Drawing.Point(15, 52);
            this.taskCaption.Name = "taskCaption";
            this.taskCaption.Padding = new System.Windows.Forms.Padding(3, 0, 8, 0);
            this.taskCaption.Size = new System.Drawing.Size(570, 43);
            this.taskCaption.TabIndex = 1;
            this.taskCaption.Text = "This won\'t take long";
            // 
            // lnkVerbose
            // 
            this.lnkVerbose.ActiveLinkColor = System.Drawing.Color.Blue;
            this.lnkVerbose.AutoEllipsis = true;
            this.lnkVerbose.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.lnkVerbose.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.lnkVerbose.Location = new System.Drawing.Point(15, 343);
            this.lnkVerbose.Name = "lnkVerbose";
            this.lnkVerbose.Size = new System.Drawing.Size(570, 32);
            this.lnkVerbose.TabIndex = 2;
            this.lnkVerbose.TabStop = true;
            this.lnkVerbose.Text = "Show Details";
            this.lnkVerbose.TextAlign = System.Drawing.ContentAlignment.BottomRight;
            this.lnkVerbose.VisitedLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.lnkVerbose.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkVerbose_LinkClicked);
            // 
            // detailView
            // 
            this.detailView.BackColor = System.Drawing.SystemColors.Window;
            this.detailView.Controls.Add(this.debugOutput);
            this.detailView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.detailView.Location = new System.Drawing.Point(15, 95);
            this.detailView.Name = "detailView";
            this.detailView.Padding = new System.Windows.Forms.Padding(5, 15, 5, 0);
            this.detailView.Size = new System.Drawing.Size(570, 248);
            this.detailView.TabIndex = 3;
            this.detailView.Visible = false;
            // 
            // debugOutput
            // 
            this.debugOutput.Dock = System.Windows.Forms.DockStyle.Fill;
            this.debugOutput.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.debugOutput.FormattingEnabled = true;
            this.debugOutput.HorizontalScrollbar = true;
            this.debugOutput.ItemHeight = 15;
            this.debugOutput.Location = new System.Drawing.Point(5, 15);
            this.debugOutput.Name = "debugOutput";
            this.debugOutput.Size = new System.Drawing.Size(560, 233);
            this.debugOutput.TabIndex = 0;
            // 
            // header
            // 
            this.header.Controls.Add(this.container);
            this.header.Controls.Add(this.taskreplacedle);
            this.header.Dock = System.Windows.Forms.DockStyle.Top;
            this.header.Location = new System.Drawing.Point(15, 16);
            this.header.Name = "header";
            this.header.Size = new System.Drawing.Size(570, 36);
            this.header.TabIndex = 1;
            // 
            // container
            // 
            this.container.Controls.Add(this.extendedSpinner);
            this.container.Dock = System.Windows.Forms.DockStyle.Left;
            this.container.Location = new System.Drawing.Point(101, 0);
            this.container.Name = "container";
            this.container.Padding = new System.Windows.Forms.Padding(9, 4, 9, 8);
            this.container.Size = new System.Drawing.Size(42, 36);
            this.container.TabIndex = 8;
            // 
            // extendedSpinner
            // 
            this.extendedSpinner.Animated = true;
            this.extendedSpinner.BackObjectColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.extendedSpinner.BackThickness = 2;
            this.extendedSpinner.ColorOne = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.extendedSpinner.ColorTwo = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.extendedSpinner.Dock = System.Windows.Forms.DockStyle.Fill;
            this.extendedSpinner.Gradient = false;
            this.extendedSpinner.Location = new System.Drawing.Point(9, 4);
            this.extendedSpinner.Name = "extendedSpinner";
            this.extendedSpinner.ObjectColor = System.Drawing.Color.DodgerBlue;
            this.extendedSpinner.Size = new System.Drawing.Size(24, 24);
            this.extendedSpinner.Speed = 7;
            this.extendedSpinner.TabIndex = 10;
            this.extendedSpinner.Thickness = 2;
            this.extendedSpinner.Trail = true;
            this.extendedSpinner.Value = 50;
            // 
            // WaitFm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(600, 400);
            this.Controls.Add(this.detailView);
            this.Controls.Add(this.lnkVerbose);
            this.Controls.Add(this.taskCaption);
            this.Controls.Add(this.header);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "WaitFm";
            this.Padding = new System.Windows.Forms.Padding(15, 16, 15, 25);
            this.detailView.ResumeLayout(false);
            this.header.ResumeLayout(false);
            this.header.PerformLayout();
            this.container.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : MessageFm.Designer.cs
with GNU General Public License v3.0
from a4004

private void InitializeComponent()
        {
            this.header = new System.Windows.Forms.Panel();
            this.message = new System.Windows.Forms.Label();
            this.mCaption = new System.Windows.Forms.Label();
            this.header.SuspendLayout();
            this.SuspendLayout();
            // 
            // header
            // 
            this.header.Controls.Add(this.message);
            this.header.Dock = System.Windows.Forms.DockStyle.Top;
            this.header.Location = new System.Drawing.Point(15, 16);
            this.header.Name = "header";
            this.header.Size = new System.Drawing.Size(570, 36);
            this.header.TabIndex = 3;
            // 
            // message
            // 
            this.message.AutoSize = true;
            this.message.Dock = System.Windows.Forms.DockStyle.Left;
            this.message.Font = new System.Drawing.Font("Segoe UI Semilight", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.message.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.message.Location = new System.Drawing.Point(0, 0);
            this.message.Name = "message";
            this.message.Size = new System.Drawing.Size(279, 32);
            this.message.TabIndex = 0;
            this.message.Text = "Something has happened";
            this.message.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            // 
            // mCaption
            // 
            this.mCaption.Dock = System.Windows.Forms.DockStyle.Top;
            this.mCaption.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.mCaption.Location = new System.Drawing.Point(15, 52);
            this.mCaption.Name = "mCaption";
            this.mCaption.Padding = new System.Windows.Forms.Padding(3, 0, 8, 0);
            this.mCaption.Size = new System.Drawing.Size(570, 45);
            this.mCaption.TabIndex = 4;
            this.mCaption.Text = "If you\'re seeing this page, please restart the application";
            // 
            // MessageFm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(600, 400);
            this.Controls.Add(this.mCaption);
            this.Controls.Add(this.header);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "MessageFm";
            this.Padding = new System.Windows.Forms.Padding(15, 16, 15, 25);
            this.header.ResumeLayout(false);
            this.header.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : RequestFm.Designer.cs
with GNU General Public License v3.0
from a4004

private void InitializeComponent()
        {
            this.header = new System.Windows.Forms.Panel();
            this.question = new System.Windows.Forms.Label();
            this.qCaption = new System.Windows.Forms.Label();
            this.footer = new System.Windows.Forms.Panel();
            this.submit = new System.Windows.Forms.Button();
            this.body = new System.Windows.Forms.Panel();
            this.panel1 = new System.Windows.Forms.Panel();
            this.option2 = new System.Windows.Forms.RadioButton();
            this.option1 = new System.Windows.Forms.RadioButton();
            this.header.SuspendLayout();
            this.footer.SuspendLayout();
            this.body.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // header
            // 
            this.header.Controls.Add(this.question);
            this.header.Dock = System.Windows.Forms.DockStyle.Top;
            this.header.Location = new System.Drawing.Point(15, 16);
            this.header.Name = "header";
            this.header.Size = new System.Drawing.Size(570, 36);
            this.header.TabIndex = 2;
            // 
            // question
            // 
            this.question.AutoSize = true;
            this.question.Dock = System.Windows.Forms.DockStyle.Left;
            this.question.Font = new System.Drawing.Font("Segoe UI Semilight", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.question.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.question.Location = new System.Drawing.Point(0, 0);
            this.question.Name = "question";
            this.question.Size = new System.Drawing.Size(300, 32);
            this.question.TabIndex = 0;
            this.question.Text = "What would you like to do?";
            this.question.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // qCaption
            // 
            this.qCaption.Dock = System.Windows.Forms.DockStyle.Top;
            this.qCaption.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.qCaption.Location = new System.Drawing.Point(15, 52);
            this.qCaption.Name = "qCaption";
            this.qCaption.Padding = new System.Windows.Forms.Padding(3, 0, 8, 0);
            this.qCaption.Size = new System.Drawing.Size(570, 21);
            this.qCaption.TabIndex = 3;
            this.qCaption.Text = "You can change your mind at any time";
            // 
            // footer
            // 
            this.footer.BackColor = System.Drawing.SystemColors.Window;
            this.footer.Controls.Add(this.submit);
            this.footer.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.footer.Location = new System.Drawing.Point(15, 330);
            this.footer.Name = "footer";
            this.footer.Padding = new System.Windows.Forms.Padding(0, 10, 5, 10);
            this.footer.Size = new System.Drawing.Size(570, 45);
            this.footer.TabIndex = 4;
            // 
            // submit
            // 
            this.submit.BackColor = System.Drawing.SystemColors.ButtonFace;
            this.submit.Dock = System.Windows.Forms.DockStyle.Right;
            this.submit.FlatAppearance.BorderColor = System.Drawing.Color.Gray;
            this.submit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.submit.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.submit.Location = new System.Drawing.Point(490, 10);
            this.submit.Name = "submit";
            this.submit.Size = new System.Drawing.Size(75, 25);
            this.submit.TabIndex = 0;
            this.submit.Text = "Next";
            this.submit.UseVisualStyleBackColor = false;
            this.submit.Click += new System.EventHandler(this.submit_Click);
            // 
            // body
            // 
            this.body.BackColor = System.Drawing.SystemColors.Window;
            this.body.Controls.Add(this.panel1);
            this.body.Dock = System.Windows.Forms.DockStyle.Fill;
            this.body.Location = new System.Drawing.Point(15, 73);
            this.body.Name = "body";
            this.body.Size = new System.Drawing.Size(570, 257);
            this.body.TabIndex = 5;
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.SystemColors.Window;
            this.panel1.Controls.Add(this.option2);
            this.panel1.Controls.Add(this.option1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Padding = new System.Windows.Forms.Padding(20, 7, 0, 10);
            this.panel1.Size = new System.Drawing.Size(570, 75);
            this.panel1.TabIndex = 6;
            // 
            // option2
            // 
            this.option2.Dock = System.Windows.Forms.DockStyle.Top;
            this.option2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.option2.Location = new System.Drawing.Point(20, 30);
            this.option2.Name = "option2";
            this.option2.Size = new System.Drawing.Size(550, 23);
            this.option2.TabIndex = 3;
            this.option2.Text = "Option 2";
            this.option2.UseVisualStyleBackColor = true;
            // 
            // option1
            // 
            this.option1.Checked = true;
            this.option1.Dock = System.Windows.Forms.DockStyle.Top;
            this.option1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.option1.Location = new System.Drawing.Point(20, 7);
            this.option1.Name = "option1";
            this.option1.Size = new System.Drawing.Size(550, 23);
            this.option1.TabIndex = 2;
            this.option1.TabStop = true;
            this.option1.Text = "Option 1";
            this.option1.UseVisualStyleBackColor = true;
            // 
            // RequestFm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(600, 400);
            this.Controls.Add(this.body);
            this.Controls.Add(this.footer);
            this.Controls.Add(this.qCaption);
            this.Controls.Add(this.header);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "RequestFm";
            this.Padding = new System.Windows.Forms.Padding(15, 16, 15, 25);
            this.header.ResumeLayout(false);
            this.header.PerformLayout();
            this.footer.ResumeLayout(false);
            this.body.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : SelectFm.Designer.cs
with GNU General Public License v3.0
from a4004

private void InitializeComponent()
        {
            System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
            "NULL",
            "NULL",
            "NULL"}, -1);
            this.header = new System.Windows.Forms.Panel();
            this.question = new System.Windows.Forms.Label();
            this.qCaption = new System.Windows.Forms.Label();
            this.footer = new System.Windows.Forms.Panel();
            this.versionSelect = new System.Windows.Forms.ComboBox();
            this.lblver = new System.Windows.Forms.Label();
            this.back = new System.Windows.Forms.Button();
            this.spacer = new System.Windows.Forms.Panel();
            this.submit = new System.Windows.Forms.Button();
            this.body = new System.Windows.Forms.Panel();
            this.listView = new System.Windows.Forms.ListView();
            this.colvendor = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colfile = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.colext = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.header.SuspendLayout();
            this.footer.SuspendLayout();
            this.body.SuspendLayout();
            this.SuspendLayout();
            // 
            // header
            // 
            this.header.Controls.Add(this.question);
            this.header.Dock = System.Windows.Forms.DockStyle.Top;
            this.header.Location = new System.Drawing.Point(15, 16);
            this.header.Name = "header";
            this.header.Size = new System.Drawing.Size(570, 36);
            this.header.TabIndex = 3;
            // 
            // question
            // 
            this.question.AutoSize = true;
            this.question.Dock = System.Windows.Forms.DockStyle.Left;
            this.question.Font = new System.Drawing.Font("Segoe UI Semilight", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.question.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(97)))), ((int)(((byte)(255)))));
            this.question.Location = new System.Drawing.Point(0, 0);
            this.question.Name = "question";
            this.question.Size = new System.Drawing.Size(215, 32);
            this.question.TabIndex = 0;
            this.question.Text = "Software download";
            this.question.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // qCaption
            // 
            this.qCaption.Dock = System.Windows.Forms.DockStyle.Top;
            this.qCaption.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.qCaption.Location = new System.Drawing.Point(15, 52);
            this.qCaption.Name = "qCaption";
            this.qCaption.Padding = new System.Windows.Forms.Padding(3, 0, 8, 0);
            this.qCaption.Size = new System.Drawing.Size(570, 21);
            this.qCaption.TabIndex = 4;
            this.qCaption.Text = "Choose the appropriate software version for your device.";
            // 
            // footer
            // 
            this.footer.BackColor = System.Drawing.SystemColors.Window;
            this.footer.Controls.Add(this.versionSelect);
            this.footer.Controls.Add(this.lblver);
            this.footer.Controls.Add(this.back);
            this.footer.Controls.Add(this.spacer);
            this.footer.Controls.Add(this.submit);
            this.footer.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.footer.Location = new System.Drawing.Point(15, 330);
            this.footer.Name = "footer";
            this.footer.Padding = new System.Windows.Forms.Padding(5, 10, 5, 10);
            this.footer.Size = new System.Drawing.Size(570, 45);
            this.footer.TabIndex = 6;
            // 
            // versionSelect
            // 
            this.versionSelect.Dock = System.Windows.Forms.DockStyle.Left;
            this.versionSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.versionSelect.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.versionSelect.FormattingEnabled = true;
            this.versionSelect.Location = new System.Drawing.Point(55, 10);
            this.versionSelect.Name = "versionSelect";
            this.versionSelect.Size = new System.Drawing.Size(121, 21);
            this.versionSelect.TabIndex = 4;
            // 
            // lblver
            // 
            this.lblver.Dock = System.Windows.Forms.DockStyle.Left;
            this.lblver.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblver.Location = new System.Drawing.Point(5, 10);
            this.lblver.Name = "lblver";
            this.lblver.Padding = new System.Windows.Forms.Padding(0, 3, 0, 0);
            this.lblver.Size = new System.Drawing.Size(50, 25);
            this.lblver.TabIndex = 5;
            this.lblver.Text = "Version:";
            // 
            // back
            // 
            this.back.BackColor = System.Drawing.SystemColors.ButtonFace;
            this.back.Dock = System.Windows.Forms.DockStyle.Right;
            this.back.FlatAppearance.BorderColor = System.Drawing.Color.Gray;
            this.back.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.back.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.back.Location = new System.Drawing.Point(408, 10);
            this.back.Name = "back";
            this.back.Size = new System.Drawing.Size(75, 25);
            this.back.TabIndex = 2;
            this.back.Text = "Back";
            this.back.UseVisualStyleBackColor = false;
            this.back.Click += new System.EventHandler(this.back_Click);
            // 
            // spacer
            // 
            this.spacer.Dock = System.Windows.Forms.DockStyle.Right;
            this.spacer.Location = new System.Drawing.Point(483, 10);
            this.spacer.Name = "spacer";
            this.spacer.Size = new System.Drawing.Size(7, 25);
            this.spacer.TabIndex = 1;
            // 
            // submit
            // 
            this.submit.BackColor = System.Drawing.SystemColors.ButtonFace;
            this.submit.Dock = System.Windows.Forms.DockStyle.Right;
            this.submit.FlatAppearance.BorderColor = System.Drawing.Color.Gray;
            this.submit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.submit.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.submit.Location = new System.Drawing.Point(490, 10);
            this.submit.Name = "submit";
            this.submit.Size = new System.Drawing.Size(75, 25);
            this.submit.TabIndex = 0;
            this.submit.Text = "Next";
            this.submit.UseVisualStyleBackColor = false;
            this.submit.Click += new System.EventHandler(this.submit_Click);
            // 
            // body
            // 
            this.body.BackColor = System.Drawing.SystemColors.Window;
            this.body.Controls.Add(this.listView);
            this.body.Dock = System.Windows.Forms.DockStyle.Fill;
            this.body.Location = new System.Drawing.Point(15, 73);
            this.body.Name = "body";
            this.body.Padding = new System.Windows.Forms.Padding(5, 10, 5, 10);
            this.body.Size = new System.Drawing.Size(570, 257);
            this.body.TabIndex = 7;
            // 
            // listView
            // 
            this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colvendor,
            this.colfile,
            this.colext});
            this.listView.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.listView.FullRowSelect = true;
            this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            this.listView.HideSelection = false;
            this.listView.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
            listViewItem1});
            this.listView.Location = new System.Drawing.Point(5, 10);
            this.listView.MultiSelect = false;
            this.listView.Name = "listView";
            this.listView.Size = new System.Drawing.Size(560, 237);
            this.listView.TabIndex = 6;
            this.listView.UseCompatibleStateImageBehavior = false;
            this.listView.View = System.Windows.Forms.View.Details;
            // 
            // colvendor
            // 
            this.colvendor.Text = "Vendor";
            this.colvendor.Width = 132;
            // 
            // colfile
            // 
            this.colfile.Text = "Version";
            this.colfile.Width = 349;
            // 
            // colext
            // 
            this.colext.Text = "Type";
            this.colext.Width = 75;
            // 
            // SelectFm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.ClientSize = new System.Drawing.Size(600, 400);
            this.Controls.Add(this.body);
            this.Controls.Add(this.footer);
            this.Controls.Add(this.qCaption);
            this.Controls.Add(this.header);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "SelectFm";
            this.Padding = new System.Windows.Forms.Padding(15, 16, 15, 25);
            this.Load += new System.EventHandler(this.SelectFm_Load);
            this.header.ResumeLayout(false);
            this.header.PerformLayout();
            this.footer.ResumeLayout(false);
            this.body.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : MessageDialog.Designer.cs
with MIT License
from a1xd

private void InitializeComponent()
        {
            this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
            this.okButton = new System.Windows.Forms.Button();
            this.messageLabel = new System.Windows.Forms.Label();
            this.tableLayoutPanel.SuspendLayout();
            this.SuspendLayout();
            // 
            // tableLayoutPanel
            // 
            this.tableLayoutPanel.AutoSize = true;
            this.tableLayoutPanel.ColumnCount = 1;
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel.Controls.Add(this.okButton, 0, 1);
            this.tableLayoutPanel.Controls.Add(this.messageLabel, 0, 0);
            this.tableLayoutPanel.ForeColor = System.Drawing.SystemColors.ControlText;
            this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel.Name = "tableLayoutPanel";
            this.tableLayoutPanel.Padding = new System.Windows.Forms.Padding(5);
            this.tableLayoutPanel.RowCount = 2;
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
            this.tableLayoutPanel.Size = new System.Drawing.Size(224, 61);
            this.tableLayoutPanel.TabIndex = 2;
            // 
            // okButton
            // 
            this.okButton.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.okButton.Location = new System.Drawing.Point(74, 30);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 23);
            this.okButton.TabIndex = 4;
            this.okButton.Text = "&OK";
            this.okButton.UseVisualStyleBackColor = true;
            // 
            // messageLabel
            // 
            this.messageLabel.AutoSize = true;
            this.messageLabel.Location = new System.Drawing.Point(8, 5);
            this.messageLabel.Name = "messageLabel";
            this.messageLabel.Size = new System.Drawing.Size(35, 13);
            this.messageLabel.TabIndex = 3;
            this.messageLabel.Text = "label1";
            // 
            // MessageDialog
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.CancelButton = this.okButton;
            this.ClientSize = new System.Drawing.Size(224, 61);
            this.Controls.Add(this.tableLayoutPanel);
            this.Name = "MessageDialog";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.tableLayoutPanel.ResumeLayout(false);
            this.tableLayoutPanel.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FrmAbout.Designer.cs
with MIT License
from a2633063

private void InitializeComponent()
        {
            this.groupBoxAbout = new System.Windows.Forms.GroupBox();
            this.btnClose = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBoxAbout.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBoxAbout
            // 
            this.groupBoxAbout.Controls.Add(this.btnClose);
            this.groupBoxAbout.Controls.Add(this.label1);
            this.groupBoxAbout.Location = new System.Drawing.Point(12, 12);
            this.groupBoxAbout.Name = "groupBoxAbout";
            this.groupBoxAbout.Size = new System.Drawing.Size(294, 68);
            this.groupBoxAbout.TabIndex = 0;
            this.groupBoxAbout.TabStop = false;
            this.groupBoxAbout.Text = "当前版本:";
            // 
            // btnClose
            // 
            this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.btnClose.Location = new System.Drawing.Point(200, 23);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(82, 33);
            this.btnClose.TabIndex = 0;
            this.btnClose.Text = "关闭";
            this.btnClose.UseVisualStyleBackColor = true;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // label1
            // 
            this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.label1.Location = new System.Drawing.Point(3, 17);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(288, 48);
            this.label1.TabIndex = 1;
            this.label1.Text = "版本更新\r\n作者:Zip\r\n邮箱:[email protected]";
            // 
            // FrmAbout
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(327, 94);
            this.ControlBox = false;
            this.Controls.Add(this.groupBoxAbout);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MinimizeBox = false;
            this.Name = "FrmAbout";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "关于";
            this.groupBoxAbout.ResumeLayout(false);
            this.ResumeLayout(false);

        }

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

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
            this.mitigationNotice = new System.Windows.Forms.Panel();
            this.btnConnect = new System.Windows.Forms.Button();
            this.warningMsg = new System.Windows.Forms.Label();
            this.iconWarning = new System.Windows.Forms.PictureBox();
            this.mitigationNotice.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.iconWarning)).BeginInit();
            this.SuspendLayout();
            // 
            // mitigationNotice
            // 
            this.mitigationNotice.BackColor = System.Drawing.Color.LemonChiffon;
            this.mitigationNotice.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.mitigationNotice.Controls.Add(this.btnConnect);
            this.mitigationNotice.Controls.Add(this.warningMsg);
            this.mitigationNotice.Controls.Add(this.iconWarning);
            this.mitigationNotice.Dock = System.Windows.Forms.DockStyle.Top;
            this.mitigationNotice.Location = new System.Drawing.Point(0, 0);
            this.mitigationNotice.Name = "mitigationNotice";
            this.mitigationNotice.Padding = new System.Windows.Forms.Padding(5, 1, 0, 1);
            this.mitigationNotice.Size = new System.Drawing.Size(634, 26);
            this.mitigationNotice.TabIndex = 0;
            this.mitigationNotice.Visible = false;
            // 
            // btnConnect
            // 
            this.btnConnect.Dock = System.Windows.Forms.DockStyle.Left;
            this.btnConnect.FlatAppearance.BorderColor = System.Drawing.Color.Black;
            this.btnConnect.FlatAppearance.BorderSize = 0;
            this.btnConnect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnConnect.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnConnect.Location = new System.Drawing.Point(403, 1);
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.Size = new System.Drawing.Size(63, 22);
            this.btnConnect.TabIndex = 2;
            this.btnConnect.Text = "Continue";
            this.btnConnect.UseVisualStyleBackColor = true;
            this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
            // 
            // warningMsg
            // 
            this.warningMsg.AutoEllipsis = true;
            this.warningMsg.Dock = System.Windows.Forms.DockStyle.Left;
            this.warningMsg.Font = new System.Drawing.Font("Segoe UI Semibold", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.warningMsg.Location = new System.Drawing.Point(23, 1);
            this.warningMsg.Name = "warningMsg";
            this.warningMsg.Padding = new System.Windows.Forms.Padding(3, 0, 0, 1);
            this.warningMsg.Size = new System.Drawing.Size(380, 22);
            this.warningMsg.TabIndex = 1;
            this.warningMsg.Text = "Device scanning functionality is disabled. See below message for details.";
            this.warningMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // iconWarning
            // 
            this.iconWarning.Dock = System.Windows.Forms.DockStyle.Left;
            this.iconWarning.Image = global::N2D22.Properties.Resources.important_icon;
            this.iconWarning.Location = new System.Drawing.Point(5, 1);
            this.iconWarning.Name = "iconWarning";
            this.iconWarning.Size = new System.Drawing.Size(18, 22);
            this.iconWarning.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
            this.iconWarning.TabIndex = 0;
            this.iconWarning.TabStop = false;
            // 
            // MainWindow
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.Window;
            this.BackgroundImage = global::N2D22.Properties.Resources.icon;
            this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.ClientSize = new System.Drawing.Size(634, 461);
            this.Controls.Add(this.mitigationNotice);
            this.DoubleBuffered = true;
            this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(840, 630);
            this.MinimumSize = new System.Drawing.Size(640, 480);
            this.Name = "MainWindow";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Espressif Flash Manager";
            this.Load += new System.EventHandler(this.MainWindow_Load);
            this.mitigationNotice.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.iconWarning)).EndInit();
            this.ResumeLayout(false);

        }

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 : 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 : aboutUI.Designer.cs
with MIT License
from aaaddress1

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(aboutUI));
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.richTextBox2 = new System.Windows.Forms.RichTextBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.groupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.richTextBox2);
            this.groupBox1.Controls.Add(this.pictureBox1);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Top;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(444, 150);
            this.groupBox1.TabIndex = 4;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "MIT License";
            // 
            // richTextBox2
            // 
            this.richTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.richTextBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richTextBox2.Location = new System.Drawing.Point(133, 18);
            this.richTextBox2.Name = "richTextBox2";
            this.richTextBox2.Size = new System.Drawing.Size(308, 129);
            this.richTextBox2.TabIndex = 6;
            this.richTextBox2.Text = resources.GetString("richTextBox2.Text");
            // 
            // pictureBox1
            // 
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
            this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(3, 18);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(130, 129);
            this.pictureBox1.TabIndex = 5;
            this.pictureBox1.TabStop = false;
            // 
            // richTextBox1
            // 
            this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.richTextBox1.Location = new System.Drawing.Point(0, 150);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(444, 195);
            this.richTextBox1.TabIndex = 6;
            this.richTextBox1.Text = resources.GetString("richTextBox1.Text");
            // 
            // aboutUI
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ClientSize = new System.Drawing.Size(444, 345);
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.groupBox1);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "aboutUI";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "About puzzCode";
            this.Load += new System.EventHandler(this.aboutUI_Load);
            this.groupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : ChatHeader.Designer.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.panel2 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pictureBox4 = new System.Windows.Forms.PictureBox();
            this.pictureBox3 = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.Azure;
            this.panel2.Controls.Add(this.pictureBox1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(0, 2);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(1);
            this.panel2.Size = new System.Drawing.Size(39, 39);
            this.panel2.TabIndex = 6;
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::chat.Properties.Resources.icons8_User_32;
            this.pictureBox1.Location = new System.Drawing.Point(1, 1);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(37, 37);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.pictureBox4);
            this.panel1.Controls.Add(this.pictureBox3);
            this.panel1.Controls.Add(this.pictureBox2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(473, 2);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(165, 39);
            this.panel1.TabIndex = 9;
            // 
            // pictureBox4
            // 
            this.pictureBox4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox4.Dock = System.Windows.Forms.DockStyle.Right;
            this.pictureBox4.Image = global::chat.Properties.Resources.icons8_Call_white_32;
            this.pictureBox4.Location = new System.Drawing.Point(33, 0);
            this.pictureBox4.Name = "pictureBox4";
            this.pictureBox4.Size = new System.Drawing.Size(44, 39);
            this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox4.TabIndex = 3;
            this.pictureBox4.TabStop = false;
            this.pictureBox4.Click += new System.EventHandler(this.pictureBox4_Click);
            this.pictureBox4.MouseEnter += new System.EventHandler(this.pictureBox4_MouseEnter);
            this.pictureBox4.MouseLeave += new System.EventHandler(this.pictureBox4_MouseLeave);
            // 
            // pictureBox3
            // 
            this.pictureBox3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Right;
            this.pictureBox3.Image = global::chat.Properties.Resources.icons8_Video_Call_white_32;
            this.pictureBox3.Location = new System.Drawing.Point(77, 0);
            this.pictureBox3.Name = "pictureBox3";
            this.pictureBox3.Size = new System.Drawing.Size(44, 39);
            this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox3.TabIndex = 2;
            this.pictureBox3.TabStop = false;
            this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click);
            this.pictureBox3.MouseEnter += new System.EventHandler(this.pictureBox3_MouseEnter);
            this.pictureBox3.MouseLeave += new System.EventHandler(this.pictureBox3_MouseLeave);
            // 
            // pictureBox2
            // 
            this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Right;
            this.pictureBox2.Image = global::chat.Properties.Resources.icons8_Menu_Vertical_white_32;
            this.pictureBox2.Location = new System.Drawing.Point(121, 0);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(44, 39);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox2.TabIndex = 1;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
            this.pictureBox2.MouseEnter += new System.EventHandler(this.pictureBox2_MouseEnter);
            this.pictureBox2.MouseLeave += new System.EventHandler(this.pictureBox2_MouseLeave);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.SystemColors.ControlLight;
            this.label2.Location = new System.Drawing.Point(54, 23);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(43, 15);
            this.label2.TabIndex = 8;
            this.label2.Text = "Online";
            this.label2.Click += new System.EventHandler(this.label2_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.SystemColors.InactiveBorder;
            this.label1.Location = new System.Drawing.Point(54, 3);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(86, 17);
            this.label1.TabIndex = 7;
            this.label1.Text = "User name";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // ChatHeader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.panel2);
            this.Name = "ChatHeader";
            this.Padding = new System.Windows.Forms.Padding(0, 2, 0, 2);
            this.Size = new System.Drawing.Size(638, 43);
            this.Load += new System.EventHandler(this.ChatHeader_Load);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

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

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.panel1 = new System.Windows.Forms.Panel();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.searchBox1 = new chat.SearchBox();
            this.panel5 = new System.Windows.Forms.Panel();
            this.users7 = new chat.Users();
            this.users8 = new chat.Users();
            this.users9 = new chat.Users();
            this.users10 = new chat.Users();
            this.users11 = new chat.Users();
            this.users6 = new chat.Users();
            this.users5 = new chat.Users();
            this.users4 = new chat.Users();
            this.users3 = new chat.Users();
            this.users2 = new chat.Users();
            this.users1 = new chat.Users();
            this.label3 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.typingBox1 = new chat.TypingBox();
            this.panel4 = new System.Windows.Forms.Panel();
            this.meBubble2 = new chat.MeBubble();
            this.youBubble1 = new chat.YouBubble();
            this.meBubble1 = new chat.MeBubble();
            this.meBubble3 = new chat.MeBubble();
            this.meBubble4 = new chat.MeBubble();
            this.meBubble5 = new chat.MeBubble();
            this.chatHeader1 = new chat.ChatHeader();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(3, 3);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(974, 24);
            this.panel1.TabIndex = 0;
            this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.OnMouseDownMoveForm);
            // 
            // label2
            // 
            this.label2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.label2.Dock = System.Windows.Forms.DockStyle.Right;
            this.label2.ForeColor = System.Drawing.SystemColors.ControlLightLight;
            this.label2.Location = new System.Drawing.Point(904, 0);
            this.label2.Name = "label2";
            this.label2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 11);
            this.label2.Size = new System.Drawing.Size(35, 24);
            this.label2.TabIndex = 1;
            this.label2.Text = "__";
            this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.label2.Click += new System.EventHandler(this.label2_Click);
            // 
            // label1
            // 
            this.label1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.label1.Dock = System.Windows.Forms.DockStyle.Right;
            this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
            this.label1.Location = new System.Drawing.Point(939, 0);
            this.label1.Name = "label1";
            this.label1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 5);
            this.label1.Size = new System.Drawing.Size(35, 24);
            this.label1.TabIndex = 0;
            this.label1.Text = "X";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.searchBox1);
            this.panel2.Controls.Add(this.panel5);
            this.panel2.Controls.Add(this.label3);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(3, 27);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(2, 0, 2, 5);
            this.panel2.Size = new System.Drawing.Size(206, 674);
            this.panel2.TabIndex = 1;
            // 
            // searchBox1
            // 
            this.searchBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
            this.searchBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.searchBox1.FocusedColor = System.Drawing.Color.WhiteSmoke;
            this.searchBox1.Location = new System.Drawing.Point(2, 640);
            this.searchBox1.Name = "searchBox1";
            this.searchBox1.Padding = new System.Windows.Forms.Padding(5, 0, 5, 0);
            this.searchBox1.Size = new System.Drawing.Size(202, 29);
            this.searchBox1.TabIndex = 2;
            this.searchBox1.TextColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.searchBox1.UnFocusedColor = System.Drawing.SystemColors.GradientActiveCaption;
            this.searchBox1.Value = "Search...";
            // 
            // panel5
            // 
            this.panel5.Controls.Add(this.users7);
            this.panel5.Controls.Add(this.users8);
            this.panel5.Controls.Add(this.users9);
            this.panel5.Controls.Add(this.users10);
            this.panel5.Controls.Add(this.users11);
            this.panel5.Controls.Add(this.users6);
            this.panel5.Controls.Add(this.users5);
            this.panel5.Controls.Add(this.users4);
            this.panel5.Controls.Add(this.users3);
            this.panel5.Controls.Add(this.users2);
            this.panel5.Controls.Add(this.users1);
            this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel5.Location = new System.Drawing.Point(2, 42);
            this.panel5.Name = "panel5";
            this.panel5.Padding = new System.Windows.Forms.Padding(0, 5, 0, 10);
            this.panel5.Size = new System.Drawing.Size(202, 578);
            this.panel5.TabIndex = 1;
            // 
            // users7
            // 
            this.users7.BackColor = System.Drawing.Color.Transparent;
            this.users7.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users7.Dock = System.Windows.Forms.DockStyle.Top;
            this.users7.Location = new System.Drawing.Point(0, 495);
            this.users7.Margin = new System.Windows.Forms.Padding(0);
            this.users7.Name = "users7";
            this.users7.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users7.Size = new System.Drawing.Size(202, 49);
            this.users7.StatusMessage = "Online";
            this.users7.TabIndex = 10;
            this.users7.UserImage = global::chat.Properties.Resources._2_32;
            this.users7.Username = "Kasimu Da.";
            this.users7.UserStatus = chat.Status.Online;
            // 
            // users8
            // 
            this.users8.BackColor = System.Drawing.Color.Transparent;
            this.users8.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users8.Dock = System.Windows.Forms.DockStyle.Top;
            this.users8.Location = new System.Drawing.Point(0, 446);
            this.users8.Margin = new System.Windows.Forms.Padding(0);
            this.users8.Name = "users8";
            this.users8.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users8.Size = new System.Drawing.Size(202, 49);
            this.users8.StatusMessage = "Offline";
            this.users8.TabIndex = 9;
            this.users8.UserImage = global::chat.Properties.Resources._1_32;
            this.users8.Username = "Sacdiyo Xir.";
            this.users8.UserStatus = chat.Status.Offline;
            // 
            // users9
            // 
            this.users9.BackColor = System.Drawing.Color.Transparent;
            this.users9.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users9.Dock = System.Windows.Forms.DockStyle.Top;
            this.users9.Location = new System.Drawing.Point(0, 397);
            this.users9.Margin = new System.Windows.Forms.Padding(0);
            this.users9.Name = "users9";
            this.users9.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users9.Size = new System.Drawing.Size(202, 49);
            this.users9.StatusMessage = "Away";
            this.users9.TabIndex = 8;
            this.users9.UserImage = global::chat.Properties.Resources._3_32;
            this.users9.Username = "Isma Ali";
            this.users9.UserStatus = chat.Status.Away;
            // 
            // users10
            // 
            this.users10.BackColor = System.Drawing.Color.Transparent;
            this.users10.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users10.Dock = System.Windows.Forms.DockStyle.Top;
            this.users10.Location = new System.Drawing.Point(0, 348);
            this.users10.Margin = new System.Windows.Forms.Padding(0);
            this.users10.Name = "users10";
            this.users10.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users10.Size = new System.Drawing.Size(202, 49);
            this.users10.StatusMessage = "Away";
            this.users10.TabIndex = 7;
            this.users10.UserImage = ((System.Drawing.Image)(resources.GetObject("users10.UserImage")));
            this.users10.Username = "Baba BE.";
            this.users10.UserStatus = chat.Status.Away;
            // 
            // users11
            // 
            this.users11.BackColor = System.Drawing.Color.Transparent;
            this.users11.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users11.Dock = System.Windows.Forms.DockStyle.Top;
            this.users11.Location = new System.Drawing.Point(0, 299);
            this.users11.Margin = new System.Windows.Forms.Padding(0);
            this.users11.Name = "users11";
            this.users11.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users11.Size = new System.Drawing.Size(202, 49);
            this.users11.StatusMessage = "Online";
            this.users11.TabIndex = 6;
            this.users11.UserImage = global::chat.Properties.Resources._2_32;
            this.users11.Username = "Kasimu Da.";
            this.users11.UserStatus = chat.Status.Online;
            // 
            // users6
            // 
            this.users6.BackColor = System.Drawing.Color.Transparent;
            this.users6.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users6.Dock = System.Windows.Forms.DockStyle.Top;
            this.users6.Location = new System.Drawing.Point(0, 250);
            this.users6.Margin = new System.Windows.Forms.Padding(0);
            this.users6.Name = "users6";
            this.users6.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users6.Size = new System.Drawing.Size(202, 49);
            this.users6.StatusMessage = "Offline";
            this.users6.TabIndex = 5;
            this.users6.UserImage = global::chat.Properties.Resources._2;
            this.users6.Username = "Tusbaxle A.";
            this.users6.UserStatus = chat.Status.Offline;
            this.users6.OnClick += new chat.Users.Clicked(this.OnUserClick);
            // 
            // users5
            // 
            this.users5.BackColor = System.Drawing.Color.Transparent;
            this.users5.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users5.Dock = System.Windows.Forms.DockStyle.Top;
            this.users5.Location = new System.Drawing.Point(0, 201);
            this.users5.Margin = new System.Windows.Forms.Padding(0);
            this.users5.Name = "users5";
            this.users5.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users5.Size = new System.Drawing.Size(202, 49);
            this.users5.StatusMessage = "Offline";
            this.users5.TabIndex = 4;
            this.users5.UserImage = global::chat.Properties.Resources._1_32;
            this.users5.Username = "Sacdiyo Xir.";
            this.users5.UserStatus = chat.Status.Offline;
            this.users5.OnClick += new chat.Users.Clicked(this.OnUserClick);
            // 
            // users4
            // 
            this.users4.BackColor = System.Drawing.Color.Transparent;
            this.users4.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users4.Dock = System.Windows.Forms.DockStyle.Top;
            this.users4.Location = new System.Drawing.Point(0, 152);
            this.users4.Margin = new System.Windows.Forms.Padding(0);
            this.users4.Name = "users4";
            this.users4.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users4.Size = new System.Drawing.Size(202, 49);
            this.users4.StatusMessage = "Away";
            this.users4.TabIndex = 3;
            this.users4.UserImage = global::chat.Properties.Resources._3_32;
            this.users4.Username = "Isma Ali";
            this.users4.UserStatus = chat.Status.Away;
            this.users4.OnClick += new chat.Users.Clicked(this.OnUserClick);
            // 
            // users3
            // 
            this.users3.BackColor = System.Drawing.Color.Transparent;
            this.users3.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users3.Dock = System.Windows.Forms.DockStyle.Top;
            this.users3.Location = new System.Drawing.Point(0, 103);
            this.users3.Margin = new System.Windows.Forms.Padding(0);
            this.users3.Name = "users3";
            this.users3.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users3.Size = new System.Drawing.Size(202, 49);
            this.users3.StatusMessage = "Away";
            this.users3.TabIndex = 2;
            this.users3.UserImage = ((System.Drawing.Image)(resources.GetObject("users3.UserImage")));
            this.users3.Username = "Baba BE.";
            this.users3.UserStatus = chat.Status.Away;
            this.users3.OnClick += new chat.Users.Clicked(this.OnUserClick);
            // 
            // users2
            // 
            this.users2.BackColor = System.Drawing.Color.Transparent;
            this.users2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users2.Dock = System.Windows.Forms.DockStyle.Top;
            this.users2.Location = new System.Drawing.Point(0, 54);
            this.users2.Margin = new System.Windows.Forms.Padding(0);
            this.users2.Name = "users2";
            this.users2.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users2.Size = new System.Drawing.Size(202, 49);
            this.users2.StatusMessage = "Online";
            this.users2.TabIndex = 1;
            this.users2.UserImage = global::chat.Properties.Resources._2_32;
            this.users2.Username = "Kasimu Da.";
            this.users2.UserStatus = chat.Status.Online;
            this.users2.OnClick += new chat.Users.Clicked(this.OnUserClick);
            // 
            // users1
            // 
            this.users1.BackColor = System.Drawing.Color.Transparent;
            this.users1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.users1.Dock = System.Windows.Forms.DockStyle.Top;
            this.users1.Location = new System.Drawing.Point(0, 5);
            this.users1.Margin = new System.Windows.Forms.Padding(0);
            this.users1.Name = "users1";
            this.users1.ProfileImageCursor = System.Windows.Forms.Cursors.Hand;
            this.users1.Size = new System.Drawing.Size(202, 49);
            this.users1.StatusMessage = "Online";
            this.users1.TabIndex = 0;
            this.users1.UserImage = global::chat.Properties.Resources._4_32;
            this.users1.Username = "A.Samad M.";
            this.users1.UserStatus = chat.Status.Online;
            this.users1.OnClick += new chat.Users.Clicked(this.OnUserClick);
            this.users1.Load += new System.EventHandler(this.users1_Load);
            // 
            // label3
            // 
            this.label3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.label3.Dock = System.Windows.Forms.DockStyle.Top;
            this.label3.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.Silver;
            this.label3.Location = new System.Drawing.Point(2, 0);
            this.label3.Name = "label3";
            this.label3.Padding = new System.Windows.Forms.Padding(5, 5, 0, 0);
            this.label3.Size = new System.Drawing.Size(202, 42);
            this.label3.TabIndex = 0;
            this.label3.Text = "Recent";
            this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panel3
            // 
            this.panel3.Controls.Add(this.typingBox1);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panel3.Location = new System.Drawing.Point(209, 663);
            this.panel3.Name = "panel3";
            this.panel3.Padding = new System.Windows.Forms.Padding(5, 0, 5, 5);
            this.panel3.Size = new System.Drawing.Size(768, 38);
            this.panel3.TabIndex = 3;
            // 
            // typingBox1
            // 
            this.typingBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.typingBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.typingBox1.Location = new System.Drawing.Point(5, 9);
            this.typingBox1.Name = "typingBox1";
            this.typingBox1.Size = new System.Drawing.Size(758, 24);
            this.typingBox1.TabIndex = 0;
            this.typingBox1.Value = "Type here...";
            this.typingBox1.OnHitEnter += new chat.TypingBox.HitEnter(this.typingBox1_OnHitEnter);
            // 
            // panel4
            // 
            this.panel4.Controls.Add(this.meBubble2);
            this.panel4.Controls.Add(this.youBubble1);
            this.panel4.Controls.Add(this.meBubble1);
            this.panel4.Controls.Add(this.meBubble3);
            this.panel4.Controls.Add(this.meBubble4);
            this.panel4.Controls.Add(this.meBubble5);
            this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel4.Location = new System.Drawing.Point(209, 69);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(768, 594);
            this.panel4.TabIndex = 4;
            // 
            // meBubble2
            // 
            this.meBubble2.AutoSize = true;
            this.meBubble2.BackColor = System.Drawing.Color.Transparent;
            this.meBubble2.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.meBubble2.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.meBubble2.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.meBubble2.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.meBubble2.Location = new System.Drawing.Point(0, 24);
            this.meBubble2.MinimumSize = new System.Drawing.Size(0, 95);
            this.meBubble2.MsgColor = System.Drawing.Color.DodgerBlue;
            this.meBubble2.MsgTextColor = System.Drawing.SystemColors.ControlLightLight;
            this.meBubble2.Name = "meBubble2";
            this.meBubble2.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.meBubble2.Size = new System.Drawing.Size(768, 95);
            this.meBubble2.Status = chat.MessageStatus.Custom;
            this.meBubble2.StatusImage = ((System.Drawing.Image)(resources.GetObject("meBubble2.StatusImage")));
            this.meBubble2.TabIndex = 2;
            this.meBubble2.Time = "11:44 PM";
            this.meBubble2.TimeColor = System.Drawing.Color.White;
            this.meBubble2.UserImage = ((System.Drawing.Image)(resources.GetObject("meBubble2.UserImage")));
            // 
            // youBubble1
            // 
            this.youBubble1.BackColor = System.Drawing.Color.Transparent;
            this.youBubble1.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \n\nThis is a sample text message. ";
            this.youBubble1.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.youBubble1.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.youBubble1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.youBubble1.Location = new System.Drawing.Point(0, 119);
            this.youBubble1.MinimumSize = new System.Drawing.Size(0, 95);
            this.youBubble1.MsgColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(244)))));
            this.youBubble1.MsgTextColor = System.Drawing.SystemColors.ControlDarkDark;
            this.youBubble1.Name = "youBubble1";
            this.youBubble1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.youBubble1.Size = new System.Drawing.Size(768, 95);
            this.youBubble1.Status = chat.MessageStatus.Custom;
            this.youBubble1.StatusImage = null;
            this.youBubble1.TabIndex = 1;
            this.youBubble1.Time = "11:46 PM";
            this.youBubble1.TimeColor = System.Drawing.Color.White;
            this.youBubble1.UserImage = global::chat.Properties.Resources._2_32;
            // 
            // meBubble1
            // 
            this.meBubble1.AutoSize = true;
            this.meBubble1.BackColor = System.Drawing.Color.Transparent;
            this.meBubble1.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.meBubble1.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.meBubble1.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.meBubble1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.meBubble1.Location = new System.Drawing.Point(0, 214);
            this.meBubble1.MinimumSize = new System.Drawing.Size(0, 95);
            this.meBubble1.MsgColor = System.Drawing.Color.DodgerBlue;
            this.meBubble1.MsgTextColor = System.Drawing.SystemColors.ControlLightLight;
            this.meBubble1.Name = "meBubble1";
            this.meBubble1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.meBubble1.Size = new System.Drawing.Size(768, 95);
            this.meBubble1.Status = chat.MessageStatus.Custom;
            this.meBubble1.StatusImage = ((System.Drawing.Image)(resources.GetObject("meBubble1.StatusImage")));
            this.meBubble1.TabIndex = 0;
            this.meBubble1.Time = "11:50 PM";
            this.meBubble1.TimeColor = System.Drawing.Color.White;
            this.meBubble1.UserImage = ((System.Drawing.Image)(resources.GetObject("meBubble1.UserImage")));
            // 
            // meBubble3
            // 
            this.meBubble3.AutoSize = true;
            this.meBubble3.BackColor = System.Drawing.Color.Transparent;
            this.meBubble3.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.meBubble3.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.meBubble3.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.meBubble3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.meBubble3.Location = new System.Drawing.Point(0, 309);
            this.meBubble3.MinimumSize = new System.Drawing.Size(0, 95);
            this.meBubble3.MsgColor = System.Drawing.Color.DodgerBlue;
            this.meBubble3.MsgTextColor = System.Drawing.SystemColors.ControlLightLight;
            this.meBubble3.Name = "meBubble3";
            this.meBubble3.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.meBubble3.Size = new System.Drawing.Size(768, 95);
            this.meBubble3.Status = chat.MessageStatus.Custom;
            this.meBubble3.StatusImage = ((System.Drawing.Image)(resources.GetObject("meBubble3.StatusImage")));
            this.meBubble3.TabIndex = 3;
            this.meBubble3.Time = "11:52 PM";
            this.meBubble3.TimeColor = System.Drawing.Color.White;
            this.meBubble3.UserImage = ((System.Drawing.Image)(resources.GetObject("meBubble3.UserImage")));
            // 
            // meBubble4
            // 
            this.meBubble4.AutoSize = true;
            this.meBubble4.BackColor = System.Drawing.Color.Transparent;
            this.meBubble4.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.meBubble4.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.meBubble4.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.meBubble4.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.meBubble4.Location = new System.Drawing.Point(0, 404);
            this.meBubble4.MinimumSize = new System.Drawing.Size(0, 95);
            this.meBubble4.MsgColor = System.Drawing.Color.DodgerBlue;
            this.meBubble4.MsgTextColor = System.Drawing.SystemColors.ControlLightLight;
            this.meBubble4.Name = "meBubble4";
            this.meBubble4.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.meBubble4.Size = new System.Drawing.Size(768, 95);
            this.meBubble4.Status = chat.MessageStatus.Custom;
            this.meBubble4.StatusImage = ((System.Drawing.Image)(resources.GetObject("meBubble4.StatusImage")));
            this.meBubble4.TabIndex = 4;
            this.meBubble4.Time = "11:52 PM";
            this.meBubble4.TimeColor = System.Drawing.Color.White;
            this.meBubble4.UserImage = ((System.Drawing.Image)(resources.GetObject("meBubble4.UserImage")));
            // 
            // meBubble5
            // 
            this.meBubble5.AutoSize = true;
            this.meBubble5.BackColor = System.Drawing.Color.Transparent;
            this.meBubble5.Body = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.meBubble5.ChatImageCursor = System.Windows.Forms.Cursors.Default;
            this.meBubble5.ChatTextCursor = System.Windows.Forms.Cursors.IBeam;
            this.meBubble5.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.meBubble5.Location = new System.Drawing.Point(0, 499);
            this.meBubble5.MinimumSize = new System.Drawing.Size(0, 95);
            this.meBubble5.MsgColor = System.Drawing.Color.DodgerBlue;
            this.meBubble5.MsgTextColor = System.Drawing.SystemColors.ControlLightLight;
            this.meBubble5.Name = "meBubble5";
            this.meBubble5.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.meBubble5.Size = new System.Drawing.Size(768, 95);
            this.meBubble5.Status = chat.MessageStatus.Custom;
            this.meBubble5.StatusImage = ((System.Drawing.Image)(resources.GetObject("meBubble5.StatusImage")));
            this.meBubble5.TabIndex = 5;
            this.meBubble5.Time = "11:52 PM";
            this.meBubble5.TimeColor = System.Drawing.Color.White;
            this.meBubble5.UserImage = ((System.Drawing.Image)(resources.GetObject("meBubble5.UserImage")));
            // 
            // chatHeader1
            // 
            this.chatHeader1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.chatHeader1.Dock = System.Windows.Forms.DockStyle.Top;
            this.chatHeader1.Location = new System.Drawing.Point(209, 27);
            this.chatHeader1.Name = "chatHeader1";
            this.chatHeader1.Padding = new System.Windows.Forms.Padding(0, 2, 0, 2);
            this.chatHeader1.Size = new System.Drawing.Size(768, 42);
            this.chatHeader1.TabIndex = 2;
            this.chatHeader1.UserImage = global::chat.Properties.Resources._2_32;
            this.chatHeader1.UserStatusText = "Typing...";
            this.chatHeader1.Userreplacedle = "Kreplacedimu Da.";
            // 
            // Form1
            // 
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
            this.ClientSize = new System.Drawing.Size(980, 704);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.chatHeader1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "Form1";
            this.Padding = new System.Windows.Forms.Padding(3);
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel5.ResumeLayout(false);
            this.panel3.ResumeLayout(false);
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : Users.Designer.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.panel1 = new System.Windows.Forms.Panel();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.label3 = new System.Windows.Forms.Label();
            this.panel3.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.SystemColors.InactiveBorder;
            this.label1.Location = new System.Drawing.Point(54, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(86, 17);
            this.label1.TabIndex = 2;
            this.label1.Text = "User name";
            this.label1.Click += new System.EventHandler(this.label1_Click_1);
            this.label1.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.label1.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
            this.label2.Location = new System.Drawing.Point(55, 27);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(43, 15);
            this.label2.TabIndex = 3;
            this.label2.Text = "Online";
            this.label2.Click += new System.EventHandler(this.label2_Click);
            this.label2.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.label2.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // panel3
            // 
            this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123)))));
            this.panel3.Controls.Add(this.label2);
            this.panel3.Controls.Add(this.panel2);
            this.panel3.Controls.Add(this.label1);
            this.panel3.Controls.Add(this.panel1);
            this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel3.Location = new System.Drawing.Point(0, 0);
            this.panel3.Margin = new System.Windows.Forms.Padding(0);
            this.panel3.Name = "panel3";
            this.panel3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
            this.panel3.Size = new System.Drawing.Size(216, 49);
            this.panel3.TabIndex = 6;
            this.panel3.Click += new System.EventHandler(this.panel3_Click);
            this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint);
            this.panel3.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.panel3.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.Azure;
            this.panel2.Controls.Add(this.pictureBox1);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(1);
            this.panel2.Size = new System.Drawing.Size(47, 47);
            this.panel2.TabIndex = 6;
            this.panel2.Click += new System.EventHandler(this.label1_Click);
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123)))));
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::chat.Properties.Resources.icons8_User_32;
            this.pictureBox1.Location = new System.Drawing.Point(1, 1);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(45, 45);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click_1);
            this.pictureBox1.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.pictureBox1.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.pictureBox2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(194, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(22, 47);
            this.panel1.TabIndex = 5;
            this.panel1.Click += new System.EventHandler(this.panel1_Click);
            this.panel1.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.panel1.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // pictureBox2
            // 
            this.pictureBox2.Image = global::chat.Properties.Resources.Online_32;
            this.pictureBox2.Location = new System.Drawing.Point(5, 18);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(12, 12);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 1;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
            this.pictureBox2.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.pictureBox2.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            // 
            // label3
            // 
            this.label3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
            this.label3.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.label3.Location = new System.Drawing.Point(0, 47);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(216, 2);
            this.label3.TabIndex = 8;
            // 
            // Users
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Transparent;
            this.Controls.Add(this.label3);
            this.Controls.Add(this.panel3);
            this.Cursor = System.Windows.Forms.Cursors.Hand;
            this.Margin = new System.Windows.Forms.Padding(0);
            this.Name = "Users";
            this.Size = new System.Drawing.Size(216, 49);
            this.Load += new System.EventHandler(this.Users_Load);
            this.MouseEnter += new System.EventHandler(this.Users_MouseEnter);
            this.MouseLeave += new System.EventHandler(this.Users_MouseLeave);
            this.MouseHover += new System.EventHandler(this.Users_MouseHover);
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : BeautyForm.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.label1 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(33, 43);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(293, 171);
            this.label1.TabIndex = 0;
            this.label1.Text = "This is base form of Form1 and any modification u make to this form will effect F" +
    "orm1 or any other form that inherits this form Once u build.";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            this.label1.Visible = false;
            // 
            // BeautyForm
            // 
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(80)))), ((int)(((byte)(80)))), ((int)(((byte)(80)))));
            this.ClientSize = new System.Drawing.Size(361, 261);
            this.ControlBox = false;
            this.Controls.Add(this.label1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Name = "BeautyForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.ResumeLayout(false);

        }

19 Source : MeBubble.Designer.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(275, 5);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(45, 183);
            this.panel1.TabIndex = 0;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.White;
            this.panel2.Controls.Add(this.pictureBox1);
            this.panel2.Location = new System.Drawing.Point(8, 0);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(1);
            this.panel2.Size = new System.Drawing.Size(34, 34);
            this.panel2.TabIndex = 1;
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Navy;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::chat.Properties.Resources.icons8_User_32;
            this.pictureBox1.Location = new System.Drawing.Point(1, 1);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(32, 32);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.DodgerBlue;
            this.label1.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.label1.Dock = System.Windows.Forms.DockStyle.Right;
            this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.SystemColors.ControlLightLight;
            this.label1.Location = new System.Drawing.Point(136, 5);
            this.label1.MaximumSize = new System.Drawing.Size(140, 0);
            this.label1.Name = "label1";
            this.label1.Padding = new System.Windows.Forms.Padding(3);
            this.label1.Size = new System.Drawing.Size(139, 150);
            this.label1.TabIndex = 1;
            this.label1.Text = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. \r\n";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // MeBubble
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.BackColor = System.Drawing.Color.Transparent;
            this.Controls.Add(this.label1);
            this.Controls.Add(this.panel1);
            this.MinimumSize = new System.Drawing.Size(0, 41);
            this.Name = "MeBubble";
            this.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.Size = new System.Drawing.Size(320, 193);
            this.Load += new System.EventHandler(this.Bubble_Load);
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : TypingBox.Designer.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.richTextBox1 = new System.Windows.Forms.RichTextBox();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.panel1.Controls.Add(this.pictureBox1);
            this.panel1.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
            this.panel1.Location = new System.Drawing.Point(491, 0);
            this.panel1.Name = "panel1";
            this.panel1.Padding = new System.Windows.Forms.Padding(5);
            this.panel1.Size = new System.Drawing.Size(31, 34);
            this.panel1.TabIndex = 0;
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::chat.Properties.Resources.icons8_Attach_321;
            this.pictureBox1.Location = new System.Drawing.Point(5, 5);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(21, 24);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.panel2.Controls.Add(this.pictureBox2);
            this.panel2.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel2.Location = new System.Drawing.Point(0, 0);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(5);
            this.panel2.Size = new System.Drawing.Size(31, 34);
            this.panel2.TabIndex = 1;
            // 
            // pictureBox2
            // 
            this.pictureBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.pictureBox2.Cursor = System.Windows.Forms.Cursors.Hand;
            this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox2.Image = global::chat.Properties.Resources.icons8_Neutral_321;
            this.pictureBox2.Location = new System.Drawing.Point(5, 5);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(21, 24);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 1;
            this.pictureBox2.TabStop = false;
            this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
            // 
            // richTextBox1
            // 
            this.richTextBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.richTextBox1.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.richTextBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(227)))), ((int)(((byte)(227)))), ((int)(((byte)(227)))));
            this.richTextBox1.Location = new System.Drawing.Point(31, 14);
            this.richTextBox1.Name = "richTextBox1";
            this.richTextBox1.Size = new System.Drawing.Size(460, 20);
            this.richTextBox1.TabIndex = 2;
            this.richTextBox1.Text = "Type here...";
            this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
            this.richTextBox1.Enter += new System.EventHandler(this.richTextBox1_Enter);
            this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyDown);
            this.richTextBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.richTextBox1_KeyPress);
            this.richTextBox1.KeyUp += new System.Windows.Forms.KeyEventHandler(this.richTextBox1_KeyUp);
            this.richTextBox1.Leave += new System.EventHandler(this.richTextBox1_Leave);
            // 
            // TypingBox
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(102)))), ((int)(((byte)(102)))));
            this.Controls.Add(this.richTextBox1);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.Name = "TypingBox";
            this.Size = new System.Drawing.Size(522, 34);
            this.panel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : YouBubble.Designer.cs
with MIT License
from AbdisamadMoh

private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.panel2);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
            this.panel1.Location = new System.Drawing.Point(0, 5);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(45, 51);
            this.panel1.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.White;
            this.panel2.Controls.Add(this.pictureBox1);
            this.panel2.Location = new System.Drawing.Point(4, 0);
            this.panel2.Name = "panel2";
            this.panel2.Padding = new System.Windows.Forms.Padding(1);
            this.panel2.Size = new System.Drawing.Size(34, 34);
            this.panel2.TabIndex = 1;
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackColor = System.Drawing.Color.Navy;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Image = global::chat.Properties.Resources.icons8_User_32;
            this.pictureBox1.Location = new System.Drawing.Point(1, 1);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(32, 32);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(244)))), ((int)(((byte)(244)))));
            this.label1.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.label1.Dock = System.Windows.Forms.DockStyle.Left;
            this.label1.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
            this.label1.Location = new System.Drawing.Point(45, 5);
            this.label1.MaximumSize = new System.Drawing.Size(140, 0);
            this.label1.Name = "label1";
            this.label1.Padding = new System.Windows.Forms.Padding(3);
            this.label1.Size = new System.Drawing.Size(139, 150);
            this.label1.TabIndex = 3;
            this.label1.Text = " This is a sample text message. This is a sample text message. This is a sample t" +
    "ext message. \r\n\r\nThis is a sample text message. ";
            this.label1.Click += new System.EventHandler(this.label1_Click);
            // 
            // YouBubble
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Transparent;
            this.Controls.Add(this.label1);
            this.Controls.Add(this.panel1);
            this.Name = "YouBubble";
            this.Padding = new System.Windows.Forms.Padding(0, 5, 0, 5);
            this.Size = new System.Drawing.Size(320, 61);
            this.Load += new System.EventHandler(this.YouBubble_Load);
            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : FormAbnLookup.Designer.cs
with MIT License
from ABN-SFLookupTechnicalSupport

private void InitializeComponent()
        {
           this.tabControlWebServices = new System.Windows.Forms.TabControl();
           this.tabPageXmlSearch = new System.Windows.Forms.TabPage();
           this.groupBoxProtocolOptions = new System.Windows.Forms.GroupBox();
           this.radioButtonHttpGet = new System.Windows.Forms.RadioButton();
           this.radioButtonSoap = new System.Windows.Forms.RadioButton();
           this.radioButtonProxy = new System.Windows.Forms.RadioButton();
           this.dataGridNames = new System.Windows.Forms.DataGrid();
           this.buttonReset = new System.Windows.Forms.Button();
           this.radioButtonAsic = new System.Windows.Forms.RadioButton();
           this.radioButtonName = new System.Windows.Forms.RadioButton();
           this.radioButtonAbn = new System.Windows.Forms.RadioButton();
           this.radioButtonPostcode = new System.Windows.Forms.RadioButton();
           this.labelGuid = new System.Windows.Forms.Label();
           this.labelCriteria = new System.Windows.Forms.Label();
           this.textBoxCriteria = new System.Windows.Forms.TextBox();
           this.textBoxGuid = new System.Windows.Forms.TextBox();
           this.groupStates = new System.Windows.Forms.GroupBox();
           this.checkBoxNt = new System.Windows.Forms.CheckBox();
           this.checkBoxAct = new System.Windows.Forms.CheckBox();
           this.checkBoxTas = new System.Windows.Forms.CheckBox();
           this.checkBoxWa = new System.Windows.Forms.CheckBox();
           this.checkBoxSa = new System.Windows.Forms.CheckBox();
           this.checkBoxQld = new System.Windows.Forms.CheckBox();
           this.checkBoxVic = new System.Windows.Forms.CheckBox();
           this.checkBoxNsw = new System.Windows.Forms.CheckBox();
           this.groupBoxNameTypes = new System.Windows.Forms.GroupBox();
           this.checkBoxTrading = new System.Windows.Forms.CheckBox();
           this.checkBoxLegal = new System.Windows.Forms.CheckBox();
           this.textBoxPostcode = new System.Windows.Forms.TextBox();
           this.checkBoxHistory = new System.Windows.Forms.CheckBox();
           this.labelPostcode = new System.Windows.Forms.Label();
           this.buttonSearch = new System.Windows.Forms.Button();
           this.richTextBoxResults = new System.Windows.Forms.RichTextBox();
           this.groupBoxMethod = new System.Windows.Forms.GroupBox();
           this.groupBoxStyle = new System.Windows.Forms.GroupBox();
           this.radioButtonDoreplacedent = new System.Windows.Forms.RadioButton();
           this.radioButtonRpc = new System.Windows.Forms.RadioButton();
           this.buttonExit = new System.Windows.Forms.Button();
           this.radioButtonUpdateEvent = new System.Windows.Forms.RadioButton();
           this.tabControlWebServices.SuspendLayout();
           this.tabPageXmlSearch.SuspendLayout();
           this.groupBoxProtocolOptions.SuspendLayout();
           ((System.ComponentModel.ISupportInitialize)(this.dataGridNames)).BeginInit();
           this.groupStates.SuspendLayout();
           this.groupBoxNameTypes.SuspendLayout();
           this.groupBoxMethod.SuspendLayout();
           this.groupBoxStyle.SuspendLayout();
           this.SuspendLayout();
           // 
           // tabControlWebServices
           // 
           this.tabControlWebServices.Controls.Add(this.tabPageXmlSearch);
           this.tabControlWebServices.Location = new System.Drawing.Point(20, 12);
           this.tabControlWebServices.Name = "tabControlWebServices";
           this.tabControlWebServices.SelectedIndex = 0;
           this.tabControlWebServices.Size = new System.Drawing.Size(602, 608);
           this.tabControlWebServices.TabIndex = 21;
           // 
           // tabPageXmlSearch
           // 
           this.tabPageXmlSearch.Controls.Add(this.groupBoxProtocolOptions);
           this.tabPageXmlSearch.Controls.Add(this.dataGridNames);
           this.tabPageXmlSearch.Controls.Add(this.buttonReset);
           this.tabPageXmlSearch.Controls.Add(this.labelGuid);
           this.tabPageXmlSearch.Controls.Add(this.labelCriteria);
           this.tabPageXmlSearch.Controls.Add(this.textBoxCriteria);
           this.tabPageXmlSearch.Controls.Add(this.textBoxGuid);
           this.tabPageXmlSearch.Controls.Add(this.groupStates);
           this.tabPageXmlSearch.Controls.Add(this.groupBoxNameTypes);
           this.tabPageXmlSearch.Controls.Add(this.textBoxPostcode);
           this.tabPageXmlSearch.Controls.Add(this.checkBoxHistory);
           this.tabPageXmlSearch.Controls.Add(this.labelPostcode);
           this.tabPageXmlSearch.Controls.Add(this.buttonSearch);
           this.tabPageXmlSearch.Controls.Add(this.richTextBoxResults);
           this.tabPageXmlSearch.Controls.Add(this.groupBoxMethod);
           this.tabPageXmlSearch.Controls.Add(this.groupBoxStyle);
           this.tabPageXmlSearch.Location = new System.Drawing.Point(4, 22);
           this.tabPageXmlSearch.Name = "tabPageXmlSearch";
           this.tabPageXmlSearch.Size = new System.Drawing.Size(594, 582);
           this.tabPageXmlSearch.TabIndex = 0;
           this.tabPageXmlSearch.Text = "Xml Search";
           // 
           // groupBoxProtocolOptions
           // 
           this.groupBoxProtocolOptions.Controls.Add(this.radioButtonHttpGet);
           this.groupBoxProtocolOptions.Controls.Add(this.radioButtonSoap);
           this.groupBoxProtocolOptions.Controls.Add(this.radioButtonProxy);
           this.groupBoxProtocolOptions.Location = new System.Drawing.Point(264, 217);
           this.groupBoxProtocolOptions.Name = "groupBoxProtocolOptions";
           this.groupBoxProtocolOptions.Size = new System.Drawing.Size(245, 41);
           this.groupBoxProtocolOptions.TabIndex = 23;
           this.groupBoxProtocolOptions.TabStop = false;
           this.groupBoxProtocolOptions.Text = "Protocol options";
           // 
           // radioButtonHttpGet
           // 
           this.radioButtonHttpGet.AutoSize = true;
           this.radioButtonHttpGet.Location = new System.Drawing.Point(173, 13);
           this.radioButtonHttpGet.Name = "radioButtonHttpGet";
           this.radioButtonHttpGet.Size = new System.Drawing.Size(62, 17);
           this.radioButtonHttpGet.TabIndex = 2;
           this.radioButtonHttpGet.Text = "HttpGet";
           this.radioButtonHttpGet.UseVisualStyleBackColor = true;
           // 
           // radioButtonSoap
           // 
           this.radioButtonSoap.AutoSize = true;
           this.radioButtonSoap.Checked = true;
           this.radioButtonSoap.Location = new System.Drawing.Point(117, 13);
           this.radioButtonSoap.Name = "radioButtonSoap";
           this.radioButtonSoap.Size = new System.Drawing.Size(50, 17);
           this.radioButtonSoap.TabIndex = 1;
           this.radioButtonSoap.TabStop = true;
           this.radioButtonSoap.Text = "Soap";
           this.radioButtonSoap.UseVisualStyleBackColor = true;
           // 
           // radioButtonProxy
           // 
           this.radioButtonProxy.AutoSize = true;
           this.radioButtonProxy.Location = new System.Drawing.Point(24, 13);
           this.radioButtonProxy.Name = "radioButtonProxy";
           this.radioButtonProxy.Size = new System.Drawing.Size(88, 17);
           this.radioButtonProxy.TabIndex = 0;
           this.radioButtonProxy.Text = "Proxy objects";
           this.radioButtonProxy.UseVisualStyleBackColor = true;
           // 
           // dataGridNames
           // 
           this.dataGridNames.DataMember = "";
           this.dataGridNames.HeaderForeColor = System.Drawing.SystemColors.ControlText;
           this.dataGridNames.Location = new System.Drawing.Point(24, 288);
           this.dataGridNames.Name = "dataGridNames";
           this.dataGridNames.Size = new System.Drawing.Size(448, 264);
           this.dataGridNames.TabIndex = 21;
           // 
           // buttonReset
           // 
           this.buttonReset.Location = new System.Drawing.Point(16, 259);
           this.buttonReset.Name = "buttonReset";
           this.buttonReset.Size = new System.Drawing.Size(75, 23);
           this.buttonReset.TabIndex = 20;
           this.buttonReset.Text = "Reset";
           this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
           // 
           // radioButtonAsic
           // 
           this.radioButtonAsic.Location = new System.Drawing.Point(112, 19);
           this.radioButtonAsic.Name = "radioButtonAsic";
           this.radioButtonAsic.Size = new System.Drawing.Size(96, 20);
           this.radioButtonAsic.TabIndex = 8;
           this.radioButtonAsic.Text = "ASIC Search";
           this.radioButtonAsic.CheckedChanged += new System.EventHandler(this.radioButtonAsic_CheckedChanged);
           // 
           // radioButtonName
           // 
           this.radioButtonName.Location = new System.Drawing.Point(214, 19);
           this.radioButtonName.Name = "radioButtonName";
           this.radioButtonName.Size = new System.Drawing.Size(98, 20);
           this.radioButtonName.TabIndex = 9;
           this.radioButtonName.Text = "Name Search";
           this.radioButtonName.CheckedChanged += new System.EventHandler(this.radioButtonName_CheckedChanged);
           // 
           // radioButtonAbn
           // 
           this.radioButtonAbn.Checked = true;
           this.radioButtonAbn.Location = new System.Drawing.Point(15, 19);
           this.radioButtonAbn.Name = "radioButtonAbn";
           this.radioButtonAbn.Size = new System.Drawing.Size(91, 20);
           this.radioButtonAbn.TabIndex = 7;
           this.radioButtonAbn.TabStop = true;
           this.radioButtonAbn.Text = "ABN Search";
           this.radioButtonAbn.CheckedChanged += new System.EventHandler(this.radioButtonAbn_CheckedChanged);
           // 
           // radioButtonPostcode
           // 
           this.radioButtonPostcode.Location = new System.Drawing.Point(318, 19);
           this.radioButtonPostcode.Name = "radioButtonPostcode";
           this.radioButtonPostcode.Size = new System.Drawing.Size(114, 20);
           this.radioButtonPostcode.TabIndex = 22;
           this.radioButtonPostcode.Text = "Postcode Search";
           this.radioButtonPostcode.CheckedChanged += new System.EventHandler(this.radioButtonPostcode_CheckedChanged);
           // 
           // labelGuid
           // 
           this.labelGuid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
           this.labelGuid.ForeColor = System.Drawing.SystemColors.Desktop;
           this.labelGuid.Location = new System.Drawing.Point(16, 65);
           this.labelGuid.Name = "labelGuid";
           this.labelGuid.Size = new System.Drawing.Size(40, 23);
           this.labelGuid.TabIndex = 10;
           this.labelGuid.Text = "GUID:";
           this.labelGuid.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
           // 
           // labelCriteria
           // 
           this.labelCriteria.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
           this.labelCriteria.ForeColor = System.Drawing.SystemColors.Desktop;
           this.labelCriteria.Location = new System.Drawing.Point(8, 91);
           this.labelCriteria.Name = "labelCriteria";
           this.labelCriteria.Size = new System.Drawing.Size(48, 23);
           this.labelCriteria.TabIndex = 1;
           this.labelCriteria.Text = "Criteria:";
           this.labelCriteria.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
           // 
           // textBoxCriteria
           // 
           this.textBoxCriteria.Location = new System.Drawing.Point(64, 94);
           this.textBoxCriteria.Name = "textBoxCriteria";
           this.textBoxCriteria.Size = new System.Drawing.Size(264, 20);
           this.textBoxCriteria.TabIndex = 1;
           this.textBoxCriteria.Text = "51835430479";
           // 
           // textBoxGuid
           // 
           this.textBoxGuid.Location = new System.Drawing.Point(64, 64);
           this.textBoxGuid.Name = "textBoxGuid";
           this.textBoxGuid.Size = new System.Drawing.Size(264, 20);
           this.textBoxGuid.TabIndex = 0;
           // 
           // groupStates
           // 
           this.groupStates.Controls.Add(this.checkBoxNt);
           this.groupStates.Controls.Add(this.checkBoxAct);
           this.groupStates.Controls.Add(this.checkBoxTas);
           this.groupStates.Controls.Add(this.checkBoxWa);
           this.groupStates.Controls.Add(this.checkBoxSa);
           this.groupStates.Controls.Add(this.checkBoxQld);
           this.groupStates.Controls.Add(this.checkBoxVic);
           this.groupStates.Controls.Add(this.checkBoxNsw);
           this.groupStates.Location = new System.Drawing.Point(16, 121);
           this.groupStates.Name = "groupStates";
           this.groupStates.Size = new System.Drawing.Size(232, 88);
           this.groupStates.TabIndex = 3;
           this.groupStates.TabStop = false;
           this.groupStates.Text = "States";
           // 
           // checkBoxNt
           // 
           this.checkBoxNt.Checked = true;
           this.checkBoxNt.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxNt.Location = new System.Drawing.Point(177, 50);
           this.checkBoxNt.Name = "checkBoxNt";
           this.checkBoxNt.Size = new System.Drawing.Size(47, 24);
           this.checkBoxNt.TabIndex = 7;
           this.checkBoxNt.Text = "NT";
           // 
           // checkBoxAct
           // 
           this.checkBoxAct.Checked = true;
           this.checkBoxAct.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxAct.Location = new System.Drawing.Point(177, 24);
           this.checkBoxAct.Name = "checkBoxAct";
           this.checkBoxAct.Size = new System.Drawing.Size(47, 24);
           this.checkBoxAct.TabIndex = 6;
           this.checkBoxAct.Text = "ACT";
           // 
           // checkBoxTas
           // 
           this.checkBoxTas.Checked = true;
           this.checkBoxTas.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxTas.Location = new System.Drawing.Point(121, 50);
           this.checkBoxTas.Name = "checkBoxTas";
           this.checkBoxTas.Size = new System.Drawing.Size(56, 24);
           this.checkBoxTas.TabIndex = 5;
           this.checkBoxTas.Text = "Tas";
           // 
           // checkBoxWa
           // 
           this.checkBoxWa.Checked = true;
           this.checkBoxWa.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxWa.Location = new System.Drawing.Point(122, 24);
           this.checkBoxWa.Name = "checkBoxWa";
           this.checkBoxWa.Size = new System.Drawing.Size(56, 24);
           this.checkBoxWa.TabIndex = 4;
           this.checkBoxWa.Text = "WA";
           // 
           // checkBoxSa
           // 
           this.checkBoxSa.Checked = true;
           this.checkBoxSa.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxSa.Location = new System.Drawing.Point(66, 50);
           this.checkBoxSa.Name = "checkBoxSa";
           this.checkBoxSa.Size = new System.Drawing.Size(56, 24);
           this.checkBoxSa.TabIndex = 3;
           this.checkBoxSa.Text = "SA";
           // 
           // checkBoxQld
           // 
           this.checkBoxQld.Checked = true;
           this.checkBoxQld.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxQld.Location = new System.Drawing.Point(66, 24);
           this.checkBoxQld.Name = "checkBoxQld";
           this.checkBoxQld.Size = new System.Drawing.Size(54, 24);
           this.checkBoxQld.TabIndex = 2;
           this.checkBoxQld.Text = "Qld";
           // 
           // checkBoxVic
           // 
           this.checkBoxVic.Checked = true;
           this.checkBoxVic.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxVic.Location = new System.Drawing.Point(8, 50);
           this.checkBoxVic.Name = "checkBoxVic";
           this.checkBoxVic.Size = new System.Drawing.Size(56, 24);
           this.checkBoxVic.TabIndex = 1;
           this.checkBoxVic.Text = "Vic";
           // 
           // checkBoxNsw
           // 
           this.checkBoxNsw.Checked = true;
           this.checkBoxNsw.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxNsw.Location = new System.Drawing.Point(8, 24);
           this.checkBoxNsw.Name = "checkBoxNsw";
           this.checkBoxNsw.Size = new System.Drawing.Size(56, 24);
           this.checkBoxNsw.TabIndex = 0;
           this.checkBoxNsw.Text = "NSW";
           // 
           // groupBoxNameTypes
           // 
           this.groupBoxNameTypes.Controls.Add(this.checkBoxTrading);
           this.groupBoxNameTypes.Controls.Add(this.checkBoxLegal);
           this.groupBoxNameTypes.Location = new System.Drawing.Point(264, 121);
           this.groupBoxNameTypes.Name = "groupBoxNameTypes";
           this.groupBoxNameTypes.Size = new System.Drawing.Size(112, 88);
           this.groupBoxNameTypes.TabIndex = 4;
           this.groupBoxNameTypes.TabStop = false;
           this.groupBoxNameTypes.Text = "Name Types";
           // 
           // checkBoxTrading
           // 
           this.checkBoxTrading.Checked = true;
           this.checkBoxTrading.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxTrading.Location = new System.Drawing.Point(5, 50);
           this.checkBoxTrading.Name = "checkBoxTrading";
           this.checkBoxTrading.Size = new System.Drawing.Size(100, 24);
           this.checkBoxTrading.TabIndex = 1;
           this.checkBoxTrading.Text = "Trading Name";
           // 
           // checkBoxLegal
           // 
           this.checkBoxLegal.Checked = true;
           this.checkBoxLegal.CheckState = System.Windows.Forms.CheckState.Checked;
           this.checkBoxLegal.Location = new System.Drawing.Point(5, 24);
           this.checkBoxLegal.Name = "checkBoxLegal";
           this.checkBoxLegal.Size = new System.Drawing.Size(89, 24);
           this.checkBoxLegal.TabIndex = 0;
           this.checkBoxLegal.Text = "Legal Name";
           // 
           // textBoxPostcode
           // 
           this.textBoxPostcode.Location = new System.Drawing.Point(76, 217);
           this.textBoxPostcode.Name = "textBoxPostcode";
           this.textBoxPostcode.Size = new System.Drawing.Size(56, 20);
           this.textBoxPostcode.TabIndex = 5;
           this.textBoxPostcode.Text = "ALL";
           // 
           // checkBoxHistory
           // 
           this.checkBoxHistory.Location = new System.Drawing.Point(144, 217);
           this.checkBoxHistory.Name = "checkBoxHistory";
           this.checkBoxHistory.Size = new System.Drawing.Size(104, 24);
           this.checkBoxHistory.TabIndex = 12;
           this.checkBoxHistory.Text = "Include History";
           // 
           // labelPostcode
           // 
           this.labelPostcode.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
           this.labelPostcode.ForeColor = System.Drawing.SystemColors.Desktop;
           this.labelPostcode.Location = new System.Drawing.Point(9, 214);
           this.labelPostcode.Name = "labelPostcode";
           this.labelPostcode.Size = new System.Drawing.Size(64, 23);
           this.labelPostcode.TabIndex = 2;
           this.labelPostcode.Text = "Postcode:";
           this.labelPostcode.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
           // 
           // buttonSearch
           // 
           this.buttonSearch.Location = new System.Drawing.Point(100, 259);
           this.buttonSearch.Name = "buttonSearch";
           this.buttonSearch.Size = new System.Drawing.Size(75, 23);
           this.buttonSearch.TabIndex = 6;
           this.buttonSearch.Text = "Search";
           this.buttonSearch.Click += new System.EventHandler(this.buttonSearch_Click);
           // 
           // richTextBoxResults
           // 
           this.richTextBoxResults.Location = new System.Drawing.Point(8, 288);
           this.richTextBoxResults.Name = "richTextBoxResults";
           this.richTextBoxResults.Size = new System.Drawing.Size(472, 264);
           this.richTextBoxResults.TabIndex = 13;
           this.richTextBoxResults.Text = "";
           // 
           // groupBoxMethod
           // 
           this.groupBoxMethod.Controls.Add(this.radioButtonUpdateEvent);
           this.groupBoxMethod.Controls.Add(this.radioButtonPostcode);
           this.groupBoxMethod.Controls.Add(this.radioButtonAbn);
           this.groupBoxMethod.Controls.Add(this.radioButtonName);
           this.groupBoxMethod.Controls.Add(this.radioButtonAsic);
           this.groupBoxMethod.Location = new System.Drawing.Point(17, 10);
           this.groupBoxMethod.Name = "groupBoxMethod";
           this.groupBoxMethod.Size = new System.Drawing.Size(567, 48);
           this.groupBoxMethod.TabIndex = 19;
           this.groupBoxMethod.TabStop = false;
           this.groupBoxMethod.Text = "Search Method";
           // 
           // groupBoxStyle
           // 
           this.groupBoxStyle.Controls.Add(this.radioButtonDoreplacedent);
           this.groupBoxStyle.Controls.Add(this.radioButtonRpc);
           this.groupBoxStyle.Location = new System.Drawing.Point(384, 121);
           this.groupBoxStyle.Name = "groupBoxStyle";
           this.groupBoxStyle.Size = new System.Drawing.Size(120, 88);
           this.groupBoxStyle.TabIndex = 18;
           this.groupBoxStyle.TabStop = false;
           this.groupBoxStyle.Text = "Soap Style";
           // 
           // radioButtonDoreplacedent
           // 
           this.radioButtonDoreplacedent.Checked = true;
           this.radioButtonDoreplacedent.Location = new System.Drawing.Point(7, 31);
           this.radioButtonDoreplacedent.Name = "radioButtonDoreplacedent";
           this.radioButtonDoreplacedent.Size = new System.Drawing.Size(104, 16);
           this.radioButtonDoreplacedent.TabIndex = 17;
           this.radioButtonDoreplacedent.TabStop = true;
           this.radioButtonDoreplacedent.Text = "Doreplacedent Style";
           // 
           // radioButtonRpc
           // 
           this.radioButtonRpc.Location = new System.Drawing.Point(7, 55);
           this.radioButtonRpc.Name = "radioButtonRpc";
           this.radioButtonRpc.Size = new System.Drawing.Size(88, 16);
           this.radioButtonRpc.TabIndex = 16;
           this.radioButtonRpc.Text = "RPC Style";
           // 
           // buttonExit
           // 
           this.buttonExit.Location = new System.Drawing.Point(461, 626);
           this.buttonExit.Name = "buttonExit";
           this.buttonExit.Size = new System.Drawing.Size(75, 23);
           this.buttonExit.TabIndex = 22;
           this.buttonExit.Text = "Exit";
           this.buttonExit.UseVisualStyleBackColor = true;
           this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click);
           // 
           // radioButtonUpdateEvent
           // 
           this.radioButtonUpdateEvent.AutoSize = true;
           this.radioButtonUpdateEvent.Location = new System.Drawing.Point(438, 21);
           this.radioButtonUpdateEvent.Name = "radioButtonUpdateEvent";
           this.radioButtonUpdateEvent.Size = new System.Drawing.Size(90, 17);
           this.radioButtonUpdateEvent.TabIndex = 24;
           this.radioButtonUpdateEvent.TabStop = true;
           this.radioButtonUpdateEvent.Text = "Update event";
           this.radioButtonUpdateEvent.UseVisualStyleBackColor = true;
           this.radioButtonUpdateEvent.CheckedChanged += new System.EventHandler(this.radioButtonUpdateEvent_CheckedChanged);
           // 
           // FormAbnLookup
           // 
           this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
           this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
           this.ClientSize = new System.Drawing.Size(644, 660);
           this.Controls.Add(this.buttonExit);
           this.Controls.Add(this.tabControlWebServices);
           this.Name = "FormAbnLookup";
           this.Text = "ABN Lookup";
           this.Load += new System.EventHandler(this.formAbnLookup_Load);
           this.tabControlWebServices.ResumeLayout(false);
           this.tabPageXmlSearch.ResumeLayout(false);
           this.tabPageXmlSearch.PerformLayout();
           this.groupBoxProtocolOptions.ResumeLayout(false);
           this.groupBoxProtocolOptions.PerformLayout();
           ((System.ComponentModel.ISupportInitialize)(this.dataGridNames)).EndInit();
           this.groupStates.ResumeLayout(false);
           this.groupBoxNameTypes.ResumeLayout(false);
           this.groupBoxMethod.ResumeLayout(false);
           this.groupBoxMethod.PerformLayout();
           this.groupBoxStyle.ResumeLayout(false);
           this.ResumeLayout(false);

        }

19 Source : FrmCaptcha.Designer.cs
with MIT License
from ACBrNet

private void InitializeComponent()
		{
			this.panel1 = new System.Windows.Forms.Panel();
			this.captchaLinkLabel = new System.Windows.Forms.LinkLabel();
			this.captchaPictureBox = new System.Windows.Forms.PictureBox();
			this.enviarCaptchaButton = new System.Windows.Forms.Button();
			this.captchaTextBox = new System.Windows.Forms.TextBox();
			this.panel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.captchaPictureBox)).BeginInit();
			this.SuspendLayout();
			// 
			// panel1
			// 
			this.panel1.BackColor = System.Drawing.Color.White;
			this.panel1.Controls.Add(this.captchaLinkLabel);
			this.panel1.Controls.Add(this.captchaPictureBox);
			this.panel1.Location = new System.Drawing.Point(12, 6);
			this.panel1.Name = "panel1";
			this.panel1.Size = new System.Drawing.Size(352, 117);
			this.panel1.TabIndex = 8;
			// 
			// captchaLinkLabel
			// 
			this.captchaLinkLabel.Dock = System.Windows.Forms.DockStyle.Top;
			this.captchaLinkLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.captchaLinkLabel.Location = new System.Drawing.Point(0, 85);
			this.captchaLinkLabel.Name = "captchaLinkLabel";
			this.captchaLinkLabel.Size = new System.Drawing.Size(352, 32);
			this.captchaLinkLabel.TabIndex = 2;
			this.captchaLinkLabel.TabStop = true;
			this.captchaLinkLabel.Text = "Atualizar Captcha";
			this.captchaLinkLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.captchaLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.captchaCnpjLinkLabel_LinkClicked);
			// 
			// captchaPictureBox
			// 
			this.captchaPictureBox.BackColor = System.Drawing.Color.White;
			this.captchaPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.captchaPictureBox.Dock = System.Windows.Forms.DockStyle.Top;
			this.captchaPictureBox.Location = new System.Drawing.Point(0, 0);
			this.captchaPictureBox.Name = "captchaPictureBox";
			this.captchaPictureBox.Size = new System.Drawing.Size(352, 85);
			this.captchaPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.captchaPictureBox.TabIndex = 1;
			this.captchaPictureBox.TabStop = false;
			// 
			// enviarCaptchaButton
			// 
			this.enviarCaptchaButton.Location = new System.Drawing.Point(270, 129);
			this.enviarCaptchaButton.Name = "enviarCaptchaButton";
			this.enviarCaptchaButton.Size = new System.Drawing.Size(94, 38);
			this.enviarCaptchaButton.TabIndex = 7;
			this.enviarCaptchaButton.Text = "Enviar";
			this.enviarCaptchaButton.UseVisualStyleBackColor = true;
			this.enviarCaptchaButton.Click += new System.EventHandler(this.enviarCaptchaButton_Click);
			// 
			// captchaTextBox
			// 
			this.captchaTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			this.captchaTextBox.Location = new System.Drawing.Point(12, 129);
			this.captchaTextBox.Name = "captchaTextBox";
			this.captchaTextBox.Size = new System.Drawing.Size(252, 38);
			this.captchaTextBox.TabIndex = 10;
			// 
			// FrmCaptcha
			// 
			this.AcceptButton = this.enviarCaptchaButton;
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(376, 179);
			this.ControlBox = false;
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.enviarCaptchaButton);
			this.Controls.Add(this.captchaTextBox);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
			this.KeyPreview = true;
			this.Name = "FrmCaptcha";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Digite o Captcha";
			this.Shown += new System.EventHandler(this.FrmCaptcha_Shown);
			this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.FrmCaptcha_KeyUp);
			this.panel1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.captchaPictureBox)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}

19 Source : LocationForm.Designer.cs
with Microsoft Public License
from achimismaili

private void InitializeComponent()
        {
            this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
            this.FeaturereplacedlePanel = new System.Windows.Forms.Panel();
            this.FeaturePanelCaption = new System.Windows.Forms.Label();
            this.LocationGrid = new System.Windows.Forms.DataGridView();
            this.LocationDetailsView = new System.Windows.Forms.ListView();
            this.DeactivateButton = new System.Windows.Forms.Button();
            this.MainSplitContainer.Panel1.SuspendLayout();
            this.MainSplitContainer.Panel2.SuspendLayout();
            this.MainSplitContainer.SuspendLayout();
            this.FeaturereplacedlePanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // MainSplitContainer
            // 
            this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
            this.MainSplitContainer.Name = "MainSplitContainer";
            this.MainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // MainSplitContainer.Panel1
            // 
            this.MainSplitContainer.Panel1.Controls.Add(this.FeaturereplacedlePanel);
            this.MainSplitContainer.Panel1.Controls.Add(this.LocationGrid);
            // 
            // MainSplitContainer.Panel2
            // 
            this.MainSplitContainer.Panel2.Controls.Add(this.DeactivateButton);
            this.MainSplitContainer.Panel2.Controls.Add(this.LocationDetailsView);
            this.MainSplitContainer.Size = new System.Drawing.Size(539, 503);
            this.MainSplitContainer.SplitterDistance = 321;
            this.MainSplitContainer.TabIndex = 0;
            // 
            // FeaturereplacedlePanel
            // 
            this.FeaturereplacedlePanel.Controls.Add(this.FeaturePanelCaption);
            this.FeaturereplacedlePanel.Location = new System.Drawing.Point(3, 3);
            this.FeaturereplacedlePanel.Name = "FeaturereplacedlePanel";
            this.FeaturereplacedlePanel.Size = new System.Drawing.Size(524, 30);
            this.FeaturereplacedlePanel.TabIndex = 3;
            // 
            // FeaturePanelCaption
            // 
            this.FeaturePanelCaption.AutoSize = true;
            this.FeaturePanelCaption.Location = new System.Drawing.Point(9, 6);
            this.FeaturePanelCaption.Name = "FeaturePanelCaption";
            this.FeaturePanelCaption.Size = new System.Drawing.Size(92, 13);
            this.FeaturePanelCaption.TabIndex = 3;
            this.FeaturePanelCaption.Text = "Feature Locations";
            // 
            // LocationGrid
            // 
            this.LocationGrid.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.LocationGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.LocationGrid.Location = new System.Drawing.Point(0, 39);
            this.LocationGrid.Name = "LocationGrid";
            this.LocationGrid.ReadOnly = true;
            this.LocationGrid.Size = new System.Drawing.Size(536, 279);
            this.LocationGrid.TabIndex = 0;
            this.LocationGrid.SelectionChanged += new System.EventHandler(this.LocationGrid_SelectionChanged);
            // 
            // LocationDetailsView
            // 
            this.LocationDetailsView.Location = new System.Drawing.Point(4, 32);
            this.LocationDetailsView.Name = "LocationDetailsView";
            this.LocationDetailsView.Size = new System.Drawing.Size(532, 143);
            this.LocationDetailsView.TabIndex = 0;
            this.LocationDetailsView.UseCompatibleStateImageBehavior = false;
            this.LocationDetailsView.View = System.Windows.Forms.View.Details;
            // 
            // DeactivateButton
            // 
            this.DeactivateButton.Location = new System.Drawing.Point(184, 3);
            this.DeactivateButton.Name = "DeactivateButton";
            this.DeactivateButton.Size = new System.Drawing.Size(200, 23);
            this.DeactivateButton.TabIndex = 1;
            this.DeactivateButton.Text = "Deactivate Selected Activations";
            this.DeactivateButton.UseVisualStyleBackColor = true;
            // 
            // LocationForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(539, 503);
            this.Controls.Add(this.MainSplitContainer);
            this.Name = "LocationForm";
            this.Text = "LocationForm";
            this.MainSplitContainer.Panel1.ResumeLayout(false);
            this.MainSplitContainer.Panel2.ResumeLayout(false);
            this.MainSplitContainer.ResumeLayout(false);
            this.FeaturereplacedlePanel.ResumeLayout(false);
            this.FeaturereplacedlePanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : FrmMain.Designer.cs
with Microsoft Public License
from achimismaili

private void InitializeComponent()
        {
            this.txtResult = new System.Windows.Forms.TextBox();
            this.lblSPSiteFeatures = new System.Windows.Forms.Label();
            this.clbSPSiteFeatures = new System.Windows.Forms.CheckedListBox();
            this.lblSPWebFeatures = new System.Windows.Forms.Label();
            this.clbSPWebFeatures = new System.Windows.Forms.CheckedListBox();
            this.btnRemoveFromWeb = new System.Windows.Forms.Button();
            this.lblLog = new System.Windows.Forms.Label();
            this.listWebApplications = new System.Windows.Forms.ListBox();
            this.btnListWebApplications = new System.Windows.Forms.Button();
            this.lblSiteCollections = new System.Windows.Forms.Label();
            this.listSiteCollections = new System.Windows.Forms.ListBox();
            this.lblWebApps = new System.Windows.Forms.Label();
            this.listSites = new System.Windows.Forms.ListBox();
            this.lblWebs = new System.Windows.Forms.Label();
            this.clbFeatureDefinitions = new System.Windows.Forms.CheckedListBox();
            this.label4 = new System.Windows.Forms.Label();
            this.lblFeatureDefinitions = new System.Windows.Forms.Label();
            this.btnReloadFDefs = new System.Windows.Forms.Button();
            this.btnUninstFDef = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.btnRemoveFromSiteCollection = new System.Windows.Forms.Button();
            this.btnRemoveFromWebApp = new System.Windows.Forms.Button();
            this.btnRemoveFromFarm = new System.Windows.Forms.Button();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.FarmFeatures = new System.Windows.Forms.TabPage();
            this.btnLoadAllFeatureActivations = new System.Windows.Forms.Button();
            this.btnFindAllActivationsFeature = new System.Windows.Forms.Button();
            this.btnActivateSPWeb = new System.Windows.Forms.Button();
            this.btnActivateSPSite = new System.Windows.Forms.Button();
            this.btnActivateSPWebApp = new System.Windows.Forms.Button();
            this.btnFindActivatedFeature = new System.Windows.Forms.Button();
            this.btnActivateSPFarm = new System.Windows.Forms.Button();
            this.RemoveFeatures = new System.Windows.Forms.TabPage();
            this.splitContainerRightSiteCollFeaturesWebFeatures = new System.Windows.Forms.SplitContainer();
            this.btnClearLog = new System.Windows.Forms.Button();
            this.btnFindFaultyFeature = new System.Windows.Forms.Button();
            this.splitContainerCompleteMainframe = new System.Windows.Forms.SplitContainer();
            this.splitContainerLeftWindow = new System.Windows.Forms.SplitContainer();
            this.splitContainerLeftUpperWebAppAndSiteColl = new System.Windows.Forms.SplitContainer();
            this.splitContainerLeftDownWebsAndLogs = new System.Windows.Forms.SplitContainer();
            this.tabControl1.SuspendLayout();
            this.FarmFeatures.SuspendLayout();
            this.RemoveFeatures.SuspendLayout();
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel1.SuspendLayout();
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel2.SuspendLayout();
            this.splitContainerRightSiteCollFeaturesWebFeatures.SuspendLayout();
            this.splitContainerCompleteMainframe.Panel1.SuspendLayout();
            this.splitContainerCompleteMainframe.Panel2.SuspendLayout();
            this.splitContainerCompleteMainframe.SuspendLayout();
            this.splitContainerLeftWindow.Panel1.SuspendLayout();
            this.splitContainerLeftWindow.Panel2.SuspendLayout();
            this.splitContainerLeftWindow.SuspendLayout();
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.SuspendLayout();
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel2.SuspendLayout();
            this.splitContainerLeftUpperWebAppAndSiteColl.SuspendLayout();
            this.splitContainerLeftDownWebsAndLogs.Panel1.SuspendLayout();
            this.splitContainerLeftDownWebsAndLogs.Panel2.SuspendLayout();
            this.splitContainerLeftDownWebsAndLogs.SuspendLayout();
            this.SuspendLayout();
            // 
            // txtResult
            // 
            this.txtResult.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.txtResult.Location = new System.Drawing.Point(0, 16);
            this.txtResult.Multiline = true;
            this.txtResult.Name = "txtResult";
            this.txtResult.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.txtResult.Size = new System.Drawing.Size(412, 328);
            this.txtResult.TabIndex = 2;
            this.txtResult.WordWrap = false;
            // 
            // lblSPSiteFeatures
            // 
            this.lblSPSiteFeatures.AutoSize = true;
            this.lblSPSiteFeatures.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblSPSiteFeatures.Location = new System.Drawing.Point(7, 0);
            this.lblSPSiteFeatures.Name = "lblSPSiteFeatures";
            this.lblSPSiteFeatures.Size = new System.Drawing.Size(159, 13);
            this.lblSPSiteFeatures.TabIndex = 9;
            this.lblSPSiteFeatures.Text = "Site Collection Features (SPSite)";
            // 
            // clbSPSiteFeatures
            // 
            this.clbSPSiteFeatures.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.clbSPSiteFeatures.BackColor = System.Drawing.Color.Moccasin;
            this.clbSPSiteFeatures.CheckOnClick = true;
            this.clbSPSiteFeatures.FormattingEnabled = true;
            this.clbSPSiteFeatures.Location = new System.Drawing.Point(10, 16);
            this.clbSPSiteFeatures.Name = "clbSPSiteFeatures";
            this.clbSPSiteFeatures.Size = new System.Drawing.Size(436, 214);
            this.clbSPSiteFeatures.TabIndex = 8;
            this.clbSPSiteFeatures.SelectedIndexChanged += new System.EventHandler(this.clbSPSiteFeatures_SelectedIndexChanged);
            // 
            // lblSPWebFeatures
            // 
            this.lblSPWebFeatures.AutoSize = true;
            this.lblSPWebFeatures.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.lblSPWebFeatures.Location = new System.Drawing.Point(7, -1);
            this.lblSPWebFeatures.Name = "lblSPWebFeatures";
            this.lblSPWebFeatures.Size = new System.Drawing.Size(115, 13);
            this.lblSPWebFeatures.TabIndex = 8;
            this.lblSPWebFeatures.Text = "Site Features (SPWeb)";
            // 
            // clbSPWebFeatures
            // 
            this.clbSPWebFeatures.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.clbSPWebFeatures.BackColor = System.Drawing.Color.Moccasin;
            this.clbSPWebFeatures.CheckOnClick = true;
            this.clbSPWebFeatures.FormattingEnabled = true;
            this.clbSPWebFeatures.Location = new System.Drawing.Point(10, 15);
            this.clbSPWebFeatures.Name = "clbSPWebFeatures";
            this.clbSPWebFeatures.Size = new System.Drawing.Size(436, 214);
            this.clbSPWebFeatures.TabIndex = 7;
            this.clbSPWebFeatures.SelectedIndexChanged += new System.EventHandler(this.clbSPWebFeatures_SelectedIndexChanged);
            // 
            // btnRemoveFromWeb
            // 
            this.btnRemoveFromWeb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnRemoveFromWeb.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnRemoveFromWeb.Location = new System.Drawing.Point(6, 490);
            this.btnRemoveFromWeb.Name = "btnRemoveFromWeb";
            this.btnRemoveFromWeb.Size = new System.Drawing.Size(200, 23);
            this.btnRemoveFromWeb.TabIndex = 8;
            this.btnRemoveFromWeb.Text = "Remove from selected Site (SPweb)";
            this.btnRemoveFromWeb.UseVisualStyleBackColor = true;
            this.btnRemoveFromWeb.Click += new System.EventHandler(this.btnRemoveFromWeb_Click);
            // 
            // lblLog
            // 
            this.lblLog.AutoSize = true;
            this.lblLog.Location = new System.Drawing.Point(3, 0);
            this.lblLog.Name = "lblLog";
            this.lblLog.Size = new System.Drawing.Size(25, 13);
            this.lblLog.TabIndex = 10;
            this.lblLog.Text = "Log";
            // 
            // listWebApplications
            // 
            this.listWebApplications.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.listWebApplications.BackColor = System.Drawing.SystemColors.Window;
            this.listWebApplications.FormattingEnabled = true;
            this.listWebApplications.Location = new System.Drawing.Point(0, 32);
            this.listWebApplications.Name = "listWebApplications";
            this.listWebApplications.Size = new System.Drawing.Size(412, 69);
            this.listWebApplications.TabIndex = 11;
            this.listWebApplications.SelectedIndexChanged += new System.EventHandler(this.listWebApplications_SelectedIndexChanged);
            // 
            // btnListWebApplications
            // 
            this.btnListWebApplications.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnListWebApplications.Location = new System.Drawing.Point(304, 3);
            this.btnListWebApplications.Name = "btnListWebApplications";
            this.btnListWebApplications.Size = new System.Drawing.Size(105, 24);
            this.btnListWebApplications.TabIndex = 12;
            this.btnListWebApplications.Text = "Reload Web Apps";
            this.btnListWebApplications.UseVisualStyleBackColor = true;
            this.btnListWebApplications.Click += new System.EventHandler(this.btnListWebApplications_Click);
            // 
            // lblSiteCollections
            // 
            this.lblSiteCollections.AutoSize = true;
            this.lblSiteCollections.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblSiteCollections.Location = new System.Drawing.Point(0, 0);
            this.lblSiteCollections.Name = "lblSiteCollections";
            this.lblSiteCollections.Size = new System.Drawing.Size(233, 13);
            this.lblSiteCollections.TabIndex = 8;
            this.lblSiteCollections.Text = "Site Collections within selected Web Application";
            // 
            // listSiteCollections
            // 
            this.listSiteCollections.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.listSiteCollections.BackColor = System.Drawing.SystemColors.Window;
            this.listSiteCollections.Enabled = false;
            this.listSiteCollections.FormattingEnabled = true;
            this.listSiteCollections.Location = new System.Drawing.Point(0, 15);
            this.listSiteCollections.Name = "listSiteCollections";
            this.listSiteCollections.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
            this.listSiteCollections.Size = new System.Drawing.Size(412, 82);
            this.listSiteCollections.TabIndex = 9;
            this.listSiteCollections.SelectedIndexChanged += new System.EventHandler(this.listSiteCollections_SelectedIndexChanged);
            // 
            // lblWebApps
            // 
            this.lblWebApps.AutoSize = true;
            this.lblWebApps.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblWebApps.Location = new System.Drawing.Point(12, 9);
            this.lblWebApps.Name = "lblWebApps";
            this.lblWebApps.Size = new System.Drawing.Size(90, 13);
            this.lblWebApps.TabIndex = 9;
            this.lblWebApps.Text = "Web Applications";
            // 
            // listSites
            // 
            this.listSites.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.listSites.BackColor = System.Drawing.SystemColors.Window;
            this.listSites.FormattingEnabled = true;
            this.listSites.Location = new System.Drawing.Point(0, 16);
            this.listSites.Name = "listSites";
            this.listSites.Size = new System.Drawing.Size(412, 121);
            this.listSites.TabIndex = 9;
            this.listSites.SelectedIndexChanged += new System.EventHandler(this.listSites_SelectedIndexChanged);
            // 
            // lblWebs
            // 
            this.lblWebs.AutoSize = true;
            this.lblWebs.ForeColor = System.Drawing.SystemColors.ControlText;
            this.lblWebs.Location = new System.Drawing.Point(3, 0);
            this.lblWebs.Name = "lblWebs";
            this.lblWebs.Size = new System.Drawing.Size(196, 13);
            this.lblWebs.TabIndex = 8;
            this.lblWebs.Text = "Web Sites within selected SiteCollection";
            // 
            // clbFeatureDefinitions
            // 
            this.clbFeatureDefinitions.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.clbFeatureDefinitions.BackColor = System.Drawing.Color.LightSteelBlue;
            this.clbFeatureDefinitions.CheckOnClick = true;
            this.clbFeatureDefinitions.ForeColor = System.Drawing.Color.MidnightBlue;
            this.clbFeatureDefinitions.FormattingEnabled = true;
            this.clbFeatureDefinitions.Location = new System.Drawing.Point(6, 31);
            this.clbFeatureDefinitions.Name = "clbFeatureDefinitions";
            this.clbFeatureDefinitions.Size = new System.Drawing.Size(436, 409);
            this.clbFeatureDefinitions.TabIndex = 8;
            this.clbFeatureDefinitions.SelectedIndexChanged += new System.EventHandler(this.clbFeatureDefinitions_SelectedIndexChanged);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(290, 6);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(156, 13);
            this.label4.TabIndex = 17;
            this.label4.Text = "(Re) Load the list of all Features";
            // 
            // lblFeatureDefinitions
            // 
            this.lblFeatureDefinitions.AutoSize = true;
            this.lblFeatureDefinitions.ForeColor = System.Drawing.Color.Black;
            this.lblFeatureDefinitions.Location = new System.Drawing.Point(6, 16);
            this.lblFeatureDefinitions.Name = "lblFeatureDefinitions";
            this.lblFeatureDefinitions.Size = new System.Drawing.Size(158, 13);
            this.lblFeatureDefinitions.TabIndex = 9;
            this.lblFeatureDefinitions.Text = "All Features installed in the Farm";
            // 
            // btnReloadFDefs
            // 
            this.btnReloadFDefs.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnReloadFDefs.Location = new System.Drawing.Point(222, 6);
            this.btnReloadFDefs.Name = "btnReloadFDefs";
            this.btnReloadFDefs.Size = new System.Drawing.Size(62, 21);
            this.btnReloadFDefs.TabIndex = 8;
            this.btnReloadFDefs.Text = "Load";
            this.btnReloadFDefs.UseVisualStyleBackColor = true;
            this.btnReloadFDefs.Click += new System.EventHandler(this.btnLoadFDefs_Click);
            // 
            // btnUninstFDef
            // 
            this.btnUninstFDef.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnUninstFDef.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnUninstFDef.Location = new System.Drawing.Point(9, 466);
            this.btnUninstFDef.Name = "btnUninstFDef";
            this.btnUninstFDef.Size = new System.Drawing.Size(62, 23);
            this.btnUninstFDef.TabIndex = 8;
            this.btnUninstFDef.Text = "Uninstall";
            this.btnUninstFDef.UseVisualStyleBackColor = true;
            this.btnUninstFDef.Click += new System.EventHandler(this.btnUninstFeatureDef_Click);
            // 
            // label1
            // 
            this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(77, 471);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(230, 13);
            this.label1.TabIndex = 16;
            this.label1.Text = "Uninstall selected Feature Definitions from Farm";
            // 
            // btnRemoveFromSiteCollection
            // 
            this.btnRemoveFromSiteCollection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnRemoveFromSiteCollection.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnRemoveFromSiteCollection.Location = new System.Drawing.Point(6, 519);
            this.btnRemoveFromSiteCollection.Name = "btnRemoveFromSiteCollection";
            this.btnRemoveFromSiteCollection.Size = new System.Drawing.Size(200, 23);
            this.btnRemoveFromSiteCollection.TabIndex = 8;
            this.btnRemoveFromSiteCollection.Text = "Remove from selected SiteCollection";
            this.btnRemoveFromSiteCollection.UseVisualStyleBackColor = true;
            this.btnRemoveFromSiteCollection.Click += new System.EventHandler(this.btnRemoveFromSiteCollection_Click);
            // 
            // btnRemoveFromWebApp
            // 
            this.btnRemoveFromWebApp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnRemoveFromWebApp.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnRemoveFromWebApp.Location = new System.Drawing.Point(6, 548);
            this.btnRemoveFromWebApp.Name = "btnRemoveFromWebApp";
            this.btnRemoveFromWebApp.Size = new System.Drawing.Size(200, 23);
            this.btnRemoveFromWebApp.TabIndex = 8;
            this.btnRemoveFromWebApp.Text = "Remove from selected Web App";
            this.btnRemoveFromWebApp.UseVisualStyleBackColor = true;
            this.btnRemoveFromWebApp.Click += new System.EventHandler(this.btnRemoveFromWebApp_Click);
            // 
            // btnRemoveFromFarm
            // 
            this.btnRemoveFromFarm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnRemoveFromFarm.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
            this.btnRemoveFromFarm.Location = new System.Drawing.Point(6, 577);
            this.btnRemoveFromFarm.Name = "btnRemoveFromFarm";
            this.btnRemoveFromFarm.Size = new System.Drawing.Size(200, 23);
            this.btnRemoveFromFarm.TabIndex = 8;
            this.btnRemoveFromFarm.Text = "Remove Feature from Farm";
            this.btnRemoveFromFarm.UseVisualStyleBackColor = true;
            this.btnRemoveFromFarm.Click += new System.EventHandler(this.btnRemoveFromFarm_Click);
            // 
            // 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.Controls.Add(this.FarmFeatures);
            this.tabControl1.Controls.Add(this.RemoveFeatures);
            this.tabControl1.Location = new System.Drawing.Point(3, 3);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(458, 637);
            this.tabControl1.TabIndex = 17;
            // 
            // FarmFeatures
            // 
            this.FarmFeatures.Controls.Add(this.btnLoadAllFeatureActivations);
            this.FarmFeatures.Controls.Add(this.btnFindAllActivationsFeature);
            this.FarmFeatures.Controls.Add(this.btnActivateSPWeb);
            this.FarmFeatures.Controls.Add(this.btnActivateSPSite);
            this.FarmFeatures.Controls.Add(this.btnActivateSPWebApp);
            this.FarmFeatures.Controls.Add(this.btnFindActivatedFeature);
            this.FarmFeatures.Controls.Add(this.btnActivateSPFarm);
            this.FarmFeatures.Controls.Add(this.clbFeatureDefinitions);
            this.FarmFeatures.Controls.Add(this.btnUninstFDef);
            this.FarmFeatures.Controls.Add(this.label4);
            this.FarmFeatures.Controls.Add(this.label1);
            this.FarmFeatures.Controls.Add(this.lblFeatureDefinitions);
            this.FarmFeatures.Controls.Add(this.btnReloadFDefs);
            this.FarmFeatures.Location = new System.Drawing.Point(4, 22);
            this.FarmFeatures.Name = "FarmFeatures";
            this.FarmFeatures.Padding = new System.Windows.Forms.Padding(3);
            this.FarmFeatures.Size = new System.Drawing.Size(450, 611);
            this.FarmFeatures.TabIndex = 1;
            this.FarmFeatures.Text = "Farm Feature Administration";
            this.FarmFeatures.UseVisualStyleBackColor = true;
            // 
            // btnLoadAllFeatureActivations
            // 
            this.btnLoadAllFeatureActivations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnLoadAllFeatureActivations.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnLoadAllFeatureActivations.Location = new System.Drawing.Point(247, 553);
            this.btnLoadAllFeatureActivations.Name = "btnLoadAllFeatureActivations";
            this.btnLoadAllFeatureActivations.Size = new System.Drawing.Size(195, 23);
            this.btnLoadAllFeatureActivations.TabIndex = 23;
            this.btnLoadAllFeatureActivations.Text = "Load all activation data";
            this.btnLoadAllFeatureActivations.UseVisualStyleBackColor = true;
            this.btnLoadAllFeatureActivations.Click += new System.EventHandler(this.btnLoadAllFeatureActivations_Click);
            // 
            // btnFindAllActivationsFeature
            // 
            this.btnFindAllActivationsFeature.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnFindAllActivationsFeature.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnFindAllActivationsFeature.Location = new System.Drawing.Point(247, 524);
            this.btnFindAllActivationsFeature.Name = "btnFindAllActivationsFeature";
            this.btnFindAllActivationsFeature.Size = new System.Drawing.Size(195, 23);
            this.btnFindAllActivationsFeature.TabIndex = 22;
            this.btnFindAllActivationsFeature.Text = "Find all activations";
            this.btnFindAllActivationsFeature.UseVisualStyleBackColor = true;
            this.btnFindAllActivationsFeature.Click += new System.EventHandler(this.btnFindAllActivationsFeature_Click);
            // 
            // btnActivateSPWeb
            // 
            this.btnActivateSPWeb.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnActivateSPWeb.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnActivateSPWeb.Location = new System.Drawing.Point(9, 495);
            this.btnActivateSPWeb.Name = "btnActivateSPWeb";
            this.btnActivateSPWeb.Size = new System.Drawing.Size(200, 23);
            this.btnActivateSPWeb.TabIndex = 20;
            this.btnActivateSPWeb.Text = "Activate in selected Site (SPweb)";
            this.btnActivateSPWeb.UseVisualStyleBackColor = true;
            this.btnActivateSPWeb.Click += new System.EventHandler(this.btnActivateSPWeb_Click);
            // 
            // btnActivateSPSite
            // 
            this.btnActivateSPSite.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnActivateSPSite.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnActivateSPSite.Location = new System.Drawing.Point(9, 524);
            this.btnActivateSPSite.Name = "btnActivateSPSite";
            this.btnActivateSPSite.Size = new System.Drawing.Size(200, 23);
            this.btnActivateSPSite.TabIndex = 21;
            this.btnActivateSPSite.Text = "Activate in selected SiteCollection";
            this.btnActivateSPSite.UseVisualStyleBackColor = true;
            this.btnActivateSPSite.Click += new System.EventHandler(this.btnActivateSPSite_Click);
            // 
            // btnActivateSPWebApp
            // 
            this.btnActivateSPWebApp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnActivateSPWebApp.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnActivateSPWebApp.Location = new System.Drawing.Point(9, 553);
            this.btnActivateSPWebApp.Name = "btnActivateSPWebApp";
            this.btnActivateSPWebApp.Size = new System.Drawing.Size(200, 23);
            this.btnActivateSPWebApp.TabIndex = 18;
            this.btnActivateSPWebApp.Text = "Activate in selected Web App";
            this.btnActivateSPWebApp.UseVisualStyleBackColor = true;
            this.btnActivateSPWebApp.Click += new System.EventHandler(this.btnActivateSPWebApp_Click);
            // 
            // btnFindActivatedFeature
            // 
            this.btnFindActivatedFeature.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnFindActivatedFeature.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnFindActivatedFeature.Location = new System.Drawing.Point(247, 495);
            this.btnFindActivatedFeature.Name = "btnFindActivatedFeature";
            this.btnFindActivatedFeature.Size = new System.Drawing.Size(195, 23);
            this.btnFindActivatedFeature.TabIndex = 19;
            this.btnFindActivatedFeature.Text = "Find one activation";
            this.btnFindActivatedFeature.UseVisualStyleBackColor = true;
            this.btnFindActivatedFeature.Click += new System.EventHandler(this.btnFindActivatedFeature_Click);
            // 
            // btnActivateSPFarm
            // 
            this.btnActivateSPFarm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnActivateSPFarm.ForeColor = System.Drawing.Color.MidnightBlue;
            this.btnActivateSPFarm.Location = new System.Drawing.Point(9, 582);
            this.btnActivateSPFarm.Name = "btnActivateSPFarm";
            this.btnActivateSPFarm.Size = new System.Drawing.Size(200, 23);
            this.btnActivateSPFarm.TabIndex = 19;
            this.btnActivateSPFarm.Text = "Activate in whole Farm";
            this.btnActivateSPFarm.UseVisualStyleBackColor = true;
            this.btnActivateSPFarm.Click += new System.EventHandler(this.btnActivateSPFarm_Click);
            // 
            // RemoveFeatures
            // 
            this.RemoveFeatures.Controls.Add(this.btnRemoveFromWeb);
            this.RemoveFeatures.Controls.Add(this.btnRemoveFromSiteCollection);
            this.RemoveFeatures.Controls.Add(this.btnRemoveFromWebApp);
            this.RemoveFeatures.Controls.Add(this.btnRemoveFromFarm);
            this.RemoveFeatures.Controls.Add(this.splitContainerRightSiteCollFeaturesWebFeatures);
            this.RemoveFeatures.ForeColor = System.Drawing.Color.DarkGoldenrod;
            this.RemoveFeatures.Location = new System.Drawing.Point(4, 22);
            this.RemoveFeatures.Name = "RemoveFeatures";
            this.RemoveFeatures.Padding = new System.Windows.Forms.Padding(3);
            this.RemoveFeatures.Size = new System.Drawing.Size(450, 611);
            this.RemoveFeatures.TabIndex = 0;
            this.RemoveFeatures.Text = "Remove / deactivate features in selected sites";
            this.RemoveFeatures.UseVisualStyleBackColor = true;
            // 
            // splitContainerRightSiteCollFeaturesWebFeatures
            // 
            this.splitContainerRightSiteCollFeaturesWebFeatures.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.splitContainerRightSiteCollFeaturesWebFeatures.Location = new System.Drawing.Point(-4, 0);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Name = "splitContainerRightSiteCollFeaturesWebFeatures";
            this.splitContainerRightSiteCollFeaturesWebFeatures.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerRightSiteCollFeaturesWebFeatures.Panel1
            // 
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel1.Controls.Add(this.clbSPSiteFeatures);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel1.Controls.Add(this.lblSPSiteFeatures);
            // 
            // splitContainerRightSiteCollFeaturesWebFeatures.Panel2
            // 
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel2.Controls.Add(this.lblSPWebFeatures);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel2.Controls.Add(this.clbSPWebFeatures);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Size = new System.Drawing.Size(458, 484);
            this.splitContainerRightSiteCollFeaturesWebFeatures.SplitterDistance = 236;
            this.splitContainerRightSiteCollFeaturesWebFeatures.TabIndex = 19;
            // 
            // btnClearLog
            // 
            this.btnClearLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnClearLog.Location = new System.Drawing.Point(7, 646);
            this.btnClearLog.Name = "btnClearLog";
            this.btnClearLog.Size = new System.Drawing.Size(90, 23);
            this.btnClearLog.TabIndex = 18;
            this.btnClearLog.Text = "Clear Log";
            this.btnClearLog.UseVisualStyleBackColor = true;
            this.btnClearLog.Click += new System.EventHandler(this.btnClearLog_Click);
            // 
            // btnFindFaultyFeature
            // 
            this.btnFindFaultyFeature.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnFindFaultyFeature.Location = new System.Drawing.Point(7, 675);
            this.btnFindFaultyFeature.Name = "btnFindFaultyFeature";
            this.btnFindFaultyFeature.Size = new System.Drawing.Size(200, 23);
            this.btnFindFaultyFeature.TabIndex = 18;
            this.btnFindFaultyFeature.Text = "Find Faulty Feature in Farm";
            this.btnFindFaultyFeature.UseVisualStyleBackColor = true;
            this.btnFindFaultyFeature.Click += new System.EventHandler(this.btnFindFaultyFeature_Click);
            // 
            // splitContainerCompleteMainframe
            // 
            this.splitContainerCompleteMainframe.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.splitContainerCompleteMainframe.Location = new System.Drawing.Point(2, 2);
            this.splitContainerCompleteMainframe.Name = "splitContainerCompleteMainframe";
            // 
            // splitContainerCompleteMainframe.Panel1
            // 
            this.splitContainerCompleteMainframe.Panel1.Controls.Add(this.splitContainerLeftWindow);
            // 
            // splitContainerCompleteMainframe.Panel2
            // 
            this.splitContainerCompleteMainframe.Panel2.Controls.Add(this.btnClearLog);
            this.splitContainerCompleteMainframe.Panel2.Controls.Add(this.btnFindFaultyFeature);
            this.splitContainerCompleteMainframe.Panel2.Controls.Add(this.tabControl1);
            this.splitContainerCompleteMainframe.Size = new System.Drawing.Size(890, 728);
            this.splitContainerCompleteMainframe.SplitterDistance = 422;
            this.splitContainerCompleteMainframe.TabIndex = 19;
            // 
            // splitContainerLeftWindow
            // 
            this.splitContainerLeftWindow.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.splitContainerLeftWindow.Location = new System.Drawing.Point(0, 0);
            this.splitContainerLeftWindow.Name = "splitContainerLeftWindow";
            this.splitContainerLeftWindow.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerLeftWindow.Panel1
            // 
            this.splitContainerLeftWindow.Panel1.Controls.Add(this.splitContainerLeftUpperWebAppAndSiteColl);
            // 
            // splitContainerLeftWindow.Panel2
            // 
            this.splitContainerLeftWindow.Panel2.Controls.Add(this.splitContainerLeftDownWebsAndLogs);
            this.splitContainerLeftWindow.Size = new System.Drawing.Size(419, 725);
            this.splitContainerLeftWindow.SplitterDistance = 220;
            this.splitContainerLeftWindow.TabIndex = 13;
            // 
            // splitContainerLeftUpperWebAppAndSiteColl
            // 
            this.splitContainerLeftUpperWebAppAndSiteColl.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.splitContainerLeftUpperWebAppAndSiteColl.Location = new System.Drawing.Point(4, 3);
            this.splitContainerLeftUpperWebAppAndSiteColl.Name = "splitContainerLeftUpperWebAppAndSiteColl";
            this.splitContainerLeftUpperWebAppAndSiteColl.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerLeftUpperWebAppAndSiteColl.Panel1
            // 
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.Controls.Add(this.lblWebApps);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.Controls.Add(this.btnListWebApplications);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.Controls.Add(this.listWebApplications);
            // 
            // splitContainerLeftUpperWebAppAndSiteColl.Panel2
            // 
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel2.Controls.Add(this.lblSiteCollections);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel2.Controls.Add(this.listSiteCollections);
            this.splitContainerLeftUpperWebAppAndSiteColl.Size = new System.Drawing.Size(412, 214);
            this.splitContainerLeftUpperWebAppAndSiteColl.SplitterDistance = 105;
            this.splitContainerLeftUpperWebAppAndSiteColl.TabIndex = 0;
            // 
            // splitContainerLeftDownWebsAndLogs
            // 
            this.splitContainerLeftDownWebsAndLogs.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.splitContainerLeftDownWebsAndLogs.Location = new System.Drawing.Point(4, 4);
            this.splitContainerLeftDownWebsAndLogs.Name = "splitContainerLeftDownWebsAndLogs";
            this.splitContainerLeftDownWebsAndLogs.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainerLeftDownWebsAndLogs.Panel1
            // 
            this.splitContainerLeftDownWebsAndLogs.Panel1.Controls.Add(this.lblWebs);
            this.splitContainerLeftDownWebsAndLogs.Panel1.Controls.Add(this.listSites);
            // 
            // splitContainerLeftDownWebsAndLogs.Panel2
            // 
            this.splitContainerLeftDownWebsAndLogs.Panel2.Controls.Add(this.lblLog);
            this.splitContainerLeftDownWebsAndLogs.Panel2.Controls.Add(this.txtResult);
            this.splitContainerLeftDownWebsAndLogs.Size = new System.Drawing.Size(412, 494);
            this.splitContainerLeftDownWebsAndLogs.SplitterDistance = 146;
            this.splitContainerLeftDownWebsAndLogs.TabIndex = 0;
            // 
            // FrmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(892, 730);
            this.Controls.Add(this.splitContainerCompleteMainframe);
            this.Name = "FrmMain";
            this.Text = "FeatureAdmin for SharePoint 2010 - v2.3";
            this.Load += new System.EventHandler(this.FrmMain_Load);
            this.tabControl1.ResumeLayout(false);
            this.FarmFeatures.ResumeLayout(false);
            this.FarmFeatures.PerformLayout();
            this.RemoveFeatures.ResumeLayout(false);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel1.ResumeLayout(false);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel1.PerformLayout();
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel2.ResumeLayout(false);
            this.splitContainerRightSiteCollFeaturesWebFeatures.Panel2.PerformLayout();
            this.splitContainerRightSiteCollFeaturesWebFeatures.ResumeLayout(false);
            this.splitContainerCompleteMainframe.Panel1.ResumeLayout(false);
            this.splitContainerCompleteMainframe.Panel2.ResumeLayout(false);
            this.splitContainerCompleteMainframe.ResumeLayout(false);
            this.splitContainerLeftWindow.Panel1.ResumeLayout(false);
            this.splitContainerLeftWindow.Panel2.ResumeLayout(false);
            this.splitContainerLeftWindow.ResumeLayout(false);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.ResumeLayout(false);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel1.PerformLayout();
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel2.ResumeLayout(false);
            this.splitContainerLeftUpperWebAppAndSiteColl.Panel2.PerformLayout();
            this.splitContainerLeftUpperWebAppAndSiteColl.ResumeLayout(false);
            this.splitContainerLeftDownWebsAndLogs.Panel1.ResumeLayout(false);
            this.splitContainerLeftDownWebsAndLogs.Panel1.PerformLayout();
            this.splitContainerLeftDownWebsAndLogs.Panel2.ResumeLayout(false);
            this.splitContainerLeftDownWebsAndLogs.Panel2.PerformLayout();
            this.splitContainerLeftDownWebsAndLogs.ResumeLayout(false);
            this.ResumeLayout(false);

        }

19 Source : RemoveInvalidFeature.Designer.cs
with Microsoft Public License
from achimismaili

private void InitializeComponent()
        {
            this.radioScopeWeb = new System.Windows.Forms.RadioButton();
            this.radioScopeSite = new System.Windows.Forms.RadioButton();
            this.radioScopeWebApp = new System.Windows.Forms.RadioButton();
            this.radioScopeFarm = new System.Windows.Forms.RadioButton();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.grpFeatureScope = new System.Windows.Forms.GroupBox();
            this.btnScopeUnknown = new System.Windows.Forms.Button();
            this.btnScopeSelected = new System.Windows.Forms.Button();
            this.btnScopeCancel = new System.Windows.Forms.Button();
            this.grpFeatureScope.SuspendLayout();
            this.SuspendLayout();
            // 
            // radioScopeWeb
            // 
            this.radioScopeWeb.AutoSize = true;
            this.radioScopeWeb.Checked = true;
            this.radioScopeWeb.Location = new System.Drawing.Point(16, 21);
            this.radioScopeWeb.Name = "radioScopeWeb";
            this.radioScopeWeb.Size = new System.Drawing.Size(48, 17);
            this.radioScopeWeb.TabIndex = 0;
            this.radioScopeWeb.TabStop = true;
            this.radioScopeWeb.Text = "Web";
            this.radioScopeWeb.UseVisualStyleBackColor = true;
            // 
            // radioScopeSite
            // 
            this.radioScopeSite.AutoSize = true;
            this.radioScopeSite.Location = new System.Drawing.Point(16, 44);
            this.radioScopeSite.Name = "radioScopeSite";
            this.radioScopeSite.Size = new System.Drawing.Size(43, 17);
            this.radioScopeSite.TabIndex = 0;
            this.radioScopeSite.Text = "Site";
            this.radioScopeSite.UseVisualStyleBackColor = true;
            // 
            // radioScopeWebApp
            // 
            this.radioScopeWebApp.AutoSize = true;
            this.radioScopeWebApp.Location = new System.Drawing.Point(16, 67);
            this.radioScopeWebApp.Name = "radioScopeWebApp";
            this.radioScopeWebApp.Size = new System.Drawing.Size(100, 17);
            this.radioScopeWebApp.TabIndex = 0;
            this.radioScopeWebApp.Text = "WebApplication";
            this.radioScopeWebApp.UseVisualStyleBackColor = true;
            // 
            // radioScopeFarm
            // 
            this.radioScopeFarm.AutoSize = true;
            this.radioScopeFarm.Location = new System.Drawing.Point(16, 90);
            this.radioScopeFarm.Name = "radioScopeFarm";
            this.radioScopeFarm.Size = new System.Drawing.Size(48, 17);
            this.radioScopeFarm.TabIndex = 0;
            this.radioScopeFarm.Text = "Farm";
            this.radioScopeFarm.UseVisualStyleBackColor = true;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 13);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(147, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "Scope of the feature is invalid";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(13, 26);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(151, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Please select scope, if known.";
            // 
            // grpFeatureScope
            // 
            this.grpFeatureScope.Controls.Add(this.radioScopeSite);
            this.grpFeatureScope.Controls.Add(this.radioScopeWeb);
            this.grpFeatureScope.Controls.Add(this.radioScopeWebApp);
            this.grpFeatureScope.Controls.Add(this.radioScopeFarm);
            this.grpFeatureScope.Location = new System.Drawing.Point(16, 52);
            this.grpFeatureScope.Name = "grpFeatureScope";
            this.grpFeatureScope.Size = new System.Drawing.Size(133, 124);
            this.grpFeatureScope.TabIndex = 2;
            this.grpFeatureScope.TabStop = false;
            this.grpFeatureScope.Text = "Feature Scope";
            // 
            // btnScopeUnknown
            // 
            this.btnScopeUnknown.Location = new System.Drawing.Point(169, 56);
            this.btnScopeUnknown.Name = "btnScopeUnknown";
            this.btnScopeUnknown.Size = new System.Drawing.Size(191, 36);
            this.btnScopeUnknown.TabIndex = 3;
            this.btnScopeUnknown.Text = "Scope not known, please check all possibilities in whole farm";
            this.btnScopeUnknown.UseVisualStyleBackColor = true;
            this.btnScopeUnknown.Click += new System.EventHandler(this.btnScopeUnknown_Click);
            // 
            // btnScopeSelected
            // 
            this.btnScopeSelected.Location = new System.Drawing.Point(169, 98);
            this.btnScopeSelected.Name = "btnScopeSelected";
            this.btnScopeSelected.Size = new System.Drawing.Size(191, 36);
            this.btnScopeSelected.TabIndex = 3;
            this.btnScopeSelected.Text = "Please check the selected Scope in the whole farm";
            this.btnScopeSelected.UseVisualStyleBackColor = true;
            this.btnScopeSelected.Click += new System.EventHandler(this.btnScopeSelected_Click);
            // 
            // btnScopeCancel
            // 
            this.btnScopeCancel.Location = new System.Drawing.Point(169, 140);
            this.btnScopeCancel.Name = "btnScopeCancel";
            this.btnScopeCancel.Size = new System.Drawing.Size(191, 36);
            this.btnScopeCancel.TabIndex = 3;
            this.btnScopeCancel.Text = "Cancel";
            this.btnScopeCancel.UseVisualStyleBackColor = true;
            this.btnScopeCancel.Click += new System.EventHandler(this.btnScopeCancel_Click);
            // 
            // FeatureScope
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(374, 193);
            this.Controls.Add(this.btnScopeCancel);
            this.Controls.Add(this.btnScopeSelected);
            this.Controls.Add(this.btnScopeUnknown);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.grpFeatureScope);
            this.Name = "FeatureScope";
            this.Text = "FeatureScope";
            this.grpFeatureScope.ResumeLayout(false);
            this.grpFeatureScope.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

19 Source : LocationForm.Designer.cs
with Microsoft Public License
from achimismaili

private void InitializeComponent()
        {
            this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
            this.FeaturereplacedlePanel = new System.Windows.Forms.Panel();
            this.FeaturePanelCaption = new System.Windows.Forms.Label();
            this.LocationGrid = new System.Windows.Forms.DataGridView();
            this.LocationDetailsView = new System.Windows.Forms.ListView();
            this.DeactivateButton = new System.Windows.Forms.Button();
            this.MainSplitContainer.Panel1.SuspendLayout();
            this.MainSplitContainer.Panel2.SuspendLayout();
            this.MainSplitContainer.SuspendLayout();
            this.FeaturereplacedlePanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // MainSplitContainer
            // 
            this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
            this.MainSplitContainer.Name = "MainSplitContainer";
            this.MainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // MainSplitContainer.Panel1
            // 
            this.MainSplitContainer.Panel1.Controls.Add(this.FeaturereplacedlePanel);
            this.MainSplitContainer.Panel1.Controls.Add(this.LocationGrid);
            // 
            // MainSplitContainer.Panel2
            // 
            this.MainSplitContainer.Panel2.Controls.Add(this.LocationDetailsView);
            this.MainSplitContainer.Panel2.Controls.Add(this.DeactivateButton);
            this.MainSplitContainer.Size = new System.Drawing.Size(539, 503);
            this.MainSplitContainer.SplitterDistance = 321;
            this.MainSplitContainer.TabIndex = 0;
            // 
            // FeaturereplacedlePanel
            // 
            this.FeaturereplacedlePanel.Controls.Add(this.FeaturePanelCaption);
            this.FeaturereplacedlePanel.Location = new System.Drawing.Point(3, 3);
            this.FeaturereplacedlePanel.Name = "FeaturereplacedlePanel";
            this.FeaturereplacedlePanel.Size = new System.Drawing.Size(524, 30);
            this.FeaturereplacedlePanel.TabIndex = 0;
            // 
            // FeaturePanelCaption
            // 
            this.FeaturePanelCaption.AutoSize = true;
            this.FeaturePanelCaption.Location = new System.Drawing.Point(9, 6);
            this.FeaturePanelCaption.Name = "FeaturePanelCaption";
            this.FeaturePanelCaption.Size = new System.Drawing.Size(92, 13);
            this.FeaturePanelCaption.TabIndex = 0;
            this.FeaturePanelCaption.Text = "Feature Locations";
            // 
            // LocationGrid
            // 
            this.LocationGrid.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.LocationGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.LocationGrid.Location = new System.Drawing.Point(0, 39);
            this.LocationGrid.Name = "LocationGrid";
            this.LocationGrid.ReadOnly = true;
            this.LocationGrid.Size = new System.Drawing.Size(536, 279);
            this.LocationGrid.TabIndex = 0;
            // 
            // LocationDetailsView
            // 
            this.LocationDetailsView.Location = new System.Drawing.Point(4, 32);
            this.LocationDetailsView.Name = "LocationDetailsView";
            this.LocationDetailsView.Size = new System.Drawing.Size(532, 143);
            this.LocationDetailsView.TabIndex = 1;
            this.LocationDetailsView.UseCompatibleStateImageBehavior = false;
            this.LocationDetailsView.View = System.Windows.Forms.View.Details;
            // 
            // DeactivateButton
            // 
            this.DeactivateButton.Location = new System.Drawing.Point(184, 3);
            this.DeactivateButton.Name = "DeactivateButton";
            this.DeactivateButton.Size = new System.Drawing.Size(200, 23);
            this.DeactivateButton.TabIndex = 0;
            this.DeactivateButton.Text = "Deactivate Selected Activations";
            this.DeactivateButton.UseVisualStyleBackColor = true;
            // 
            // LocationForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(539, 503);
            this.Controls.Add(this.MainSplitContainer);
            this.Name = "LocationForm";
            this.Text = "LocationForm";
            this.MainSplitContainer.Panel1.ResumeLayout(false);
            this.MainSplitContainer.Panel2.ResumeLayout(false);
            this.MainSplitContainer.ResumeLayout(false);
            this.FeaturereplacedlePanel.ResumeLayout(false);
            this.FeaturereplacedlePanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : LocationForm.Designer.cs
with Microsoft Public License
from achimismaili

private void InitializeComponent()
        {
            this.MainSplitContainer = new System.Windows.Forms.SplitContainer();
            this.FeaturereplacedlePanel = new System.Windows.Forms.Panel();
            this.FeaturePanelCaption = new System.Windows.Forms.Label();
            this.LocationGrid = new System.Windows.Forms.DataGridView();
            this.LocationDetailsView = new System.Windows.Forms.ListView();
            this.DeactivateButton = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).BeginInit();
            this.MainSplitContainer.Panel1.SuspendLayout();
            this.MainSplitContainer.Panel2.SuspendLayout();
            this.MainSplitContainer.SuspendLayout();
            this.FeaturereplacedlePanel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).BeginInit();
            this.SuspendLayout();
            // 
            // MainSplitContainer
            // 
            this.MainSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.MainSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
            this.MainSplitContainer.Location = new System.Drawing.Point(0, 0);
            this.MainSplitContainer.Name = "MainSplitContainer";
            this.MainSplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // MainSplitContainer.Panel1
            // 
            this.MainSplitContainer.Panel1.Controls.Add(this.FeaturereplacedlePanel);
            this.MainSplitContainer.Panel1.Controls.Add(this.LocationGrid);
            // 
            // MainSplitContainer.Panel2
            // 
            this.MainSplitContainer.Panel2.Controls.Add(this.LocationDetailsView);
            this.MainSplitContainer.Panel2.Controls.Add(this.DeactivateButton);
            this.MainSplitContainer.Size = new System.Drawing.Size(539, 503);
            this.MainSplitContainer.SplitterDistance = 321;
            this.MainSplitContainer.TabIndex = 0;
            // 
            // FeaturereplacedlePanel
            // 
            this.FeaturereplacedlePanel.Controls.Add(this.FeaturePanelCaption);
            this.FeaturereplacedlePanel.Location = new System.Drawing.Point(3, 3);
            this.FeaturereplacedlePanel.Name = "FeaturereplacedlePanel";
            this.FeaturereplacedlePanel.Size = new System.Drawing.Size(524, 30);
            this.FeaturereplacedlePanel.TabIndex = 3;
            // 
            // FeaturePanelCaption
            // 
            this.FeaturePanelCaption.AutoSize = true;
            this.FeaturePanelCaption.Location = new System.Drawing.Point(9, 6);
            this.FeaturePanelCaption.Name = "FeaturePanelCaption";
            this.FeaturePanelCaption.Size = new System.Drawing.Size(92, 13);
            this.FeaturePanelCaption.TabIndex = 0;
            this.FeaturePanelCaption.Text = "Feature Locations";
            // 
            // LocationGrid
            // 
            this.LocationGrid.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.LocationGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.LocationGrid.Location = new System.Drawing.Point(0, 39);
            this.LocationGrid.Name = "LocationGrid";
            this.LocationGrid.ReadOnly = true;
            this.LocationGrid.Size = new System.Drawing.Size(536, 279);
            this.LocationGrid.TabIndex = 2;
            this.LocationGrid.SelectionChanged += new System.EventHandler(this.LocationGrid_SelectionChanged);
            // 
            // LocationDetailsView
            // 
            this.LocationDetailsView.Location = new System.Drawing.Point(4, 32);
            this.LocationDetailsView.Name = "LocationDetailsView";
            this.LocationDetailsView.Size = new System.Drawing.Size(532, 143);
            this.LocationDetailsView.TabIndex = 1;
            this.LocationDetailsView.UseCompatibleStateImageBehavior = false;
            this.LocationDetailsView.View = System.Windows.Forms.View.Details;
            // 
            // DeactivateButton
            // 
            this.DeactivateButton.Location = new System.Drawing.Point(184, 3);
            this.DeactivateButton.Name = "DeactivateButton";
            this.DeactivateButton.Size = new System.Drawing.Size(200, 23);
            this.DeactivateButton.TabIndex = 0;
            this.DeactivateButton.Text = "Deactivate Selected Activations";
            this.DeactivateButton.UseVisualStyleBackColor = true;
            this.DeactivateButton.Click += new System.EventHandler(this.DeactivateButton_Click);
            // 
            // LocationForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(539, 503);
            this.Controls.Add(this.MainSplitContainer);
            this.Name = "LocationForm";
            this.Text = "LocationForm";
            this.MainSplitContainer.Panel1.ResumeLayout(false);
            this.MainSplitContainer.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.MainSplitContainer)).EndInit();
            this.MainSplitContainer.ResumeLayout(false);
            this.FeaturereplacedlePanel.ResumeLayout(false);
            this.FeaturereplacedlePanel.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.LocationGrid)).EndInit();
            this.ResumeLayout(false);

        }

19 Source : MainForm.Designer.cs
with GNU General Public License v3.0
from AdamWhiteHat

private void InitializeComponent()
		{
			this.tbOutput = new System.Windows.Forms.TextBox();
			this.tbN = new System.Windows.Forms.TextBox();
			this.tbBase = new System.Windows.Forms.TextBox();
			this.tbBound = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.btnCreate = new System.Windows.Forms.Button();
			this.label4 = new System.Windows.Forms.Label();
			this.tbDegree = new System.Windows.Forms.TextBox();
			this.btnFindRelations = new System.Windows.Forms.Button();
			this.btnFindSquares = new System.Windows.Forms.Button();
			this.btnMatrix = new System.Windows.Forms.Button();
			this.panelButtons = new System.Windows.Forms.Panel();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.btnLoad = new System.Windows.Forms.Button();
			this.btnSave = new System.Windows.Forms.Button();
			this.panelFunctions = new System.Windows.Forms.Panel();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.btnPrintRelations = new System.Windows.Forms.Button();
			this.btnPurgeRough = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.panelCancel = new System.Windows.Forms.Panel();
			this.btnCancel = new System.Windows.Forms.Button();
			this.label5 = new System.Windows.Forms.Label();
			this.tbRelationQuanreplacedy = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.tbRelationValueRange = new System.Windows.Forms.TextBox();
			this.btnIncreaseSmoothnessBound = new System.Windows.Forms.Button();
			this.linkGitHubProject = new System.Windows.Forms.LinkLabel();
			this.label7 = new System.Windows.Forms.Label();
			this.panelButtons.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.panelFunctions.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			this.panelCancel.SuspendLayout();
			this.SuspendLayout();
			// 
			// tbOutput
			// 
			this.tbOutput.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.tbOutput.Location = new System.Drawing.Point(4, 220);
			this.tbOutput.Multiline = true;
			this.tbOutput.Name = "tbOutput";
			this.tbOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
			this.tbOutput.Size = new System.Drawing.Size(718, 251);
			this.tbOutput.TabIndex = 6;
			this.tbOutput.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbOutput_KeyDown);
			// 
			// tbN
			// 
			this.tbN.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbN.Location = new System.Drawing.Point(20, 4);
			this.tbN.Name = "tbN";
			this.tbN.Size = new System.Drawing.Size(699, 20);
			this.tbN.TabIndex = 0;			
			// 
			// tbBase
			// 
			this.tbBase.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbBase.Location = new System.Drawing.Point(117, 55);
			this.tbBase.Name = "tbBase";
			this.tbBase.Size = new System.Drawing.Size(260, 20);
			this.tbBase.TabIndex = 2;
			// 
			// tbBound
			// 
			this.tbBound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbBound.Location = new System.Drawing.Point(117, 29);
			this.tbBound.Name = "tbBound";
			this.tbBound.Size = new System.Drawing.Size(185, 20);
			this.tbBound.TabIndex = 1;
			this.tbBound.Text = "61";
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point(4, 8);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(15, 13);
			this.label1.TabIndex = 4;
			this.label1.Text = "N";
			this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point(33, 59);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(83, 13);
			this.label2.TabIndex = 5;
			this.label2.Text = "Polynomial base";
			this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point(17, 33);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(99, 13);
			this.label3.TabIndex = 6;
			this.label3.Text = "Smoothness Bound";
			this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// btnCreate
			// 
			this.btnCreate.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.btnCreate.Location = new System.Drawing.Point(111, 15);
			this.btnCreate.Name = "btnCreate";
			this.btnCreate.Size = new System.Drawing.Size(96, 23);
			this.btnCreate.TabIndex = 0;
			this.btnCreate.Text = "Create";
			this.btnCreate.UseVisualStyleBackColor = true;
			this.btnCreate.Click += new System.EventHandler(this.btnCreate_Click);
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point(21, 79);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(93, 13);
			this.label4.TabIndex = 9;
			this.label4.Text = "Polynomial degree";
			this.label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// tbDegree
			// 
			this.tbDegree.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbDegree.Location = new System.Drawing.Point(117, 75);
			this.tbDegree.Name = "tbDegree";
			this.tbDegree.Size = new System.Drawing.Size(21, 20);
			this.tbDegree.TabIndex = 3;
			// 
			// btnFindRelations
			// 
			this.btnFindRelations.Location = new System.Drawing.Point(16, 15);
			this.btnFindRelations.Name = "btnFindRelations";
			this.btnFindRelations.Size = new System.Drawing.Size(83, 23);
			this.btnFindRelations.TabIndex = 0;
			this.btnFindRelations.Text = "Find Relations";
			this.btnFindRelations.UseVisualStyleBackColor = true;
			this.btnFindRelations.Click += new System.EventHandler(this.btnFindRelations_Click);
			// 
			// btnFindSquares
			// 
			this.btnFindSquares.Location = new System.Drawing.Point(16, 16);
			this.btnFindSquares.Name = "btnFindSquares";
			this.btnFindSquares.Size = new System.Drawing.Size(136, 23);
			this.btnFindSquares.TabIndex = 0;
			this.btnFindSquares.Text = "Find Square Root Direct";
			this.btnFindSquares.UseVisualStyleBackColor = true;
			this.btnFindSquares.Click += new System.EventHandler(this.btnFindSquares_Click);
			// 
			// btnMatrix
			// 
			this.btnMatrix.Location = new System.Drawing.Point(16, 16);
			this.btnMatrix.Name = "btnMatrix";
			this.btnMatrix.Size = new System.Drawing.Size(96, 23);
			this.btnMatrix.TabIndex = 0;
			this.btnMatrix.Text = "Matrix Solve";
			this.btnMatrix.UseVisualStyleBackColor = true;
			this.btnMatrix.Click += new System.EventHandler(this.btnMatrix_Click);
			// 
			// panelButtons
			// 
			this.panelButtons.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.panelButtons.Controls.Add(this.groupBox4);
			this.panelButtons.Controls.Add(this.panelFunctions);
			this.panelButtons.Location = new System.Drawing.Point(381, 26);
			this.panelButtons.Name = "panelButtons";
			this.panelButtons.Size = new System.Drawing.Size(338, 192);
			this.panelButtons.TabIndex = 14;
			// 
			// groupBox4
			// 
			this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.groupBox4.Controls.Add(this.btnLoad);
			this.groupBox4.Controls.Add(this.btnSave);
			this.groupBox4.Controls.Add(this.btnCreate);
			this.groupBox4.Location = new System.Drawing.Point(11, 6);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(316, 40);
			this.groupBox4.TabIndex = 20;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "1) Create Polynomial, Factor Bases && Roots";
			// 
			// btnLoad
			// 
			this.btnLoad.Location = new System.Drawing.Point(6, 15);
			this.btnLoad.Name = "btnLoad";
			this.btnLoad.Size = new System.Drawing.Size(96, 23);
			this.btnLoad.TabIndex = 2;
			this.btnLoad.Text = "Load";
			this.btnLoad.UseVisualStyleBackColor = true;
			this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
			// 
			// btnSave
			// 
			this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.btnSave.Location = new System.Drawing.Point(216, 15);
			this.btnSave.Name = "btnSave";
			this.btnSave.Size = new System.Drawing.Size(96, 23);
			this.btnSave.TabIndex = 1;
			this.btnSave.Text = "Save";
			this.btnSave.UseVisualStyleBackColor = true;
			this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
			// 
			// panelFunctions
			// 
			this.panelFunctions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.panelFunctions.Controls.Add(this.groupBox3);
			this.panelFunctions.Controls.Add(this.groupBox2);
			this.panelFunctions.Controls.Add(this.groupBox1);
			this.panelFunctions.Enabled = false;
			this.panelFunctions.Location = new System.Drawing.Point(8, 49);
			this.panelFunctions.Name = "panelFunctions";
			this.panelFunctions.Size = new System.Drawing.Size(324, 140);
			this.panelFunctions.TabIndex = 16;
			// 
			// 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.btnPrintRelations);
			this.groupBox3.Controls.Add(this.btnPurgeRough);
			this.groupBox3.Controls.Add(this.btnFindRelations);
			this.groupBox3.Location = new System.Drawing.Point(3, 3);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(316, 40);
			this.groupBox3.TabIndex = 20;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "2) Sieve Relations";
			// 
			// btnPrintRelations
			// 
			this.btnPrintRelations.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
			this.btnPrintRelations.Location = new System.Drawing.Point(177, 15);
			this.btnPrintRelations.Name = "btnPrintRelations";
			this.btnPrintRelations.Size = new System.Drawing.Size(91, 23);
			this.btnPrintRelations.TabIndex = 1;
			this.btnPrintRelations.Text = "Print Relations";
			this.btnPrintRelations.UseVisualStyleBackColor = true;
			this.btnPrintRelations.Click += new System.EventHandler(this.btnPrintRelations_Click);
			// 
			// btnPurgeRough
			// 
			this.btnPurgeRough.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnPurgeRough.Location = new System.Drawing.Point(268, 15);
			this.btnPurgeRough.Name = "btnPurgeRough";
			this.btnPurgeRough.Size = new System.Drawing.Size(45, 23);
			this.btnPurgeRough.TabIndex = 2;
			this.btnPurgeRough.Text = "Purge";
			this.btnPurgeRough.UseVisualStyleBackColor = true;
			this.btnPurgeRough.Click += new System.EventHandler(this.btnPurgeRough_Click);
			// 
			// groupBox2
			// 
			this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.groupBox2.Controls.Add(this.btnMatrix);
			this.groupBox2.Location = new System.Drawing.Point(3, 47);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(316, 40);
			this.groupBox2.TabIndex = 19;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "3) Matrix";
			// 
			// 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.btnFindSquares);
			this.groupBox1.Location = new System.Drawing.Point(3, 91);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(316, 44);
			this.groupBox1.TabIndex = 18;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "4) Square Root Solve";
			// 
			// panelCancel
			// 
			this.panelCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.panelCancel.Controls.Add(this.btnCancel);
			this.panelCancel.Location = new System.Drawing.Point(338, 144);
			this.panelCancel.Name = "panelCancel";
			this.panelCancel.Size = new System.Drawing.Size(289, 56);
			this.panelCancel.TabIndex = 15;
			// 
			// btnCancel
			// 
			this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnCancel.Location = new System.Drawing.Point(178, 3);
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size(108, 32);
			this.btnCancel.TabIndex = 14;
			this.btnCancel.Text = "Cancel";
			this.btnCancel.UseVisualStyleBackColor = true;
			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point(24, 104);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(89, 13);
			this.label5.TabIndex = 17;
			this.label5.Text = "Relation quanreplacedy:";
			this.label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// tbRelationQuanreplacedy
			// 
			this.tbRelationQuanreplacedy.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbRelationQuanreplacedy.Location = new System.Drawing.Point(117, 101);
			this.tbRelationQuanreplacedy.Name = "tbRelationQuanreplacedy";
			this.tbRelationQuanreplacedy.Size = new System.Drawing.Size(260, 20);
			this.tbRelationQuanreplacedy.TabIndex = 4;
			this.tbRelationQuanreplacedy.Text = "70";
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point(5, 125);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(108, 13);
			this.label6.TabIndex = 19;
			this.label6.Text = "Relation value range:";
			this.label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// tbRelationValueRange
			// 
			this.tbRelationValueRange.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
			this.tbRelationValueRange.Location = new System.Drawing.Point(117, 121);
			this.tbRelationValueRange.Name = "tbRelationValueRange";
			this.tbRelationValueRange.Size = new System.Drawing.Size(260, 20);
			this.tbRelationValueRange.TabIndex = 5;
			this.tbRelationValueRange.Text = "200";
			// 
			// btnIncreaseSmoothnessBound
			// 
			this.btnIncreaseSmoothnessBound.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.btnIncreaseSmoothnessBound.Location = new System.Drawing.Point(304, 28);
			this.btnIncreaseSmoothnessBound.Name = "btnIncreaseSmoothnessBound";
			this.btnIncreaseSmoothnessBound.Size = new System.Drawing.Size(75, 23);
			this.btnIncreaseSmoothnessBound.TabIndex = 20;
			this.btnIncreaseSmoothnessBound.Text = "Increase";
			this.btnIncreaseSmoothnessBound.UseVisualStyleBackColor = true;
			this.btnIncreaseSmoothnessBound.Click += new System.EventHandler(this.btnIncreaseSmoothnessBound_Click);
			// 
			// linkGitHubProject
			// 
			this.linkGitHubProject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.linkGitHubProject.AutoSize = true;
			this.linkGitHubProject.Location = new System.Drawing.Point(513, 473);
			this.linkGitHubProject.Name = "linkGitHubProject";
			this.linkGitHubProject.Size = new System.Drawing.Size(206, 13);
			this.linkGitHubProject.TabIndex = 21;
			this.linkGitHubProject.TabStop = true;
			this.linkGitHubProject.Text = "https://github.com/AdamWhiteHat/GNFS";
			this.linkGitHubProject.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkGitHubProject_LinkClicked);
			// 
			// label7
			// 
			this.label7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
			this.label7.AutoSize = true;
			this.label7.Location = new System.Drawing.Point(407, 474);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(103, 13);
			this.label7.TabIndex = 22;
			this.label7.Text = "It\'s open source!  -->";
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(725, 489);
			this.Controls.Add(this.label7);
			this.Controls.Add(this.linkGitHubProject);
			this.Controls.Add(this.btnIncreaseSmoothnessBound);
			this.Controls.Add(this.label6);
			this.Controls.Add(this.tbRelationValueRange);
			this.Controls.Add(this.label5);
			this.Controls.Add(this.tbRelationQuanreplacedy);
			this.Controls.Add(this.panelButtons);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.tbDegree);
			this.Controls.Add(this.label3);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.tbBound);
			this.Controls.Add(this.tbBase);
			this.Controls.Add(this.tbN);
			this.Controls.Add(this.tbOutput);
			this.Controls.Add(this.panelCancel);
			this.MinimumSize = new System.Drawing.Size(500, 300);
			this.Name = "MainForm";
			this.Text = "A C# Implementation of the General Number Field Sieve";
			this.Shown += new System.EventHandler(this.MainForm_Shown);
			this.panelButtons.ResumeLayout(false);
			this.groupBox4.ResumeLayout(false);
			this.panelFunctions.ResumeLayout(false);
			this.groupBox3.ResumeLayout(false);
			this.groupBox2.ResumeLayout(false);
			this.groupBox1.ResumeLayout(false);
			this.panelCancel.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}

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 : Loader.Designer.cs
with Apache License 2.0
from aequabit

private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Loader));
            this.lstCheatList = new System.Windows.Forms.ListBox();
            this.picLogo = new System.Windows.Forms.PictureBox();
            this.grpCheatInfo = new System.Windows.Forms.GroupBox();
            this.lblInfo = new System.Windows.Forms.Label();
            this.grpCheatList = new System.Windows.Forms.GroupBox();
            this.btnLoad = new System.Windows.Forms.Button();
            this.grpUserInfo = new System.Windows.Forms.GroupBox();
            this.lblUser = new System.Windows.Forms.Label();
            this.tmrLoad = new System.Windows.Forms.Timer(this.components);
            this.lblRank = new System.Windows.Forms.Label();
            this.prgLoad = new tcp_moe_client.Clreplacedes.CProgressBar();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
            this.grpCheatInfo.SuspendLayout();
            this.grpCheatList.SuspendLayout();
            this.grpUserInfo.SuspendLayout();
            this.SuspendLayout();
            // 
            // lstCheatList
            // 
            this.lstCheatList.FormattingEnabled = true;
            this.lstCheatList.ItemHeight = 20;
            this.lstCheatList.Location = new System.Drawing.Point(11, 26);
            this.lstCheatList.Name = "lstCheatList";
            this.lstCheatList.Size = new System.Drawing.Size(252, 144);
            this.lstCheatList.TabIndex = 0;
            this.lstCheatList.SelectedIndexChanged += new System.EventHandler(this.lstCheatList_SelectedIndexChanged);
            // 
            // picLogo
            // 
            this.picLogo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picLogo.BackgroundImage")));
            this.picLogo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.picLogo.Location = new System.Drawing.Point(12, 14);
            this.picLogo.Name = "picLogo";
            this.picLogo.Size = new System.Drawing.Size(275, 89);
            this.picLogo.TabIndex = 3;
            this.picLogo.TabStop = false;
            // 
            // grpCheatInfo
            // 
            this.grpCheatInfo.Controls.Add(this.lblInfo);
            this.grpCheatInfo.Location = new System.Drawing.Point(293, 109);
            this.grpCheatInfo.Name = "grpCheatInfo";
            this.grpCheatInfo.Size = new System.Drawing.Size(294, 219);
            this.grpCheatInfo.TabIndex = 5;
            this.grpCheatInfo.TabStop = false;
            this.grpCheatInfo.Text = "Cheat Information";
            // 
            // lblInfo
            // 
            this.lblInfo.Location = new System.Drawing.Point(11, 25);
            this.lblInfo.Name = "lblInfo";
            this.lblInfo.Size = new System.Drawing.Size(273, 184);
            this.lblInfo.TabIndex = 0;
            this.lblInfo.Text = "-";
            // 
            // grpCheatList
            // 
            this.grpCheatList.Controls.Add(this.prgLoad);
            this.grpCheatList.Controls.Add(this.btnLoad);
            this.grpCheatList.Controls.Add(this.lstCheatList);
            this.grpCheatList.Location = new System.Drawing.Point(12, 109);
            this.grpCheatList.Name = "grpCheatList";
            this.grpCheatList.Size = new System.Drawing.Size(275, 219);
            this.grpCheatList.TabIndex = 6;
            this.grpCheatList.TabStop = false;
            this.grpCheatList.Text = "Select Cheat";
            // 
            // btnLoad
            // 
            this.btnLoad.Enabled = false;
            this.btnLoad.Location = new System.Drawing.Point(11, 176);
            this.btnLoad.Name = "btnLoad";
            this.btnLoad.Size = new System.Drawing.Size(84, 33);
            this.btnLoad.TabIndex = 7;
            this.btnLoad.Text = "Load";
            this.btnLoad.UseVisualStyleBackColor = true;
            this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
            // 
            // grpUserInfo
            // 
            this.grpUserInfo.Controls.Add(this.lblRank);
            this.grpUserInfo.Controls.Add(this.lblUser);
            this.grpUserInfo.Location = new System.Drawing.Point(293, 14);
            this.grpUserInfo.Name = "grpUserInfo";
            this.grpUserInfo.Size = new System.Drawing.Size(294, 84);
            this.grpUserInfo.TabIndex = 6;
            this.grpUserInfo.TabStop = false;
            this.grpUserInfo.Text = "User Information";
            // 
            // lblUser
            // 
            this.lblUser.AutoSize = true;
            this.lblUser.Location = new System.Drawing.Point(11, 25);
            this.lblUser.Name = "lblUser";
            this.lblUser.Size = new System.Drawing.Size(150, 20);
            this.lblUser.TabIndex = 0;
            this.lblUser.Text = "User: {{ USERNAME }}";
            // 
            // tmrLoad
            // 
            this.tmrLoad.Tick += new System.EventHandler(this.tmrLoad_Tick);
            // 
            // lblRank
            // 
            this.lblRank.AutoSize = true;
            this.lblRank.Location = new System.Drawing.Point(11, 50);
            this.lblRank.Name = "lblRank";
            this.lblRank.Size = new System.Drawing.Size(115, 20);
            this.lblRank.TabIndex = 1;
            this.lblRank.Text = "Rank: {{ RANK }}";
            // 
            // prgLoad
            // 
            this.prgLoad.Location = new System.Drawing.Point(102, 177);
            this.prgLoad.Name = "prgLoad";
            this.prgLoad.Size = new System.Drawing.Size(161, 32);
            this.prgLoad.TabIndex = 8;
            // 
            // Loader
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(599, 338);
            this.Controls.Add(this.grpUserInfo);
            this.Controls.Add(this.grpCheatList);
            this.Controls.Add(this.grpCheatInfo);
            this.Controls.Add(this.picLogo);
            this.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Loader";
            this.ShowIcon = false;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Loader_FormClosing);
            this.Load += new System.EventHandler(this.frmLoader_Load);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.frmLoader_Paint);
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
            this.grpCheatInfo.ResumeLayout(false);
            this.grpCheatList.ResumeLayout(false);
            this.grpUserInfo.ResumeLayout(false);
            this.grpUserInfo.PerformLayout();
            this.ResumeLayout(false);

        }

19 Source : Authentication.Designer.cs
with Apache License 2.0
from aequabit

private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Authentication));
            this.lblUsername = new System.Windows.Forms.Label();
            this.grpLogin = new System.Windows.Forms.GroupBox();
            this.chkRemember = new System.Windows.Forms.CheckBox();
            this.btnLogin = new System.Windows.Forms.Button();
            this.txtPreplacedword = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.txtUsername = new System.Windows.Forms.TextBox();
            this.picLogo = new System.Windows.Forms.PictureBox();
            this.grpLogin.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).BeginInit();
            this.SuspendLayout();
            // 
            // lblUsername
            // 
            this.lblUsername.AutoSize = true;
            this.lblUsername.Location = new System.Drawing.Point(79, 29);
            this.lblUsername.Name = "lblUsername";
            this.lblUsername.Size = new System.Drawing.Size(75, 20);
            this.lblUsername.TabIndex = 1;
            this.lblUsername.Text = "Username";
            // 
            // grpLogin
            // 
            this.grpLogin.Controls.Add(this.chkRemember);
            this.grpLogin.Controls.Add(this.btnLogin);
            this.grpLogin.Controls.Add(this.txtPreplacedword);
            this.grpLogin.Controls.Add(this.label1);
            this.grpLogin.Controls.Add(this.txtUsername);
            this.grpLogin.Controls.Add(this.lblUsername);
            this.grpLogin.Location = new System.Drawing.Point(13, 105);
            this.grpLogin.Name = "grpLogin";
            this.grpLogin.Size = new System.Drawing.Size(383, 186);
            this.grpLogin.TabIndex = 0;
            this.grpLogin.TabStop = false;
            this.grpLogin.Text = "Login with your tcp-moe account";
            // 
            // chkRemember
            // 
            this.chkRemember.AutoSize = true;
            this.chkRemember.Location = new System.Drawing.Point(93, 144);
            this.chkRemember.Name = "chkRemember";
            this.chkRemember.Size = new System.Drawing.Size(126, 24);
            this.chkRemember.TabIndex = 5;
            this.chkRemember.Text = "Remember me";
            this.chkRemember.UseVisualStyleBackColor = true;
            // 
            // btnLogin
            // 
            this.btnLogin.Enabled = false;
            this.btnLogin.Location = new System.Drawing.Point(225, 139);
            this.btnLogin.Name = "btnLogin";
            this.btnLogin.Size = new System.Drawing.Size(81, 32);
            this.btnLogin.TabIndex = 6;
            this.btnLogin.Text = "Login";
            this.btnLogin.UseVisualStyleBackColor = true;
            this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
            // 
            // txtPreplacedword
            // 
            this.txtPreplacedword.Location = new System.Drawing.Point(83, 106);
            this.txtPreplacedword.Name = "txtPreplacedword";
            this.txtPreplacedword.Size = new System.Drawing.Size(223, 27);
            this.txtPreplacedword.TabIndex = 4;
            this.txtPreplacedword.UseSystemPreplacedwordChar = true;
            this.txtPreplacedword.TextChanged += new System.EventHandler(this.Credentials_TextChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(79, 82);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(71, 20);
            this.label1.TabIndex = 3;
            this.label1.Text = "Preplacedword";
            // 
            // txtUsername
            // 
            this.txtUsername.Location = new System.Drawing.Point(83, 52);
            this.txtUsername.Name = "txtUsername";
            this.txtUsername.Size = new System.Drawing.Size(223, 27);
            this.txtUsername.TabIndex = 2;
            this.txtUsername.TextChanged += new System.EventHandler(this.Credentials_TextChanged);
            // 
            // picLogo
            // 
            this.picLogo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("picLogo.BackgroundImage")));
            this.picLogo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
            this.picLogo.Location = new System.Drawing.Point(12, 15);
            this.picLogo.Name = "picLogo";
            this.picLogo.Size = new System.Drawing.Size(384, 92);
            this.picLogo.TabIndex = 2;
            this.picLogo.TabStop = false;
            // 
            // Authentication
            // 
            this.AcceptButton = this.btnLogin;
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(408, 298);
            this.Controls.Add(this.picLogo);
            this.Controls.Add(this.grpLogin);
            this.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "Authentication";
            this.ShowIcon = false;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Authentication_FormClosing);
            this.Load += new System.EventHandler(this.Authentication_Load);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.frmAuthentication_Paint);
            this.grpLogin.ResumeLayout(false);
            this.grpLogin.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picLogo)).EndInit();
            this.ResumeLayout(false);

        }

See More Examples