BTool.FormMain.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.msMainMenu = new System.Windows.Forms.MenuStrip();
            this.tsmiDevice = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiNewDevice = new System.Windows.Forms.ToolStripMenuItem();
            this.tsmiCloseItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
            this.tsmiAbout = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
            this.scLeftRight = new System.Windows.Forms.SplitContainer();
            this.plComPortTree = new System.Windows.Forms.Panel();
            this.plDevice = new System.Windows.Forms.Panel();
            this.msMainMenu.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.scLeftRight)).BeginInit();
            this.scLeftRight.Panel1.SuspendLayout();
            this.scLeftRight.Panel2.SuspendLayout();
            this.scLeftRight.SuspendLayout();
            this.SuspendLayout();
            //
            // msMainMenu
            //
            this.msMainMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiDevice});
            this.msMainMenu.Location = new System.Drawing.Point(0, 0);
            this.msMainMenu.Name = "msMainMenu";
            this.msMainMenu.Size = new System.Drawing.Size(1136, 25);
            this.msMainMenu.TabIndex = 0;
            this.msMainMenu.Text = "menuStrip1";
            //
            // tsmiDevice
            //
            this.tsmiDevice.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.tsmiNewDevice,
            this.tsmiCloseItem,
            this.toolStripMenuItem2,
            this.tsmiAbout,
            this.toolStripSeparator1,
            this.tsmiExit});
            this.tsmiDevice.MergeAction = System.Windows.Forms.MergeAction.Replace;
            this.tsmiDevice.Name = "tsmiDevice";
            this.tsmiDevice.Size = new System.Drawing.Size(58, 21);
            this.tsmiDevice.Text = "&Device";
            //
            // tsmiNewDevice
            //
            this.tsmiNewDevice.Name = "tsmiNewDevice";
            this.tsmiNewDevice.Size = new System.Drawing.Size(150, 22);
            this.tsmiNewDevice.Text = "&New Device";
            this.tsmiNewDevice.Click += new System.EventHandler(this.tsmiNewDevice_Click);
            //
            // tsmiCloseItem
            //
            this.tsmiCloseItem.Name = "tsmiCloseItem";
            this.tsmiCloseItem.Size = new System.Drawing.Size(150, 22);
            this.tsmiCloseItem.Text = "&Close Device";
            this.tsmiCloseItem.Click += new System.EventHandler(this.tsmiCloseDevice_Click);
            //
            // toolStripMenuItem2
            //
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(147, 6);
            //
            // tsmiAbout
            //
            this.tsmiAbout.Name = "tsmiAbout";
            this.tsmiAbout.Size = new System.Drawing.Size(150, 22);
            this.tsmiAbout.Text = "&About";
            this.tsmiAbout.Click += new System.EventHandler(this.tsmiAbout_Click);
            //
            // toolStripSeparator1
            //
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(147, 6);
            //
            // tsmiExit
            //
            this.tsmiExit.Name = "tsmiExit";
            this.tsmiExit.Size = new System.Drawing.Size(150, 22);
            this.tsmiExit.Text = "&Exit";
            this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
            //
            // scLeftRight
            //
            this.scLeftRight.BackColor = System.Drawing.SystemColors.Control;
            this.scLeftRight.Dock = System.Windows.Forms.DockStyle.Fill;
            this.scLeftRight.Location = new System.Drawing.Point(0, 25);
            this.scLeftRight.Name = "scLeftRight";
            //
            // scLeftRight.Panel1
            //
            this.scLeftRight.Panel1.AutoScroll = true;
            this.scLeftRight.Panel1.Controls.Add(this.plComPortTree);
            //
            // scLeftRight.Panel2
            //
            this.scLeftRight.Panel2.AutoScroll = true;
            this.scLeftRight.Panel2.Controls.Add(this.plDevice);
            this.scLeftRight.Size = new System.Drawing.Size(1136, 794);
            this.scLeftRight.SplitterDistance = 219;
            this.scLeftRight.TabIndex = 7;
            //
            // plComPortTree
            //
            this.plComPortTree.BackColor = System.Drawing.SystemColors.Window;
            this.plComPortTree.Dock = System.Windows.Forms.DockStyle.Fill;
            this.plComPortTree.Location = new System.Drawing.Point(0, 0);
            this.plComPortTree.Name = "plComPortTree";
            this.plComPortTree.Size = new System.Drawing.Size(219, 794);
            this.plComPortTree.TabIndex = 0;
            //
            // plDevice
            //
            this.plDevice.BackColor = System.Drawing.SystemColors.AppWorkspace;
            this.plDevice.Dock = System.Windows.Forms.DockStyle.Fill;
            this.plDevice.Location = new System.Drawing.Point(0, 0);
            this.plDevice.Name = "plDevice";
            this.plDevice.Size = new System.Drawing.Size(913, 794);
            this.plDevice.TabIndex = 0;
            //
            // FormMain
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1136, 819);
            this.Controls.Add(this.scLeftRight);
            this.Controls.Add(this.msMainMenu);
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.IsMdiContainer = true;
            this.MainMenuStrip = this.msMainMenu;
            this.Name = "FormMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormMain_FormClosing);
            this.Load += new System.EventHandler(this.FormMain_Load);
            this.msMainMenu.ResumeLayout(false);
            this.msMainMenu.PerformLayout();
            this.scLeftRight.Panel1.ResumeLayout(false);
            this.scLeftRight.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.scLeftRight)).EndInit();
            this.scLeftRight.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }