📄 mainform.designer.cs
字号:
this.smileysToolStripMenuItem.Name = "smileysToolStripMenuItem";
resources.ApplyResources(this.smileysToolStripMenuItem, "smileysToolStripMenuItem");
this.smileysToolStripMenuItem.Click += new System.EventHandler(this.smileysToolStripMenuItem_Click);
//
// languageToolStripMenuItem
//
this.languageToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.englishToolStripMenuItem,
this.danishToolStripMenuItem});
this.languageToolStripMenuItem.Name = "languageToolStripMenuItem";
resources.ApplyResources(this.languageToolStripMenuItem, "languageToolStripMenuItem");
//
// englishToolStripMenuItem
//
this.englishToolStripMenuItem.Checked = true;
this.englishToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
this.englishToolStripMenuItem.Click += new System.EventHandler(this.englishToolStripMenuItem_Click);
//
// danishToolStripMenuItem
//
this.danishToolStripMenuItem.Name = "danishToolStripMenuItem";
resources.ApplyResources(this.danishToolStripMenuItem, "danishToolStripMenuItem");
this.danishToolStripMenuItem.Click += new System.EventHandler(this.danishToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.helpToolStripMenuItem1,
this.aboutToolStripMenuItem});
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
resources.ApplyResources(this.helpToolStripMenuItem, "helpToolStripMenuItem");
//
// helpToolStripMenuItem1
//
this.helpToolStripMenuItem1.Image = global::TicTacToe.Properties.Resources.Help;
this.helpToolStripMenuItem1.Name = "helpToolStripMenuItem1";
resources.ApplyResources(this.helpToolStripMenuItem1, "helpToolStripMenuItem1");
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Image = global::TicTacToe.Properties.Resources.About;
resources.ApplyResources(this.aboutToolStripMenuItem, "aboutToolStripMenuItem");
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
//
// statusBarStrip
//
this.statusBarStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1,
this.toolStripStatusLabelTime});
resources.ApplyResources(this.statusBarStrip, "statusBarStrip");
this.statusBarStrip.Name = "statusBarStrip";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.BackColor = System.Drawing.SystemColors.MenuBar;
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
resources.ApplyResources(this.toolStripStatusLabel1, "toolStripStatusLabel1");
this.toolStripStatusLabel1.Spring = true;
//
// toolStripStatusLabelTime
//
this.toolStripStatusLabelTime.BackColor = System.Drawing.SystemColors.MenuBar;
this.toolStripStatusLabelTime.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)
| System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom)));
this.toolStripStatusLabelTime.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
this.toolStripStatusLabelTime.Name = "toolStripStatusLabelTime";
resources.ApplyResources(this.toolStripStatusLabelTime, "toolStripStatusLabelTime");
//
// toolbarStrip
//
this.toolbarStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButtonNewGame,
this.toolStripButtonSmileys});
resources.ApplyResources(this.toolbarStrip, "toolbarStrip");
this.toolbarStrip.Name = "toolbarStrip";
//
// toolStripButtonNewGame
//
this.toolStripButtonNewGame.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonNewGame.Image = global::TicTacToe.Properties.Resources.NewGame;
resources.ApplyResources(this.toolStripButtonNewGame, "toolStripButtonNewGame");
this.toolStripButtonNewGame.Name = "toolStripButtonNewGame";
this.toolStripButtonNewGame.Click += new System.EventHandler(this.toolStripButtonNewGame_Click);
//
// toolStripButtonSmileys
//
this.toolStripButtonSmileys.CheckOnClick = true;
this.toolStripButtonSmileys.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.toolStripButtonSmileys.Image = global::TicTacToe.Properties.Resources.mini_smiley;
resources.ApplyResources(this.toolStripButtonSmileys, "toolStripButtonSmileys");
this.toolStripButtonSmileys.Name = "toolStripButtonSmileys";
this.toolStripButtonSmileys.Click += new System.EventHandler(this.toolStripButtonSmileys_Click);
//
// timerGame
//
this.timerGame.Interval = 1000;
this.timerGame.Tick += new System.EventHandler(this.timerGame_Tick);
//
// MainForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.Controls.Add(this.toolbarStrip);
this.Controls.Add(this.statusBarStrip);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.MainForm_MouseClick);
this.Resize += new System.EventHandler(this.MainForm_Resize);
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.MainForm_KeyPress);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.statusBarStrip.ResumeLayout(false);
this.statusBarStrip.PerformLayout();
this.toolbarStrip.ResumeLayout(false);
this.toolbarStrip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem gameToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.StatusStrip statusBarStrip;
private System.Windows.Forms.ToolStripMenuItem newGameToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem toolbarToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem statusBarToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem1;
private System.Windows.Forms.ToolStrip toolbarStrip;
private System.Windows.Forms.ToolStripButton toolStripButtonNewGame;
private System.Windows.Forms.ToolStripMenuItem smileysToolStripMenuItem;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelTime;
private System.Windows.Forms.Timer timerGame;
private System.Windows.Forms.ToolStripButton toolStripButtonSmileys;
private System.Windows.Forms.ToolStripMenuItem twoPlayerToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem levelToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem easyToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem hardToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem languageToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem englishToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem danishToolStripMenuItem;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -