亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? form2.designer.cs

?? C#寫了一個(gè)掃雷小游戲
?? CS
字號(hào):
?namespace winmine
{
    partial class Form2
    {
        /// <summary>
        /// 必需的設(shè)計(jì)器變量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的資源。
        /// </summary>
        /// <param name="disposing">如果應(yīng)釋放托管資源,為 true;否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗體設(shè)計(jì)器生成的代碼

        /// <summary>
        /// 設(shè)計(jì)器支持所需的方法 - 不要
        /// 使用代碼編輯器修改此方法的內(nèi)容。
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.button1 = new System.Windows.Forms.Button();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.游戲ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.開始ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.初級(jí)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.中級(jí)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.高級(jí)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.超高級(jí)ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.自定義ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.關(guān)于ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            this.menuStrip1.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            // 
            // pictureBox1
            // 
            this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.pictureBox1.Location = new System.Drawing.Point(0, 0);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(674, 415);
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
            this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.WinMine_MouseDown);
            this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBox1_Paint);
            this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.WinMine_MouseUp);
            // 
            // button1
            // 
            this.button1.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
            this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.button1.Location = new System.Drawing.Point(47, 9);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(29, 27);
            this.button1.TabIndex = 1;
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // menuStrip1
            // 
            this.menuStrip1.BackColor = System.Drawing.SystemColors.Control;
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.游戲ToolStripMenuItem,
            this.關(guān)于ToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(678, 24);
            this.menuStrip1.TabIndex = 3;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // 游戲ToolStripMenuItem
            // 
            this.游戲ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.開始ToolStripMenuItem,
            this.初級(jí)ToolStripMenuItem,
            this.中級(jí)ToolStripMenuItem,
            this.高級(jí)ToolStripMenuItem,
            this.超高級(jí)ToolStripMenuItem,
            this.自定義ToolStripMenuItem});
            this.游戲ToolStripMenuItem.Name = "游戲ToolStripMenuItem";
            this.游戲ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
            this.游戲ToolStripMenuItem.Text = "游戲";
            // 
            // 開始ToolStripMenuItem
            // 
            this.開始ToolStripMenuItem.Name = "開始ToolStripMenuItem";
            this.開始ToolStripMenuItem.ShortcutKeyDisplayString = "F2";
            this.開始ToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F2;
            this.開始ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.開始ToolStripMenuItem.Text = "開始";
            this.開始ToolStripMenuItem.Click += new System.EventHandler(this.開始ToolStripMenuItem_Click);
            // 
            // 初級(jí)ToolStripMenuItem
            // 
            this.初級(jí)ToolStripMenuItem.Name = "初級(jí)ToolStripMenuItem";
            this.初級(jí)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.初級(jí)ToolStripMenuItem.Text = "初級(jí)";
            this.初級(jí)ToolStripMenuItem.Click += new System.EventHandler(this.初級(jí)ToolStripMenuItem_Click);
            // 
            // 中級(jí)ToolStripMenuItem
            // 
            this.中級(jí)ToolStripMenuItem.Name = "中級(jí)ToolStripMenuItem";
            this.中級(jí)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.中級(jí)ToolStripMenuItem.Text = "中級(jí)";
            this.中級(jí)ToolStripMenuItem.Click += new System.EventHandler(this.中級(jí)ToolStripMenuItem_Click);
            // 
            // 高級(jí)ToolStripMenuItem
            // 
            this.高級(jí)ToolStripMenuItem.Name = "高級(jí)ToolStripMenuItem";
            this.高級(jí)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.高級(jí)ToolStripMenuItem.Text = "高級(jí)";
            this.高級(jí)ToolStripMenuItem.Click += new System.EventHandler(this.高級(jí)ToolStripMenuItem_Click);
            // 
            // 超高級(jí)ToolStripMenuItem
            // 
            this.超高級(jí)ToolStripMenuItem.Name = "超高級(jí)ToolStripMenuItem";
            this.超高級(jí)ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.超高級(jí)ToolStripMenuItem.Text = "超高級(jí)";
            this.超高級(jí)ToolStripMenuItem.Click += new System.EventHandler(this.超高級(jí)ToolStripMenuItem_Click);
            // 
            // 自定義ToolStripMenuItem
            // 
            this.自定義ToolStripMenuItem.Name = "自定義ToolStripMenuItem";
            this.自定義ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
            this.自定義ToolStripMenuItem.Text = "自定義";
            // 
            // 關(guān)于ToolStripMenuItem
            // 
            this.關(guān)于ToolStripMenuItem.Name = "關(guān)于ToolStripMenuItem";
            this.關(guān)于ToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
            this.關(guān)于ToolStripMenuItem.Text = "關(guān)于";
            this.關(guān)于ToolStripMenuItem.Click += new System.EventHandler(this.關(guān)于ToolStripMenuItem_Click);
            // 
            // splitContainer1
            // 
            this.splitContainer1.BackColor = System.Drawing.Color.LightGray;
            this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.splitContainer1.ImeMode = System.Windows.Forms.ImeMode.On;
            this.splitContainer1.Location = new System.Drawing.Point(0, 24);
            this.splitContainer1.Name = "splitContainer1";
            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.BackColor = System.Drawing.Color.Transparent;
            this.splitContainer1.Panel1.Controls.Add(this.textBox2);
            this.splitContainer1.Panel1.Controls.Add(this.textBox1);
            this.splitContainer1.Panel1.Controls.Add(this.button1);
            this.splitContainer1.Panel1.Font = new System.Drawing.Font("華文仿宋", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.splitContainer1.Panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel1_Paint);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.pictureBox1);
            this.splitContainer1.Panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.splitContainer1_Panel2_Paint);
            this.splitContainer1.Size = new System.Drawing.Size(678, 467);
            this.splitContainer1.SplitterDistance = 44;
            this.splitContainer1.TabIndex = 4;
            // 
            // textBox2
            // 
            this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.textBox2.BackColor = System.Drawing.Color.Black;
            this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox2.ForeColor = System.Drawing.Color.Red;
            this.textBox2.Location = new System.Drawing.Point(636, 10);
            this.textBox2.Name = "textBox2";
            this.textBox2.ReadOnly = true;
            this.textBox2.Size = new System.Drawing.Size(37, 25);
            this.textBox2.TabIndex = 4;
            this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            // 
            // textBox1
            // 
            this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.textBox1.BackColor = System.Drawing.Color.Black;
            this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.textBox1.ForeColor = System.Drawing.Color.Red;
            this.textBox1.Location = new System.Drawing.Point(5, 9);
            this.textBox1.Name = "textBox1";
            this.textBox1.ReadOnly = true;
            this.textBox1.Size = new System.Drawing.Size(36, 25);
            this.textBox1.TabIndex = 3;
            this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            // 
            // timer1
            // 
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // Form2
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(678, 491);
            this.Controls.Add(this.splitContainer1);
            this.Controls.Add(this.menuStrip1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.MainMenuStrip = this.menuStrip1;
            this.MaximizeBox = false;
            this.Name = "Form2";
            this.ShowIcon = false;
            this.Text = "QW版掃雷";
            this.SizeChanged += new System.EventHandler(this.Form2_SizeChanged);
            this.Load += new System.EventHandler(this.Form2_Load);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel1.PerformLayout();
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.PictureBox pictureBox1;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem 游戲ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 初級(jí)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 中級(jí)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 高級(jí)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 超高級(jí)ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 自定義ToolStripMenuItem;
        private System.Windows.Forms.SplitContainer splitContainer1;
        private System.Windows.Forms.TextBox textBox1;
        private System.Windows.Forms.TextBox textBox2;
        private System.Windows.Forms.Timer timer1;
        private System.Windows.Forms.ToolStripMenuItem 關(guān)于ToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem 開始ToolStripMenuItem;
    }
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日本vs亚洲vs韩国一区三区| 日韩视频一区二区三区在线播放| 天天综合天天综合色| 中文字幕亚洲成人| 久久精品一区八戒影视| 精品成人私密视频| 久久久久国产精品麻豆| 精品国产乱码久久久久久久久| 欧美一区二区三区四区在线观看| 91麻豆精品国产91久久久资源速度| 欧美综合一区二区三区| 色哟哟亚洲精品| 日本福利一区二区| 欧美三级视频在线| 欧美日产国产精品| 欧美一区二区三区在| 久久一区二区视频| 国产亚洲短视频| 国产精品久久久久影视| 亚洲欧美在线视频观看| 一区二区三区丝袜| 五月婷婷综合在线| 激情久久久久久久久久久久久久久久| 韩国女主播成人在线| 国产成人午夜电影网| 91在线观看视频| 91网站最新地址| 69久久99精品久久久久婷婷| 精品少妇一区二区三区| 国产亚洲成aⅴ人片在线观看| 久久精品在线观看| 亚洲综合在线五月| 精品一二三四在线| av成人老司机| 7777精品伊人久久久大香线蕉完整版| 日韩一区二区精品在线观看| 欧美激情综合在线| 亚洲色图色小说| 亚洲成年人影院| 久久国产精品99久久久久久老狼 | 久久99精品久久只有精品| 国产传媒欧美日韩成人| 欧美艳星brazzers| 国产三级欧美三级| 亚洲国产va精品久久久不卡综合| 麻豆精品蜜桃视频网站| 91美女片黄在线| 日韩免费性生活视频播放| 国产精品高清亚洲| 久久国产成人午夜av影院| 91蝌蚪国产九色| 久久一区二区视频| 欧美aaa在线| 色婷婷av一区二区| 久久先锋影音av鲁色资源| 亚洲福中文字幕伊人影院| 国产精品原创巨作av| 欧美区在线观看| 亚洲蜜臀av乱码久久精品蜜桃| 久久国产夜色精品鲁鲁99| 色哟哟一区二区三区| 国产精品免费视频一区| 伦理电影国产精品| 欧美精品一卡二卡| 亚洲乱码国产乱码精品精98午夜 | 久久久电影一区二区三区| 亚洲图片欧美综合| 97se亚洲国产综合在线| 国产性天天综合网| 国产伦精品一区二区三区免费 | 日韩一级高清毛片| 亚洲成人动漫精品| 在线免费精品视频| 亚洲你懂的在线视频| 99久久精品免费| 国产精品美女久久久久久久| 国产成人鲁色资源国产91色综 | 免费人成黄页网站在线一区二区| 色噜噜夜夜夜综合网| 18成人在线观看| 本田岬高潮一区二区三区| 中文在线一区二区| 成人免费av资源| 国产精品美女久久福利网站| 成人免费看的视频| 国产精品久久久一本精品| 成人免费观看视频| 亚洲精品视频一区二区| 欧美在线啊v一区| 亚洲一区二区视频| 91麻豆精品国产自产在线 | 国产一区二区中文字幕| 久久久久久一二三区| 国产69精品一区二区亚洲孕妇| 日韩一区二区三区av| 久久国产免费看| 国产网站一区二区| 91视频.com| 五月婷婷激情综合| 精品国产区一区| zzijzzij亚洲日本少妇熟睡| 伊人一区二区三区| 91精品午夜视频| 国产精品一区在线观看你懂的| 中文字幕精品在线不卡| 91网站最新地址| 日本女人一区二区三区| 国产午夜亚洲精品羞羞网站| 91在线视频播放地址| 午夜伦欧美伦电影理论片| 欧美一级国产精品| 成人av午夜电影| 视频一区视频二区在线观看| 精品国产sm最大网站免费看| 99久久国产免费看| 日韩黄色小视频| 中文一区一区三区高中清不卡| 日本韩国欧美国产| 老司机免费视频一区二区三区| 国产精品丝袜91| 欧美一区二区国产| 99精品国产视频| 久久超级碰视频| 一区二区国产盗摄色噜噜| 精品99一区二区三区| 色狠狠色狠狠综合| 国产精品66部| 午夜精品福利一区二区三区蜜桃| 国产视频911| 欧美精品一二三| 99精品视频在线免费观看| 久久精品国产99久久6| 亚洲精品中文在线影院| 久久久一区二区| 91精品视频网| 欧美三级韩国三级日本一级| 国产 欧美在线| 久久99蜜桃精品| 亚洲成av人片| 亚洲天堂a在线| 国产午夜精品一区二区| 欧美成人aa大片| 欧美高清视频在线高清观看mv色露露十八 | 丁香婷婷综合色啪| 日韩电影免费一区| 亚洲一区免费视频| 亚洲女性喷水在线观看一区| 国产精品美女视频| 国产精品视频看| 欧美国产一区二区在线观看| 日韩视频在线观看一区二区| 91精品黄色片免费大全| 欧美日韩亚洲不卡| 欧美色精品在线视频| 91电影在线观看| 91福利视频网站| 91黄色激情网站| 欧美性极品少妇| 欧美视频日韩视频在线观看| 在线免费不卡视频| 欧美日免费三级在线| 精品视频一区三区九区| 欧美日韩一区二区在线视频| 欧美三级电影网| 69成人精品免费视频| 欧美一级免费观看| 日韩一区二区三区高清免费看看| 欧美电影免费观看高清完整版在| 欧美一二三区在线| 精品国产乱码久久| 久久久噜噜噜久久中文字幕色伊伊| 久久久久久久久岛国免费| 欧美国产日韩精品免费观看| 国产精品美女一区二区| 亚洲免费观看高清在线观看| 一区二区三区四区五区视频在线观看| 亚洲视频一区二区在线观看| 亚洲综合男人的天堂| 天天色天天操综合| 久久精品久久综合| 高清在线不卡av| 色欧美片视频在线观看| 欧美电影影音先锋| 2017欧美狠狠色| 亚洲欧洲在线观看av| 午夜激情久久久| 国内精品免费在线观看| 成人av中文字幕| 欧美日韩在线电影| 日韩免费性生活视频播放| 久久精品一区八戒影视| 亚洲午夜久久久久中文字幕久| 秋霞电影网一区二区| 暴力调教一区二区三区| 欧美一级二级三级蜜桃| 亚洲少妇30p| 精品一区二区三区免费视频| www.色精品| 精品三级在线看| 一区二区三区四区不卡视频|