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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mainform.designer.cs

?? 編寫一個“密室尋寶”算法(以下簡稱算法)
?? CS
?? 第 1 頁 / 共 2 頁
字號:
?namespace GrapeCity.Competition.TreasureHouse
{
    partial class MainForm
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            this.toolStripStandard = new System.Windows.Forms.ToolStrip();
            this.toolStripNew = new System.Windows.Forms.ToolStripDropDownButton();
            this.easyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.normalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.hardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripLoad = new System.Windows.Forms.ToolStripButton();
            this.toolStripSave = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripGridline = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.toolStripMapInfo = new System.Windows.Forms.ToolStripStatusLabel();
            this.toolStripEditTools = new System.Windows.Forms.ToolStrip();
            this.toolStripEdit = new System.Windows.Forms.ToolStripButton();
            this.toolStripAuto = new System.Windows.Forms.ToolStripButton();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.toolStripClear = new System.Windows.Forms.ToolStripButton();
            this.toolStripWall = new System.Windows.Forms.ToolStripButton();
            this.toolStripCoin = new System.Windows.Forms.ToolStripButton();
            this.toolStripGem = new System.Windows.Forms.ToolStripButton();
            this.toolStripHolyA = new System.Windows.Forms.ToolStripButton();
            this.toolStripHolyB = new System.Windows.Forms.ToolStripButton();
            this.toolStripHolyC = new System.Windows.Forms.ToolStripButton();
            this.toolStripMaxStep = new System.Windows.Forms.ToolStripTextBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.propertyGridResult = new System.Windows.Forms.PropertyGrid();
            this.buttonRun = new System.Windows.Forms.Button();
            this.buttonReplay = new System.Windows.Forms.Button();
            this.buttonLoad = new System.Windows.Forms.Button();
            this.mapViewer1 = new GrapeCity.Competition.TreasureHouse.MapViewer();
            this.toolStripStandard.SuspendLayout();
            this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.toolStripEditTools.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripStandard
            // 
            this.toolStripStandard.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStripStandard.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripNew,
            this.toolStripLoad,
            this.toolStripSave,
            this.toolStripSeparator1,
            this.toolStripGridline});
            this.toolStripStandard.Location = new System.Drawing.Point(3, 0);
            this.toolStripStandard.Name = "toolStripStandard";
            this.toolStripStandard.Size = new System.Drawing.Size(116, 25);
            this.toolStripStandard.TabIndex = 1;
            this.toolStripStandard.Text = "Standard";
            // 
            // toolStripNew
            // 
            this.toolStripNew.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripNew.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.easyToolStripMenuItem,
            this.normalToolStripMenuItem,
            this.hardToolStripMenuItem});
            this.toolStripNew.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources._new;
            this.toolStripNew.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripNew.Name = "toolStripNew";
            this.toolStripNew.Size = new System.Drawing.Size(29, 22);
            this.toolStripNew.Text = "New";
            // 
            // easyToolStripMenuItem
            // 
            this.easyToolStripMenuItem.Name = "easyToolStripMenuItem";
            this.easyToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
            this.easyToolStripMenuItem.Text = "Easy";
            this.easyToolStripMenuItem.Click += new System.EventHandler(this.easyToolStripMenuItem_Click);
            // 
            // normalToolStripMenuItem
            // 
            this.normalToolStripMenuItem.Name = "normalToolStripMenuItem";
            this.normalToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
            this.normalToolStripMenuItem.Text = "Normal";
            this.normalToolStripMenuItem.Click += new System.EventHandler(this.normalToolStripMenuItem_Click);
            // 
            // hardToolStripMenuItem
            // 
            this.hardToolStripMenuItem.Name = "hardToolStripMenuItem";
            this.hardToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
            this.hardToolStripMenuItem.Text = "Hard";
            this.hardToolStripMenuItem.Click += new System.EventHandler(this.hardToolStripMenuItem_Click);
            // 
            // toolStripLoad
            // 
            this.toolStripLoad.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripLoad.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources.open;
            this.toolStripLoad.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripLoad.Name = "toolStripLoad";
            this.toolStripLoad.Size = new System.Drawing.Size(23, 22);
            this.toolStripLoad.Text = "Load";
            this.toolStripLoad.Click += new System.EventHandler(this.toolStripLoad_Click);
            // 
            // toolStripSave
            // 
            this.toolStripSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripSave.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources.save;
            this.toolStripSave.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripSave.Name = "toolStripSave";
            this.toolStripSave.Size = new System.Drawing.Size(23, 22);
            this.toolStripSave.Text = "Save";
            this.toolStripSave.Click += new System.EventHandler(this.toolStripSave_Click);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripGridline
            // 
            this.toolStripGridline.Checked = true;
            this.toolStripGridline.CheckOnClick = true;
            this.toolStripGridline.CheckState = System.Windows.Forms.CheckState.Checked;
            this.toolStripGridline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripGridline.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources.gridline;
            this.toolStripGridline.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripGridline.Name = "toolStripGridline";
            this.toolStripGridline.Size = new System.Drawing.Size(23, 22);
            this.toolStripGridline.Text = "Show GridLine";
            this.toolStripGridline.CheckedChanged += new System.EventHandler(this.toolStripGridline_CheckedChanged);
            // 
            // toolStripSeparator2
            // 
            this.toolStripSeparator2.Name = "toolStripSeparator2";
            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.BottomToolStripPanel
            // 
            this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStrip1);
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.toolStripContainer1.ContentPanel.Controls.Add(this.mapViewer1);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(454, 454);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.LeftToolStripPanelVisible = false;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.RightToolStripPanelVisible = false;
            this.toolStripContainer1.Size = new System.Drawing.Size(454, 501);
            this.toolStripContainer1.TabIndex = 2;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStripStandard);
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStripEditTools);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Dock = System.Windows.Forms.DockStyle.None;
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMapInfo});
            this.statusStrip1.Location = new System.Drawing.Point(0, 0);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(454, 22);
            this.statusStrip1.TabIndex = 1;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // toolStripMapInfo
            // 
            this.toolStripMapInfo.Name = "toolStripMapInfo";
            this.toolStripMapInfo.Size = new System.Drawing.Size(52, 17);
            this.toolStripMapInfo.Text = "MapInfo";
            // 
            // toolStripEditTools
            // 
            this.toolStripEditTools.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStripEditTools.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripEdit,
            this.toolStripSeparator2,
            this.toolStripAuto,
            this.toolStripSeparator3,
            this.toolStripClear,
            this.toolStripWall,
            this.toolStripCoin,
            this.toolStripGem,
            this.toolStripHolyA,
            this.toolStripHolyB,
            this.toolStripHolyC,
            this.toolStripMaxStep});
            this.toolStripEditTools.Location = new System.Drawing.Point(119, 0);
            this.toolStripEditTools.Name = "toolStripEditTools";
            this.toolStripEditTools.Size = new System.Drawing.Size(333, 25);
            this.toolStripEditTools.TabIndex = 2;
            this.toolStripEditTools.Text = "Edit";
            // 
            // toolStripEdit
            // 
            this.toolStripEdit.CheckOnClick = true;
            this.toolStripEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripEdit.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources.edit;
            this.toolStripEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripEdit.Name = "toolStripEdit";
            this.toolStripEdit.Size = new System.Drawing.Size(23, 22);
            this.toolStripEdit.Text = "Edit";
            this.toolStripEdit.CheckedChanged += new System.EventHandler(this.toolStripEdit_CheckedChanged);
            // 
            // toolStripAuto
            // 
            this.toolStripAuto.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.toolStripAuto.Enabled = false;
            this.toolStripAuto.Image = global::GrapeCity.Competition.TreasureHouse.Properties.Resources.auto;
            this.toolStripAuto.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.toolStripAuto.Name = "toolStripAuto";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本久道久久综合中文字幕 | 日本欧美一区二区| 国产丝袜美腿一区二区三区| 日韩女优电影在线观看| 91精品免费在线| 9191久久久久久久久久久| 欧美视频中文字幕| 欧美日韩免费一区二区三区| 欧美日韩一二三| 欧美日韩美女一区二区| 51精品国自产在线| 7777精品伊人久久久大香线蕉 | 国产成都精品91一区二区三| 日韩—二三区免费观看av| 日本亚洲免费观看| 国产乱人伦精品一区二区在线观看| 国产尤物一区二区| 国产乱码字幕精品高清av | 色欧美乱欧美15图片| 91黄色免费观看| 欧美另类变人与禽xxxxx| 91香蕉国产在线观看软件| 成人免费视频网站在线观看| gogo大胆日本视频一区| 欧美在线一二三四区| 91精品国产综合久久福利软件 | 成人毛片老司机大片| 91亚洲精华国产精华精华液| 欧美色欧美亚洲另类二区| 91精品中文字幕一区二区三区| 久久综合九色综合欧美98| 国产精品久线观看视频| 亚洲国产aⅴ成人精品无吗| 欧美aⅴ一区二区三区视频| 狠狠色丁香婷综合久久| 成人精品一区二区三区中文字幕| 91美女片黄在线观看91美女| 欧美一区二区在线视频| 国产精品国产三级国产普通话99| 亚洲成人精品一区| 国产精品一区三区| 欧美三级电影精品| 国产精品久久影院| 久久精品国产第一区二区三区| 不卡的电影网站| 日韩欧美亚洲另类制服综合在线 | 亚洲欧美日韩国产成人精品影院 | 国产精品久久99| 五月天激情综合| 不卡高清视频专区| 日韩小视频在线观看专区| 亚洲欧美另类久久久精品| 蜜臀av一级做a爰片久久| 99re视频这里只有精品| 26uuu精品一区二区| 亚洲综合精品久久| 成人亚洲精品久久久久软件| 91精品麻豆日日躁夜夜躁| 亚洲乱码国产乱码精品精的特点| 狠狠v欧美v日韩v亚洲ⅴ| 欧美日韩精品免费| 一区二区欧美精品| 国产成人在线视频网址| 正在播放一区二区| 夜夜夜精品看看| 97超碰欧美中文字幕| 国产亚洲成aⅴ人片在线观看 | 2020日本不卡一区二区视频| 亚洲r级在线视频| 色拍拍在线精品视频8848| 国产精品人成在线观看免费 | 国产日韩欧美在线一区| 精品一区二区三区在线播放视频| 欧美二区三区的天堂| 一二三四区精品视频| 不卡区在线中文字幕| 国产精品每日更新| 成人激情小说乱人伦| 国产精品嫩草影院com| 成人午夜精品在线| 日韩一区中文字幕| 色哟哟在线观看一区二区三区| 国产精品久久综合| 色婷婷香蕉在线一区二区| 亚洲欧美另类小说| 欧美日韩aaaaaa| 日本欧美一区二区三区| 欧美挠脚心视频网站| 日韩国产欧美在线观看| 日韩欧美中文字幕公布| 九九久久精品视频| 国产亚洲一区二区在线观看| 成人理论电影网| 一区二区三区欧美| 7878成人国产在线观看| 精品伊人久久久久7777人| 久久久久国色av免费看影院| 成人白浆超碰人人人人| 亚洲午夜精品17c| 欧美精品久久久久久久久老牛影院| 蜜臂av日日欢夜夜爽一区| 精品国产麻豆免费人成网站| 成人丝袜视频网| 一区二区免费在线| 欧美一卡2卡三卡4卡5免费| 国内外精品视频| 亚洲女女做受ⅹxx高潮| 欧美网站大全在线观看| 国模少妇一区二区三区| 亚洲欧洲精品成人久久奇米网| 欧美视频一区二区三区四区| 免费成人av资源网| 精品国产乱码久久| 91蜜桃免费观看视频| 免费观看一级特黄欧美大片| 国产精品美女视频| 91精品免费在线| 99re热这里只有精品视频| 美女视频一区二区| 亚洲激情五月婷婷| 久久综合给合久久狠狠狠97色69| 91久久人澡人人添人人爽欧美 | 中文字幕第一区第二区| 在线精品视频免费观看| 狠狠色综合日日| 亚洲高清免费视频| 亚洲素人一区二区| 26uuu国产一区二区三区| 欧美裸体一区二区三区| 成人精品电影在线观看| 久久成人久久鬼色| 亚洲国产视频网站| 国产精品久久综合| 久久精品一区二区三区av| 91精品国产综合久久精品app| 色菇凉天天综合网| 粉嫩欧美一区二区三区高清影视| 男女性色大片免费观看一区二区 | 欧美亚州韩日在线看免费版国语版| 国产原创一区二区| 麻豆精品在线观看| 午夜国产不卡在线观看视频| 亚洲精品大片www| 中文字幕第一区第二区| 国产亚洲欧美日韩日本| 精品动漫一区二区三区在线观看| 欧美日韩国产在线观看| 在线免费观看不卡av| 99久久伊人久久99| 不卡一二三区首页| 成人美女视频在线观看18| 国产精品99久| 国产一区中文字幕| 韩国女主播一区| 国产一区二区在线观看视频| 久久精品av麻豆的观看方式| 日本不卡中文字幕| 日产国产欧美视频一区精品| 日韩国产欧美三级| 麻豆成人av在线| 狠狠色狠狠色综合系列| 国产精品夜夜爽| 成人黄色国产精品网站大全在线免费观看 | 美女视频免费一区| 亚洲成人在线观看视频| 亚洲va欧美va人人爽午夜 | 精品一区二区影视| 国产在线看一区| 国产精品亚洲一区二区三区在线| 国产一区二区三区在线观看免费视频 | 欧美日韩一区小说| 欧美日韩国产免费| 日韩欧美中文字幕公布| 精品国内片67194| 欧美激情在线一区二区| 国产欧美1区2区3区| 国产精品欧美一级免费| 亚洲激情自拍偷拍| 亚洲小说春色综合另类电影| 日韩精品一卡二卡三卡四卡无卡| 一区二区三区日韩精品视频| 中文字幕永久在线不卡| 亚洲精品自拍动漫在线| 日本中文在线一区| 日韩一区精品视频| 国产美女娇喘av呻吟久久| youjizz久久| 欧美日韩在线三区| 久久精品亚洲乱码伦伦中文| 伊人色综合久久天天人手人婷| 日本午夜精品一区二区三区电影| 久久99九九99精品| 卡一卡二国产精品| 91色|porny| 成人综合婷婷国产精品久久免费| 色老汉一区二区三区| 久久先锋资源网| 亚洲午夜在线视频| 成人免费看黄yyy456| 欧美丰满嫩嫩电影|