📄 form1.designer.cs
字号:
namespace WinAppTest03
{
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.lblInfo1 = new System.Windows.Forms.Label();
this.lblInfo2 = new System.Windows.Forms.Label();
this.txtInfo1 = new System.Windows.Forms.TextBox();
this.txtInfo2 = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lblInfo1
//
this.lblInfo1.AutoSize = true;
this.lblInfo1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInfo1.Font = new System.Drawing.Font("华文行楷", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblInfo1.Location = new System.Drawing.Point(54, 31);
this.lblInfo1.Name = "lblInfo1";
this.lblInfo1.Size = new System.Drawing.Size(76, 31);
this.lblInfo1.TabIndex = 0;
this.lblInfo1.Text = "标签1";
//
// lblInfo2
//
this.lblInfo2.AutoSize = true;
this.lblInfo2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.lblInfo2.Font = new System.Drawing.Font("华文彩云", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblInfo2.Location = new System.Drawing.Point(184, 31);
this.lblInfo2.Name = "lblInfo2";
this.lblInfo2.Size = new System.Drawing.Size(83, 30);
this.lblInfo2.TabIndex = 1;
this.lblInfo2.Text = "标签2";
//
// txtInfo1
//
this.txtInfo1.Font = new System.Drawing.Font("华文行楷", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtInfo1.Location = new System.Drawing.Point(59, 75);
this.txtInfo1.Name = "txtInfo1";
this.txtInfo1.Size = new System.Drawing.Size(100, 37);
this.txtInfo1.TabIndex = 2;
this.txtInfo1.Text = "文本1";
//
// txtInfo2
//
this.txtInfo2.Font = new System.Drawing.Font("幼圆", 16.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtInfo2.Location = new System.Drawing.Point(189, 75);
this.txtInfo2.Name = "txtInfo2";
this.txtInfo2.Size = new System.Drawing.Size(100, 37);
this.txtInfo2.TabIndex = 3;
this.txtInfo2.Text = "文本2";
//
// button1
//
this.button1.Location = new System.Drawing.Point(134, 146);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 29);
this.button1.TabIndex = 4;
this.button1.Text = "易位";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(342, 210);
this.Controls.Add(this.button1);
this.Controls.Add(this.txtInfo2);
this.Controls.Add(this.txtInfo1);
this.Controls.Add(this.lblInfo2);
this.Controls.Add(this.lblInfo1);
this.Name = "Form1";
this.Text = "控件易位";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblInfo1;
private System.Windows.Forms.Label lblInfo2;
private System.Windows.Forms.TextBox txtInfo1;
private System.Windows.Forms.TextBox txtInfo2;
private System.Windows.Forms.Button button1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -