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

📄 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 + -