📄 frmsetup.designer.cs
字号:
namespace FlyMessage
{
partial class FrmSetUp
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtUserName = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.txtWorkGroup = new System.Windows.Forms.TextBox();
this.btnConfirm = new System.Windows.Forms.Button();
this.btnApp = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtUserName);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(130, 55);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "用户名:";
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(16, 20);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(100, 21);
this.txtUserName.TabIndex = 0;
this.txtUserName.Text = "金保涛";
//
// groupBox2
//
this.groupBox2.Controls.Add(this.txtWorkGroup);
this.groupBox2.Location = new System.Drawing.Point(12, 73);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(130, 51);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "工作组:";
//
// txtWorkGroup
//
this.txtWorkGroup.Location = new System.Drawing.Point(16, 20);
this.txtWorkGroup.Name = "txtWorkGroup";
this.txtWorkGroup.Size = new System.Drawing.Size(100, 21);
this.txtWorkGroup.TabIndex = 0;
this.txtWorkGroup.Text = ".net";
//
// btnConfirm
//
this.btnConfirm.Location = new System.Drawing.Point(12, 142);
this.btnConfirm.Name = "btnConfirm";
this.btnConfirm.Size = new System.Drawing.Size(75, 23);
this.btnConfirm.TabIndex = 2;
this.btnConfirm.Text = "确定";
this.btnConfirm.UseVisualStyleBackColor = true;
this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
//
// btnApp
//
this.btnApp.Location = new System.Drawing.Point(94, 142);
this.btnApp.Name = "btnApp";
this.btnApp.Size = new System.Drawing.Size(75, 23);
this.btnApp.TabIndex = 3;
this.btnApp.Text = "应用";
this.btnApp.UseVisualStyleBackColor = true;
this.btnApp.Click += new System.EventHandler(this.btnApp_Click);
//
// FrmSetUp
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.btnApp);
this.Controls.Add(this.btnConfirm);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.Name = "FrmSetUp";
this.Text = "FrmSetUp";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
public System.Windows.Forms.TextBox txtUserName;
private System.Windows.Forms.GroupBox groupBox2;
public System.Windows.Forms.TextBox txtWorkGroup;
private System.Windows.Forms.Button btnConfirm;
private System.Windows.Forms.Button btnApp;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -