📄 form1.designer.cs
字号:
namespace WinAppTest02
{
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.lblInfo = new System.Windows.Forms.Label();
this.btnDateTime = new System.Windows.Forms.Button();
this.btnMath = new System.Windows.Forms.Button();
this.btnString = new System.Windows.Forms.Button();
this.btnRandom = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblInfo
//
this.lblInfo.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInfo.Location = new System.Drawing.Point(12, 9);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(448, 192);
this.lblInfo.TabIndex = 0;
//
// btnDateTime
//
this.btnDateTime.Location = new System.Drawing.Point(40, 216);
this.btnDateTime.Name = "btnDateTime";
this.btnDateTime.Size = new System.Drawing.Size(75, 32);
this.btnDateTime.TabIndex = 1;
this.btnDateTime.Text = "日期时间";
this.btnDateTime.UseVisualStyleBackColor = true;
this.btnDateTime.Click += new System.EventHandler(this.btnDateTime_Click);
//
// btnMath
//
this.btnMath.Location = new System.Drawing.Point(146, 216);
this.btnMath.Name = "btnMath";
this.btnMath.Size = new System.Drawing.Size(75, 32);
this.btnMath.TabIndex = 2;
this.btnMath.Text = "数学";
this.btnMath.UseVisualStyleBackColor = true;
this.btnMath.Click += new System.EventHandler(this.btnMath_Click);
//
// btnString
//
this.btnString.Location = new System.Drawing.Point(252, 216);
this.btnString.Name = "btnString";
this.btnString.Size = new System.Drawing.Size(75, 32);
this.btnString.TabIndex = 3;
this.btnString.Text = "字符串";
this.btnString.UseVisualStyleBackColor = true;
this.btnString.Click += new System.EventHandler(this.btnString_Click);
//
// btnRandom
//
this.btnRandom.Location = new System.Drawing.Point(358, 216);
this.btnRandom.Name = "btnRandom";
this.btnRandom.Size = new System.Drawing.Size(75, 32);
this.btnRandom.TabIndex = 4;
this.btnRandom.Text = "随机数";
this.btnRandom.UseVisualStyleBackColor = true;
this.btnRandom.Click += new System.EventHandler(this.btnRandom_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(472, 260);
this.Controls.Add(this.btnRandom);
this.Controls.Add(this.btnString);
this.Controls.Add(this.btnMath);
this.Controls.Add(this.btnDateTime);
this.Controls.Add(this.lblInfo);
this.Name = "Form1";
this.Text = "常用方法示例";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblInfo;
private System.Windows.Forms.Button btnDateTime;
private System.Windows.Forms.Button btnMath;
private System.Windows.Forms.Button btnString;
private System.Windows.Forms.Button btnRandom;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -