📄 frmenter.designer.cs
字号:
namespace Hotel.UI
{
partial class frmEnter
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmEnter));
this.lblName = new System.Windows.Forms.Label();
this.lblPwd = new System.Windows.Forms.Label();
this.cboName = new System.Windows.Forms.ComboBox();
this.txtPwd = new System.Windows.Forms.TextBox();
this.btnExit = new System.Windows.Forms.Button();
this.btnLogin = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblName
//
this.lblName.AutoSize = true;
this.lblName.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblName.Location = new System.Drawing.Point(46, 79);
this.lblName.Name = "lblName";
this.lblName.Size = new System.Drawing.Size(77, 14);
this.lblName.TabIndex = 0;
this.lblName.Text = "用户编号:";
//
// lblPwd
//
this.lblPwd.AutoSize = true;
this.lblPwd.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lblPwd.Location = new System.Drawing.Point(46, 111);
this.lblPwd.Name = "lblPwd";
this.lblPwd.Size = new System.Drawing.Size(77, 14);
this.lblPwd.TabIndex = 0;
this.lblPwd.Text = "用户密码:";
//
// cboName
//
this.cboName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboName.FormattingEnabled = true;
this.cboName.Location = new System.Drawing.Point(129, 78);
this.cboName.Name = "cboName";
this.cboName.Size = new System.Drawing.Size(134, 20);
this.cboName.TabIndex = 2;
this.cboName.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.cboName_KeyPress);
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(129, 110);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(134, 21);
this.txtPwd.TabIndex = 1;
this.txtPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPwd_KeyPress);
//
// btnExit
//
this.btnExit.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnExit.BackgroundImage")));
this.btnExit.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnExit.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnExit.Location = new System.Drawing.Point(181, 154);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(82, 28);
this.btnExit.TabIndex = 6;
this.btnExit.Text = "退出(&X)";
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnLogin
//
this.btnLogin.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnLogin.BackgroundImage")));
this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.btnLogin.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnLogin.Location = new System.Drawing.Point(49, 154);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(80, 28);
this.btnLogin.TabIndex = 5;
this.btnLogin.Text = "登陆(&E)";
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// label1
//
this.label1.BackColor = System.Drawing.Color.LightSteelBlue;
this.label1.Font = new System.Drawing.Font("宋体", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.MediumBlue;
this.label1.Location = new System.Drawing.Point(2, 3);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(312, 61);
this.label1.TabIndex = 7;
this.label1.Text = "酒店●管理";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// frmEnter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightSteelBlue;
this.ClientSize = new System.Drawing.Size(315, 203);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnExit);
this.Controls.Add(this.btnLogin);
this.Controls.Add(this.cboName);
this.Controls.Add(this.txtPwd);
this.Controls.Add(this.lblPwd);
this.Controls.Add(this.lblName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmEnter";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登录";
this.Load += new System.EventHandler(this.frmEnter_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblName;
private System.Windows.Forms.Label lblPwd;
private System.Windows.Forms.ComboBox cboName;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -