📄 frmlogin.designer.cs
字号:
namespace CRM
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLogin));
this.btnLogin = new System.Windows.Forms.Button();
this.cboxUName = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.labURight = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtPwd = new System.Windows.Forms.TextBox();
this.btnExit = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// btnLogin
//
this.btnLogin.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnLogin.Location = new System.Drawing.Point(71, 99);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(75, 23);
this.btnLogin.TabIndex = 10;
this.btnLogin.Text = "确定";
this.btnLogin.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// cboxUName
//
this.cboxUName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboxUName.FormattingEnabled = true;
this.cboxUName.Location = new System.Drawing.Point(134, 30);
this.cboxUName.MaxDropDownItems = 100;
this.cboxUName.Name = "cboxUName";
this.cboxUName.Size = new System.Drawing.Size(114, 20);
this.cboxUName.TabIndex = 8;
this.cboxUName.SelectedIndexChanged += new System.EventHandler(this.cboxUName_SelectedIndexChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.ForeColor = System.Drawing.Color.Black;
this.label1.Location = new System.Drawing.Point(63, 33);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 14;
this.label1.Text = "用户名称:";
//
// labURight
//
this.labURight.AutoSize = true;
this.labURight.BackColor = System.Drawing.Color.Transparent;
this.labURight.ForeColor = System.Drawing.Color.Black;
this.labURight.Location = new System.Drawing.Point(189, 138);
this.labURight.Name = "labURight";
this.labURight.Size = new System.Drawing.Size(0, 12);
this.labURight.TabIndex = 13;
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Transparent;
this.label2.ForeColor = System.Drawing.Color.Black;
this.label2.Location = new System.Drawing.Point(63, 66);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 15;
this.label2.Text = "用户密码:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.Transparent;
this.label3.ForeColor = System.Drawing.Color.Black;
this.label3.Location = new System.Drawing.Point(46, 138);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(137, 12);
this.label3.TabIndex = 12;
this.label3.Text = "您所选择的用户权限为:";
//
// txtPwd
//
this.txtPwd.Location = new System.Drawing.Point(134, 63);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(114, 21);
this.txtPwd.TabIndex = 9;
//
// btnExit
//
this.btnExit.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnExit.Location = new System.Drawing.Point(163, 99);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(75, 23);
this.btnExit.TabIndex = 11;
this.btnExit.Text = "取消";
this.btnExit.TextImageRelation = System.Windows.Forms.TextImageRelation.TextBeforeImage;
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.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(307, 181);
this.Controls.Add(this.btnLogin);
this.Controls.Add(this.cboxUName);
this.Controls.Add(this.label1);
this.Controls.Add(this.labURight);
this.Controls.Add(this.label2);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtPwd);
this.Controls.Add(this.btnExit);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmLogin";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "用户登录";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmLogin_FormClosing);
this.Load += new System.EventHandler(this.frmLogin_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.ComboBox cboxUName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labURight;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.Button btnExit;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -