📄 frmuserlogin.designer.cs
字号:
namespace houseAgency
{
partial class frmUserLogin
{
/// <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.gbLogin = new System.Windows.Forms.GroupBox();
this.cobName = new System.Windows.Forms.ComboBox();
this.txtPwd = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.btnLogin = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.gbLogin.SuspendLayout();
this.SuspendLayout();
//
// gbLogin
//
this.gbLogin.Controls.Add(this.cobName);
this.gbLogin.Controls.Add(this.txtPwd);
this.gbLogin.Controls.Add(this.label2);
this.gbLogin.Controls.Add(this.label1);
this.gbLogin.Location = new System.Drawing.Point(14, 4);
this.gbLogin.Name = "gbLogin";
this.gbLogin.Size = new System.Drawing.Size(255, 85);
this.gbLogin.TabIndex = 0;
this.gbLogin.TabStop = false;
this.gbLogin.Text = "用户登录";
//
// cobName
//
this.cobName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cobName.FormattingEnabled = true;
this.cobName.Location = new System.Drawing.Point(104, 21);
this.cobName.Name = "cobName";
this.cobName.Size = new System.Drawing.Size(141, 20);
this.cobName.TabIndex = 10;
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(104, 49);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(141, 21);
this.txtPwd.TabIndex = 3;
this.txtPwd.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPwd_KeyPress);
this.txtPwd.TextChanged += new System.EventHandler(this.txtPwd_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(26, 48);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 1;
this.label2.Text = "密 码:";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(26, 21);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 0;
this.label1.Text = "用户名:";
//
// btnLogin
//
this.btnLogin.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnLogin.Location = new System.Drawing.Point(91, 103);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(75, 23);
this.btnLogin.TabIndex = 4;
this.btnLogin.Text = "登录";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(184, 103);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "清空";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// frmUserLogin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(283, 133);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnLogin);
this.Controls.Add(this.gbLogin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmUserLogin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登录窗体";
this.Load += new System.EventHandler(this.frmUserLogin_Load);
this.gbLogin.ResumeLayout(false);
this.gbLogin.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox gbLogin;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.ComboBox cobName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -