⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 XNA拼图小游戏 XNA拼图小游戏
💻 CS
字号:
namespace 拼图游戏
{
    partial class Form1
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.comBox = new System.Windows.Forms.ComboBox();
            this.butStart = new System.Windows.Forms.Button();
            this.pan = new System.Windows.Forms.Panel();
            this.pic1 = new System.Windows.Forms.PictureBox();
            ((System.ComponentModel.ISupportInitialize)(this.pic1)).BeginInit();
            this.SuspendLayout();
            // 
            // comBox
            // 
            this.comBox.FormattingEnabled = true;
            this.comBox.Location = new System.Drawing.Point(12, 34);
            this.comBox.Name = "comBox";
            this.comBox.Size = new System.Drawing.Size(168, 20);
            this.comBox.TabIndex = 0;
            this.comBox.SelectedIndexChanged += new System.EventHandler(this.comBox_SelectedIndexChanged);
            // 
            // butStart
            // 
            this.butStart.Location = new System.Drawing.Point(45, 268);
            this.butStart.Name = "butStart";
            this.butStart.Size = new System.Drawing.Size(82, 35);
            this.butStart.TabIndex = 1;
            this.butStart.Text = "游戏开始";
            this.butStart.UseVisualStyleBackColor = true;
            this.butStart.Click += new System.EventHandler(this.butStart_Click);
            // 
            // pan
            // 
            this.pan.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pan.Location = new System.Drawing.Point(196, 34);
            this.pan.Name = "pan";
            this.pan.Size = new System.Drawing.Size(497, 386);
            this.pan.TabIndex = 2;
            // 
            // pic1
            // 
            this.pic1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pic1.Location = new System.Drawing.Point(12, 60);
            this.pic1.Name = "pic1";
            this.pic1.Size = new System.Drawing.Size(168, 178);
            this.pic1.TabIndex = 3;
            this.pic1.TabStop = false;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(714, 442);
            this.Controls.Add(this.pic1);
            this.Controls.Add(this.pan);
            this.Controls.Add(this.butStart);
            this.Controls.Add(this.comBox);
            this.KeyPreview = true;
            this.Name = "Form1";
            this.Text = "Form1";
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pic1)).EndInit();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.ComboBox comBox;
        private System.Windows.Forms.Button butStart;
        private System.Windows.Forms.Panel pan;
        private System.Windows.Forms.PictureBox pic1;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -