📄 form1.designer.cs
字号:
namespace XT14_5
{
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.label1 = new System.Windows.Forms.Label();
this.txtS = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtD = new System.Windows.Forms.TextBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnQuit = new System.Windows.Forms.Button();
this.lblMsg = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(55, 15);
this.label1.TabIndex = 0;
this.label1.Text = "label1";
//
// txtS
//
this.txtS.Location = new System.Drawing.Point(93, 16);
this.txtS.Name = "txtS";
this.txtS.Size = new System.Drawing.Size(270, 25);
this.txtS.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 67);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(55, 15);
this.label2.TabIndex = 2;
this.label2.Text = "label2";
//
// txtD
//
this.txtD.Location = new System.Drawing.Point(93, 64);
this.txtD.Name = "txtD";
this.txtD.Size = new System.Drawing.Size(270, 25);
this.txtD.TabIndex = 3;
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(125, 137);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "button1";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnQuit
//
this.btnQuit.Location = new System.Drawing.Point(224, 137);
this.btnQuit.Name = "btnQuit";
this.btnQuit.Size = new System.Drawing.Size(75, 23);
this.btnQuit.TabIndex = 5;
this.btnQuit.Text = "button2";
this.btnQuit.UseVisualStyleBackColor = true;
this.btnQuit.Click += new System.EventHandler(this.btnQuit_Click);
//
// lblMsg
//
this.lblMsg.AutoSize = true;
this.lblMsg.Location = new System.Drawing.Point(12, 111);
this.lblMsg.Name = "lblMsg";
this.lblMsg.Size = new System.Drawing.Size(55, 15);
this.lblMsg.TabIndex = 6;
this.lblMsg.Text = "label3";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(402, 184);
this.Controls.Add(this.lblMsg);
this.Controls.Add(this.btnQuit);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.txtD);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtS);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtS;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtD;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnQuit;
private System.Windows.Forms.Label lblMsg;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -