namespace MesWork { partial class Frm_Login { private System.ComponentModel.IContainer components = null; protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code private void InitializeComponent() { this.pnl_Card = new System.Windows.Forms.Panel(); this.lbl_Title = new System.Windows.Forms.Label(); this.lbl_SubTitle = new System.Windows.Forms.Label(); this.lbl_User = new System.Windows.Forms.Label(); this.txt_LoginID = new System.Windows.Forms.TextBox(); this.lbl_Pwd = new System.Windows.Forms.Label(); this.txt_userPassword = new System.Windows.Forms.TextBox(); this.btn_Login = new System.Windows.Forms.Button(); this.btn_Cancel = new System.Windows.Forms.Button(); this.lbl_Msg = new System.Windows.Forms.Label(); this.pnl_Card.SuspendLayout(); this.SuspendLayout(); // // pnl_Card - 白色登录卡片 // this.pnl_Card.BackColor = System.Drawing.Color.White; this.pnl_Card.Location = new System.Drawing.Point(310, 180); this.pnl_Card.Name = "pnl_Card"; this.pnl_Card.Size = new System.Drawing.Size(400, 380); this.pnl_Card.TabIndex = 0; this.pnl_Card.Paint += new System.Windows.Forms.PaintEventHandler(this.pnl_Card_Paint); // // lbl_Title - 系统图标+名称 // this.lbl_Title.Font = new System.Drawing.Font("微软雅黑", 20F, System.Drawing.FontStyle.Bold); this.lbl_Title.ForeColor = System.Drawing.Color.FromArgb(30, 58, 95); this.lbl_Title.Location = new System.Drawing.Point(20, 30); this.lbl_Title.Name = "lbl_Title"; this.lbl_Title.Size = new System.Drawing.Size(360, 40); this.lbl_Title.TabIndex = 0; this.lbl_Title.Text = "⚖ 称重数据采集分析"; this.lbl_Title.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lbl_SubTitle // this.lbl_SubTitle.Font = new System.Drawing.Font("微软雅黑", 11F); this.lbl_SubTitle.ForeColor = System.Drawing.Color.FromArgb(107, 114, 128); this.lbl_SubTitle.Location = new System.Drawing.Point(20, 72); this.lbl_SubTitle.Name = "lbl_SubTitle"; this.lbl_SubTitle.Size = new System.Drawing.Size(360, 24); this.lbl_SubTitle.TabIndex = 1; this.lbl_SubTitle.Text = "管理系统"; this.lbl_SubTitle.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lbl_User // this.lbl_User.Font = new System.Drawing.Font("微软雅黑", 10F); this.lbl_User.ForeColor = System.Drawing.Color.FromArgb(55, 65, 81); this.lbl_User.Location = new System.Drawing.Point(40, 120); this.lbl_User.Name = "lbl_User"; this.lbl_User.Size = new System.Drawing.Size(60, 24); this.lbl_User.TabIndex = 2; this.lbl_User.Text = "👤 用户名"; // // txt_LoginID // this.txt_LoginID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txt_LoginID.Font = new System.Drawing.Font("微软雅黑", 12F); this.txt_LoginID.Location = new System.Drawing.Point(40, 148); this.txt_LoginID.Name = "txt_LoginID"; this.txt_LoginID.Size = new System.Drawing.Size(320, 29); this.txt_LoginID.TabIndex = 1; this.txt_LoginID.Text = "admin"; this.txt_LoginID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_LoginID_KeyDown); // // lbl_Pwd // this.lbl_Pwd.Font = new System.Drawing.Font("微软雅黑", 10F); this.lbl_Pwd.ForeColor = System.Drawing.Color.FromArgb(55, 65, 81); this.lbl_Pwd.Location = new System.Drawing.Point(40, 195); this.lbl_Pwd.Name = "lbl_Pwd"; this.lbl_Pwd.Size = new System.Drawing.Size(60, 24); this.lbl_Pwd.TabIndex = 4; this.lbl_Pwd.Text = "🔒 密码"; // // txt_userPassword // this.txt_userPassword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txt_userPassword.Font = new System.Drawing.Font("微软雅黑", 12F); this.txt_userPassword.Location = new System.Drawing.Point(40, 223); this.txt_userPassword.Name = "txt_userPassword"; this.txt_userPassword.PasswordChar = '*'; this.txt_userPassword.Size = new System.Drawing.Size(320, 29); this.txt_userPassword.TabIndex = 2; this.txt_userPassword.Text = "admin"; this.txt_userPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_userPassword_KeyDown); // // btn_Login - Steel Blue 主按钮 // this.btn_Login.BackColor = System.Drawing.Color.FromArgb(74, 144, 217); this.btn_Login.Cursor = System.Windows.Forms.Cursors.Hand; this.btn_Login.FlatAppearance.BorderSize = 0; this.btn_Login.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btn_Login.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold); this.btn_Login.ForeColor = System.Drawing.Color.White; this.btn_Login.Location = new System.Drawing.Point(40, 280); this.btn_Login.Name = "btn_Login"; this.btn_Login.Size = new System.Drawing.Size(150, 42); this.btn_Login.TabIndex = 3; this.btn_Login.Text = "登 录"; this.btn_Login.UseVisualStyleBackColor = false; this.btn_Login.Click += new System.EventHandler(this.btn_Login_Click); // // btn_Cancel - 灰色边框按钮 // this.btn_Cancel.BackColor = System.Drawing.Color.White; this.btn_Cancel.Cursor = System.Windows.Forms.Cursors.Hand; this.btn_Cancel.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(209, 213, 219); this.btn_Cancel.FlatAppearance.BorderSize = 1; this.btn_Cancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btn_Cancel.Font = new System.Drawing.Font("微软雅黑", 12F); this.btn_Cancel.ForeColor = System.Drawing.Color.FromArgb(107, 114, 128); this.btn_Cancel.Location = new System.Drawing.Point(210, 280); this.btn_Cancel.Name = "btn_Cancel"; this.btn_Cancel.Size = new System.Drawing.Size(150, 42); this.btn_Cancel.TabIndex = 4; this.btn_Cancel.Text = "取 消"; this.btn_Cancel.UseVisualStyleBackColor = false; this.btn_Cancel.Click += new System.EventHandler(this.btn_Cancel_Click); // // lbl_Msg // this.lbl_Msg.Font = new System.Drawing.Font("微软雅黑", 9F); this.lbl_Msg.ForeColor = System.Drawing.Color.FromArgb(239, 68, 68); this.lbl_Msg.Location = new System.Drawing.Point(40, 332); this.lbl_Msg.Name = "lbl_Msg"; this.lbl_Msg.Size = new System.Drawing.Size(320, 24); this.lbl_Msg.TabIndex = 8; this.lbl_Msg.Visible = false; // // 添加控件到卡片 // this.pnl_Card.Controls.Add(this.lbl_Title); this.pnl_Card.Controls.Add(this.lbl_SubTitle); this.pnl_Card.Controls.Add(this.lbl_User); this.pnl_Card.Controls.Add(this.txt_LoginID); this.pnl_Card.Controls.Add(this.lbl_Pwd); this.pnl_Card.Controls.Add(this.txt_userPassword); this.pnl_Card.Controls.Add(this.btn_Login); this.pnl_Card.Controls.Add(this.btn_Cancel); this.pnl_Card.Controls.Add(this.lbl_Msg); // // Frm_Login // this.AcceptButton = this.btn_Login; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.BackColor = System.Drawing.Color.FromArgb(240, 244, 248); this.ClientSize = new System.Drawing.Size(1024, 720); this.Controls.Add(this.pnl_Card); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Name = "Frm_Login"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "称重数据采集分析管理系统 - 登录"; this.pnl_Card.ResumeLayout(false); this.pnl_Card.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.Panel pnl_Card; private System.Windows.Forms.Label lbl_Title; private System.Windows.Forms.Label lbl_SubTitle; private System.Windows.Forms.Label lbl_User; private System.Windows.Forms.TextBox txt_LoginID; private System.Windows.Forms.Label lbl_Pwd; private System.Windows.Forms.TextBox txt_userPassword; private System.Windows.Forms.Button btn_Login; private System.Windows.Forms.Button btn_Cancel; private System.Windows.Forms.Label lbl_Msg; } }