📄 form1.designer.cs
字号:
namespace 俄罗斯方块
{
partial class Form1
{
/// <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()
{
this.components = new System.ComponentModel.Container();
this.lbl_title = new System.Windows.Forms.Label();
this.lbl = new System.Windows.Forms.Label();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.lbl_record = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lbl_title
//
this.lbl_title.Font = new System.Drawing.Font("黑体", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbl_title.Location = new System.Drawing.Point(92, 207);
this.lbl_title.Name = "lbl_title";
this.lbl_title.Size = new System.Drawing.Size(211, 182);
this.lbl_title.TabIndex = 0;
this.lbl_title.Text = "aaa";
//
// lbl
//
this.lbl.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbl.Location = new System.Drawing.Point(353, 142);
this.lbl.Name = "lbl";
this.lbl.Size = new System.Drawing.Size(121, 42);
this.lbl.TabIndex = 1;
this.lbl.Text = "WELCOME";
//
// timer1
//
this.timer1.Interval = 1000;
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// lbl_record
//
this.lbl_record.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbl_record.Location = new System.Drawing.Point(341, 218);
this.lbl_record.Name = "lbl_record";
this.lbl_record.Size = new System.Drawing.Size(133, 71);
this.lbl_record.TabIndex = 2;
this.lbl_record.Text = "lable";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(532, 529);
this.Controls.Add(this.lbl_record);
this.Controls.Add(this.lbl);
this.Controls.Add(this.lbl_title);
this.Name = "Form1";
this.Text = "Form1";
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lbl_title;
private System.Windows.Forms.Label lbl;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Label lbl_record;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -