📄 mainform.designer.cs
字号:
namespace MyTetris
{
partial class MainForm
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.menuMain = new System.Windows.Forms.MenuStrip();
this.控制ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemStart = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemPause = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemReStart = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemExit = new System.Windows.Forms.ToolStripMenuItem();
this.设置ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemSetOption = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemOption = new System.Windows.Forms.ToolStripMenuItem();
this.帮助ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemAbout = new System.Windows.Forms.ToolStripMenuItem();
this.menuItemContactUs = new System.Windows.Forms.ToolStripMenuItem();
this.pbRun = new System.Windows.Forms.PictureBox();
this.labReady = new System.Windows.Forms.Label();
this.panel4 = new System.Windows.Forms.Panel();
this.palShowStatus = new System.Windows.Forms.Panel();
this.of1 = new System.Windows.Forms.OpenFileDialog();
this.menuMain.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pbRun)).BeginInit();
this.panel4.SuspendLayout();
this.SuspendLayout();
//
// menuMain
//
this.menuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.控制ToolStripMenuItem,
this.设置ToolStripMenuItem,
this.帮助ToolStripMenuItem});
resources.ApplyResources(this.menuMain, "menuMain");
this.menuMain.Name = "menuMain";
//
// 控制ToolStripMenuItem
//
this.控制ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemStart,
this.menuItemPause,
this.menuItemReStart,
this.menuItemExit});
this.控制ToolStripMenuItem.Name = "控制ToolStripMenuItem";
resources.ApplyResources(this.控制ToolStripMenuItem, "控制ToolStripMenuItem");
//
// menuItemStart
//
this.menuItemStart.Name = "menuItemStart";
resources.ApplyResources(this.menuItemStart, "menuItemStart");
this.menuItemStart.Click += new System.EventHandler(this.menuItemStart_Click);
//
// menuItemPause
//
this.menuItemPause.Name = "menuItemPause";
resources.ApplyResources(this.menuItemPause, "menuItemPause");
this.menuItemPause.Click += new System.EventHandler(this.menuItemPause_Click);
//
// menuItemReStart
//
this.menuItemReStart.Name = "menuItemReStart";
resources.ApplyResources(this.menuItemReStart, "menuItemReStart");
this.menuItemReStart.Click += new System.EventHandler(this.menuItemReStart_Click);
//
// menuItemExit
//
this.menuItemExit.Name = "menuItemExit";
resources.ApplyResources(this.menuItemExit, "menuItemExit");
this.menuItemExit.Click += new System.EventHandler(this.menuItemExit_Click);
//
// 设置ToolStripMenuItem
//
this.设置ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemSetOption,
this.menuItemOption});
this.设置ToolStripMenuItem.Name = "设置ToolStripMenuItem";
resources.ApplyResources(this.设置ToolStripMenuItem, "设置ToolStripMenuItem");
//
// menuItemSetOption
//
this.menuItemSetOption.Name = "menuItemSetOption";
resources.ApplyResources(this.menuItemSetOption, "menuItemSetOption");
this.menuItemSetOption.Click += new System.EventHandler(this.menuItemSetOption_Click);
//
// menuItemOption
//
this.menuItemOption.Name = "menuItemOption";
resources.ApplyResources(this.menuItemOption, "menuItemOption");
this.menuItemOption.Click += new System.EventHandler(this.menuItemOption_Click);
//
// 帮助ToolStripMenuItem
//
this.帮助ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuItemAbout,
this.menuItemContactUs});
this.帮助ToolStripMenuItem.Name = "帮助ToolStripMenuItem";
resources.ApplyResources(this.帮助ToolStripMenuItem, "帮助ToolStripMenuItem");
//
// menuItemAbout
//
this.menuItemAbout.Name = "menuItemAbout";
resources.ApplyResources(this.menuItemAbout, "menuItemAbout");
//
// menuItemContactUs
//
this.menuItemContactUs.Name = "menuItemContactUs";
resources.ApplyResources(this.menuItemContactUs, "menuItemContactUs");
this.menuItemContactUs.Click += new System.EventHandler(this.menuItemContactUs_Click);
//
// pbRun
//
this.pbRun.BackColor = System.Drawing.Color.Black;
resources.ApplyResources(this.pbRun, "pbRun");
this.pbRun.Name = "pbRun";
this.pbRun.TabStop = false;
this.pbRun.Paint += new System.Windows.Forms.PaintEventHandler(this.pbRun_Paint);
//
// labReady
//
this.labReady.BackColor = System.Drawing.Color.Black;
resources.ApplyResources(this.labReady, "labReady");
this.labReady.Name = "labReady";
this.labReady.Paint += new System.Windows.Forms.PaintEventHandler(this.labReady_Paint);
//
// panel4
//
this.panel4.Controls.Add(this.labReady);
resources.ApplyResources(this.panel4, "panel4");
this.panel4.Name = "panel4";
//
// palShowStatus
//
this.palShowStatus.BackColor = System.Drawing.SystemColors.Control;
this.palShowStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
resources.ApplyResources(this.palShowStatus, "palShowStatus");
this.palShowStatus.Name = "palShowStatus";
this.palShowStatus.Paint += new System.Windows.Forms.PaintEventHandler(this.palShowStatus_Paint);
//
// of1
//
this.of1.FileName = "openFileDialog1";
//
// MainForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.palShowStatus);
this.Controls.Add(this.panel4);
this.Controls.Add(this.pbRun);
this.Controls.Add(this.menuMain);
this.KeyPreview = true;
this.MainMenuStrip = this.menuMain;
this.Name = "MainForm";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MainForm_KeyDown);
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuMain.ResumeLayout(false);
this.menuMain.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.pbRun)).EndInit();
this.panel4.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuMain;
private System.Windows.Forms.ToolStripMenuItem 控制ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem menuItemStart;
private System.Windows.Forms.ToolStripMenuItem menuItemPause;
private System.Windows.Forms.ToolStripMenuItem menuItemReStart;
private System.Windows.Forms.ToolStripMenuItem menuItemExit;
private System.Windows.Forms.ToolStripMenuItem 设置ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem menuItemSetOption;
private System.Windows.Forms.ToolStripMenuItem menuItemOption;
private System.Windows.Forms.ToolStripMenuItem 帮助ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem menuItemAbout;
private System.Windows.Forms.ToolStripMenuItem menuItemContactUs;
public System.Windows.Forms.PictureBox pbRun;
public System.Windows.Forms.Label labReady;
public System.Windows.Forms.Panel panel4;
public System.Windows.Forms.Panel palShowStatus;
private System.Windows.Forms.OpenFileDialog of1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -