📄 frm_login.designer.cs
字号:
namespace RFID_CAR
{
partial class Frm_Login
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.btn_Login = new System.Windows.Forms.Button();
this.txt_Password = new System.Windows.Forms.TextBox();
this.cbx_Users = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(9, 70);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(78, 30);
this.label1.Text = "用户名:";
this.label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// label2
//
this.label2.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
this.label2.Location = new System.Drawing.Point(9, 114);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(78, 30);
this.label2.Text = "密 码:";
this.label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// btn_Login
//
this.btn_Login.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
this.btn_Login.Location = new System.Drawing.Point(52, 181);
this.btn_Login.Name = "btn_Login";
this.btn_Login.Size = new System.Drawing.Size(133, 38);
this.btn_Login.TabIndex = 5;
this.btn_Login.Text = "登陆";
this.btn_Login.Click += new System.EventHandler(this.btn_Login_Click);
//
// txt_Password
//
this.txt_Password.Location = new System.Drawing.Point(93, 114);
this.txt_Password.Name = "txt_Password";
this.txt_Password.PasswordChar = '*';
this.txt_Password.Size = new System.Drawing.Size(130, 21);
this.txt_Password.TabIndex = 6;
//
// cbx_Users
//
this.cbx_Users.Location = new System.Drawing.Point(93, 70);
this.cbx_Users.Name = "cbx_Users";
this.cbx_Users.Size = new System.Drawing.Size(130, 22);
this.cbx_Users.TabIndex = 7;
this.cbx_Users.SelectedIndexChanged += new System.EventHandler(this.cbx_Users_SelectedIndexChanged);
//
// Frm_Login
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.cbx_Users);
this.Controls.Add(this.txt_Password);
this.Controls.Add(this.btn_Login);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Menu = this.mainMenu1;
this.Name = "Frm_Login";
this.Text = "用户登陆";
this.Load += new System.EventHandler(this.Frm_Login_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btn_Login;
private System.Windows.Forms.TextBox txt_Password;
private System.Windows.Forms.ComboBox cbx_Users;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -