Canguro.Controller.Controller.InputBox.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

private InitializeComponent ( ) : void
return void
            private void InitializeComponent()
            {
                this.textBox1 = new System.Windows.Forms.TextBox();
                this.SuspendLayout();
                //
                // textBox1
                //
                this.textBox1.Location = new System.Drawing.Point(16, 16);
                this.textBox1.Name = "textBox1";
                this.textBox1.Size = new System.Drawing.Size(256, 20);
                this.textBox1.TabIndex = 0;
                this.textBox1.Text = "";
                this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
                //
                // InputBox
                //
                this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
                this.ClientSize = new System.Drawing.Size(292, 53);
                this.ControlBox = false;
                this.Controls.AddRange(new System.Windows.Forms.Control[] { this.textBox1 });
                this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
                this.Name = "InputBox";
                this.Text = "InputBox";
                this.ResumeLayout(false);
            }