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

📄 mainform.designer.cs

📁 这是一个关于MFC的题目
💻 CS
📖 第 1 页 / 共 2 页
字号:
namespace TicTacToe
{
    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()
        {
          this.components = new System.ComponentModel.Container();
          System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
          this.menuStrip1 = new System.Windows.Forms.MenuStrip();
          this.gameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.newGameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.twoPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.levelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.easyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.hardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
          this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.toolbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.statusBarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.smileysToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.languageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.danishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
          this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
          this.statusBarStrip = new System.Windows.Forms.StatusStrip();
          this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
          this.toolStripStatusLabelTime = new System.Windows.Forms.ToolStripStatusLabel();
          this.toolbarStrip = new System.Windows.Forms.ToolStrip();
          this.toolStripButtonNewGame = new System.Windows.Forms.ToolStripButton();
          this.toolStripButtonSmileys = new System.Windows.Forms.ToolStripButton();
          this.timerGame = new System.Windows.Forms.Timer(this.components);
          this.menuStrip1.SuspendLayout();
          this.statusBarStrip.SuspendLayout();
          this.toolbarStrip.SuspendLayout();
          this.SuspendLayout();
          // 
          // menuStrip1
          // 
          this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.gameToolStripMenuItem,
            this.viewToolStripMenuItem,
            this.helpToolStripMenuItem});
          resources.ApplyResources(this.menuStrip1, "menuStrip1");
          this.menuStrip1.Name = "menuStrip1";
          // 
          // gameToolStripMenuItem
          // 
          this.gameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newGameToolStripMenuItem,
            this.twoPlayerToolStripMenuItem,
            this.levelToolStripMenuItem,
            this.toolStripSeparator1,
            this.exitToolStripMenuItem});
          this.gameToolStripMenuItem.Name = "gameToolStripMenuItem";
          resources.ApplyResources(this.gameToolStripMenuItem, "gameToolStripMenuItem");
          // 
          // newGameToolStripMenuItem
          // 
          this.newGameToolStripMenuItem.Image = global::TicTacToe.Properties.Resources.NewGame;
          this.newGameToolStripMenuItem.Name = "newGameToolStripMenuItem";
          resources.ApplyResources(this.newGameToolStripMenuItem, "newGameToolStripMenuItem");
          this.newGameToolStripMenuItem.Click += new System.EventHandler(this.newGameToolStripMenuItem_Click);
          // 
          // twoPlayerToolStripMenuItem
          // 
          this.twoPlayerToolStripMenuItem.CheckOnClick = true;
          this.twoPlayerToolStripMenuItem.Image = global::TicTacToe.Properties.Resources.TwoPlayer;
          resources.ApplyResources(this.twoPlayerToolStripMenuItem, "twoPlayerToolStripMenuItem");
          this.twoPlayerToolStripMenuItem.Name = "twoPlayerToolStripMenuItem";
          // 
          // levelToolStripMenuItem
          // 
          this.levelToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.easyToolStripMenuItem,
            this.hardToolStripMenuItem});
          this.levelToolStripMenuItem.Name = "levelToolStripMenuItem";
          resources.ApplyResources(this.levelToolStripMenuItem, "levelToolStripMenuItem");
          // 
          // easyToolStripMenuItem
          // 
          this.easyToolStripMenuItem.Name = "easyToolStripMenuItem";
          resources.ApplyResources(this.easyToolStripMenuItem, "easyToolStripMenuItem");
          this.easyToolStripMenuItem.Click += new System.EventHandler(this.easyToolStripMenuItem_Click);
          // 
          // hardToolStripMenuItem
          // 
          this.hardToolStripMenuItem.Checked = true;
          this.hardToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
          this.hardToolStripMenuItem.Name = "hardToolStripMenuItem";
          resources.ApplyResources(this.hardToolStripMenuItem, "hardToolStripMenuItem");
          this.hardToolStripMenuItem.Click += new System.EventHandler(this.hardToolStripMenuItem_Click);
          // 
          // toolStripSeparator1
          // 
          this.toolStripSeparator1.Name = "toolStripSeparator1";
          resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1");
          // 
          // exitToolStripMenuItem
          // 
          this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
          resources.ApplyResources(this.exitToolStripMenuItem, "exitToolStripMenuItem");
          this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
          // 
          // viewToolStripMenuItem
          // 
          this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolbarToolStripMenuItem,
            this.statusBarToolStripMenuItem,
            this.smileysToolStripMenuItem,
            this.languageToolStripMenuItem});
          this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
          resources.ApplyResources(this.viewToolStripMenuItem, "viewToolStripMenuItem");
          // 
          // toolbarToolStripMenuItem
          // 
          this.toolbarToolStripMenuItem.Checked = true;
          this.toolbarToolStripMenuItem.CheckOnClick = true;
          this.toolbarToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
          this.toolbarToolStripMenuItem.Name = "toolbarToolStripMenuItem";
          resources.ApplyResources(this.toolbarToolStripMenuItem, "toolbarToolStripMenuItem");
          this.toolbarToolStripMenuItem.Click += new System.EventHandler(this.toolbarToolStripMenuItem_Click);
          // 
          // statusBarToolStripMenuItem
          // 
          this.statusBarToolStripMenuItem.Checked = true;
          this.statusBarToolStripMenuItem.CheckOnClick = true;
          this.statusBarToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
          this.statusBarToolStripMenuItem.Name = "statusBarToolStripMenuItem";
          resources.ApplyResources(this.statusBarToolStripMenuItem, "statusBarToolStripMenuItem");
          this.statusBarToolStripMenuItem.Click += new System.EventHandler(this.statusBarToolStripMenuItem_Click);
          // 
          // smileysToolStripMenuItem
          // 
          this.smileysToolStripMenuItem.CheckOnClick = true;

⌨️ 快捷键说明

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