PKHeX.SAV_BoxLayout.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SAV_BoxLayout));
            this.LB_BoxSelect = new System.Windows.Forms.ListBox();
            this.TB_BoxName = new System.Windows.Forms.TextBox();
            this.L_BoxName = new System.Windows.Forms.Label();
            this.L_BG = new System.Windows.Forms.Label();
            this.L_Flags = new System.Windows.Forms.Label();
            this.MT_BG1 = new System.Windows.Forms.MaskedTextBox();
            this.MT_BG2 = new System.Windows.Forms.MaskedTextBox();
            this.B_Save = new System.Windows.Forms.Button();
            this.B_Cancel = new System.Windows.Forms.Button();
            this.L_Unlocked = new System.Windows.Forms.Label();
            this.CB_Unlocked = new System.Windows.Forms.ComboBox();
            this.CB_BG = new System.Windows.Forms.ComboBox();
            this.PAN_BG = new System.Windows.Forms.Panel();
            this.SuspendLayout();
            // 
            // LB_BoxSelect
            // 
            this.LB_BoxSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
            this.LB_BoxSelect.FormattingEnabled = true;
            this.LB_BoxSelect.Items.AddRange(new object[] {
            "Box 1",
            "Box 2",
            "Box 3",
            "Box 4",
            "Box 5",
            "Box 6",
            "Box 7",
            "Box 8",
            "Box 9",
            "Box 10",
            "Box 11",
            "Box 12",
            "Box 13",
            "Box 14",
            "Box 15",
            "Box 16",
            "Box 17",
            "Box 18",
            "Box 19",
            "Box 20",
            "Box 21",
            "Box 22",
            "Box 23",
            "Box 24",
            "Box 25",
            "Box 26",
            "Box 27",
            "Box 28",
            "Box 29",
            "Box 30",
            "Box 31"});
            this.LB_BoxSelect.Location = new System.Drawing.Point(12, 14);
            this.LB_BoxSelect.Name = "LB_BoxSelect";
            this.LB_BoxSelect.Size = new System.Drawing.Size(78, 264);
            this.LB_BoxSelect.TabIndex = 0;
            this.LB_BoxSelect.SelectedIndexChanged += new System.EventHandler(this.changeBox);
            // 
            // TB_BoxName
            // 
            this.TB_BoxName.Location = new System.Drawing.Point(106, 35);
            this.TB_BoxName.MaxLength = 15;
            this.TB_BoxName.Name = "TB_BoxName";
            this.TB_BoxName.Size = new System.Drawing.Size(130, 20);
            this.TB_BoxName.TabIndex = 1;
            this.TB_BoxName.WordWrap = false;
            this.TB_BoxName.TextChanged += new System.EventHandler(this.changeBoxDetails);
            // 
            // L_BoxName
            // 
            this.L_BoxName.AutoSize = true;
            this.L_BoxName.Location = new System.Drawing.Point(104, 19);
            this.L_BoxName.Name = "L_BoxName";
            this.L_BoxName.Size = new System.Drawing.Size(59, 13);
            this.L_BoxName.TabIndex = 2;
            this.L_BoxName.Text = "Box Name:";
            // 
            // L_BG
            // 
            this.L_BG.AutoSize = true;
            this.L_BG.Location = new System.Drawing.Point(104, 64);
            this.L_BG.Name = "L_BG";
            this.L_BG.Size = new System.Drawing.Size(25, 13);
            this.L_BG.TabIndex = 4;
            this.L_BG.Text = "BG:";
            // 
            // L_Flags
            // 
            this.L_Flags.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.L_Flags.AutoSize = true;
            this.L_Flags.Location = new System.Drawing.Point(122, 186);
            this.L_Flags.Name = "L_Flags";
            this.L_Flags.Size = new System.Drawing.Size(102, 13);
            this.L_Flags.TabIndex = 5;
            this.L_Flags.Text = "Unlocked BG Flags:";
            // 
            // MT_BG1
            // 
            this.MT_BG1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.MT_BG1.Location = new System.Drawing.Point(136, 202);
            this.MT_BG1.Mask = "00";
            this.MT_BG1.Name = "MT_BG1";
            this.MT_BG1.Size = new System.Drawing.Size(29, 20);
            this.MT_BG1.TabIndex = 6;
            this.MT_BG1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.MT_BG1.TextChanged += new System.EventHandler(this.changeBoxDetails);
            // 
            // MT_BG2
            // 
            this.MT_BG2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.MT_BG2.Location = new System.Drawing.Point(176, 202);
            this.MT_BG2.Mask = "00";
            this.MT_BG2.Name = "MT_BG2";
            this.MT_BG2.Size = new System.Drawing.Size(29, 20);
            this.MT_BG2.TabIndex = 7;
            this.MT_BG2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.MT_BG2.TextChanged += new System.EventHandler(this.changeBoxDetails);
            // 
            // B_Save
            // 
            this.B_Save.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.B_Save.Location = new System.Drawing.Point(169, 255);
            this.B_Save.Name = "B_Save";
            this.B_Save.Size = new System.Drawing.Size(67, 23);
            this.B_Save.TabIndex = 9;
            this.B_Save.Text = "Save";
            this.B_Save.UseVisualStyleBackColor = true;
            this.B_Save.Click += new System.EventHandler(this.B_Save_Click);
            // 
            // B_Cancel
            // 
            this.B_Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.B_Cancel.Location = new System.Drawing.Point(96, 255);
            this.B_Cancel.Name = "B_Cancel";
            this.B_Cancel.Size = new System.Drawing.Size(67, 23);
            this.B_Cancel.TabIndex = 10;
            this.B_Cancel.Text = "Cancel";
            this.B_Cancel.UseVisualStyleBackColor = true;
            this.B_Cancel.Click += new System.EventHandler(this.B_Cancel_Click);
            // 
            // L_Unlocked
            // 
            this.L_Unlocked.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.L_Unlocked.AutoSize = true;
            this.L_Unlocked.Location = new System.Drawing.Point(103, 231);
            this.L_Unlocked.Name = "L_Unlocked";
            this.L_Unlocked.Size = new System.Drawing.Size(56, 13);
            this.L_Unlocked.TabIndex = 11;
            this.L_Unlocked.Text = "Unlocked:";
            // 
            // CB_Unlocked
            // 
            this.CB_Unlocked.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.CB_Unlocked.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.CB_Unlocked.FormattingEnabled = true;
            this.CB_Unlocked.Items.AddRange(new object[] {
            "1",
            "2",
            "3",
            "4",
            "5",
            "6",
            "7",
            "8",
            "9",
            "10",
            "11",
            "12",
            "13",
            "14",
            "15",
            "16",
            "17",
            "18",
            "19",
            "20",
            "21",
            "22",
            "23",
            "24",
            "25",
            "26",
            "27",
            "28",
            "29",
            "30",
            "31"});
            this.CB_Unlocked.Location = new System.Drawing.Point(165, 228);
            this.CB_Unlocked.Name = "CB_Unlocked";
            this.CB_Unlocked.Size = new System.Drawing.Size(40, 21);
            this.CB_Unlocked.TabIndex = 12;
            this.CB_Unlocked.TextChanged += new System.EventHandler(this.changeBoxDetails);
            // 
            // CB_BG
            // 
            this.CB_BG.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.CB_BG.FormattingEnabled = true;
            this.CB_BG.Location = new System.Drawing.Point(135, 61);
            this.CB_BG.Name = "CB_BG";
            this.CB_BG.Size = new System.Drawing.Size(101, 21);
            this.CB_BG.TabIndex = 13;
            this.CB_BG.SelectedIndexChanged += new System.EventHandler(this.changeBoxBG);
            this.CB_BG.TextChanged += new System.EventHandler(this.changeBoxDetails);
            // 
            // PAN_BG
            // 
            this.PAN_BG.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.PAN_BG.Location = new System.Drawing.Point(100, 88);
            this.PAN_BG.Name = "PAN_BG";
            this.PAN_BG.Size = new System.Drawing.Size(140, 95);
            this.PAN_BG.TabIndex = 14;
            // 
            // SAV_BoxLayout
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(249, 291);
            this.Controls.Add(this.PAN_BG);
            this.Controls.Add(this.CB_BG);
            this.Controls.Add(this.CB_Unlocked);
            this.Controls.Add(this.L_Unlocked);
            this.Controls.Add(this.B_Cancel);
            this.Controls.Add(this.B_Save);
            this.Controls.Add(this.MT_BG2);
            this.Controls.Add(this.MT_BG1);
            this.Controls.Add(this.L_Flags);
            this.Controls.Add(this.L_BG);
            this.Controls.Add(this.L_BoxName);
            this.Controls.Add(this.TB_BoxName);
            this.Controls.Add(this.LB_BoxSelect);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "SAV_BoxLayout";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Box Layout Editor";
            this.ResumeLayout(false);
            this.PerformLayout();

        }