Camfight.Form1.InitializeComponent C# (CSharp) Method

InitializeComponent() private method

此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
private InitializeComponent ( ) : void
return void
        private void InitializeComponent()
        {
            this.gamebox = new System.Windows.Forms.PictureBox();
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.gamebox)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.SuspendLayout();
            // 
            // gamebox
            // 
            this.gamebox.Location = new System.Drawing.Point(0, 0);
            this.gamebox.Name = "gamebox";
            this.gamebox.Size = new System.Drawing.Size(640, 480);
            this.gamebox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.gamebox.TabIndex = 0;
            this.gamebox.TabStop = false;
            // 
            // pictureBox1
            // 
            this.pictureBox1.Location = new System.Drawing.Point(646, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(641, 480);
            this.pictureBox1.TabIndex = 1;
            this.pictureBox1.TabStop = false;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1284, 480);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.gamebox);
            this.Name = "Form1";
            this.Text = "Form1";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.gamebox)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.ResumeLayout(false);

        }