OZWForm.ValuePanelString.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

Initializes the component.
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.ValueStringLabel = new System.Windows.Forms.Label();
            this.ValueStringTextBox = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            //
            // ValueStringLabel
            //
            this.ValueStringLabel.AutoSize = true;
            this.ValueStringLabel.Location = new System.Drawing.Point(133, 10);
            this.ValueStringLabel.Name = "ValueStringLabel";
            this.ValueStringLabel.Size = new System.Drawing.Size(33, 13);
            this.ValueStringLabel.TabIndex = 2;
            this.ValueStringLabel.Text = "Label";
            //
            // ValueStringTextBox
            //
            this.ValueStringTextBox.Location = new System.Drawing.Point(4, 4);
            this.ValueStringTextBox.MaxLength = 255;
            this.ValueStringTextBox.Name = "ValueStringTextBox";
            this.ValueStringTextBox.Size = new System.Drawing.Size(123, 20);
            this.ValueStringTextBox.TabIndex = 3;
            //
            // ValuePanelString
            //
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.Controls.Add(this.ValueStringTextBox);
            this.Controls.Add(this.ValueStringLabel);
            this.Name = "ValuePanelString";
            this.Size = new System.Drawing.Size(169, 27);
            this.ResumeLayout(false);
            this.PerformLayout();
        }