📄 frmlogin.designer.cs
字号:
namespace HRP
{
partial class frmLogin
{
/// <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.btnEnter = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.txtUserName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtUserPwd = new System.Windows.Forms.TextBox();
this.btnExit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnEnter
//
this.btnEnter.Location = new System.Drawing.Point(88, 154);
this.btnEnter.Name = "btnEnter";
this.btnEnter.Size = new System.Drawing.Size(75, 23);
this.btnEnter.TabIndex = 0;
this.btnEnter.Text = "登录";
this.btnEnter.UseVisualStyleBackColor = true;
this.btnEnter.Click += new System.EventHandler(this.btnEnter_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(76, 59);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 1;
this.label1.Text = "用户名";
//
// txtUserName
//
this.txtUserName.Location = new System.Drawing.Point(135, 56);
this.txtUserName.Name = "txtUserName";
this.txtUserName.Size = new System.Drawing.Size(154, 21);
this.txtUserName.TabIndex = 2;
this.txtUserName.Text = "mr";
this.txtUserName.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtUserName_KeyUp);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(76, 106);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 1;
this.label2.Text = "密 码";
//
// txtUserPwd
//
this.txtUserPwd.Location = new System.Drawing.Point(135, 103);
this.txtUserPwd.Name = "txtUserPwd";
this.txtUserPwd.PasswordChar = '*';
this.txtUserPwd.Size = new System.Drawing.Size(154, 21);
this.txtUserPwd.TabIndex = 2;
this.txtUserPwd.Text = "mrsoft";
this.txtUserPwd.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtUserPwd_KeyUp);
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(213, 154);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 0;
this.btnExit.Text = "退出";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// frmLogin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(369, 215);
this.Controls.Add(this.txtUserPwd);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtUserName);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.btnEnter);
this.Name = "frmLogin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "【登录】";
this.Load += new System.EventHandler(this.frmLogin_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnEnter;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtUserName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtUserPwd;
private System.Windows.Forms.Button btnExit;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -