banboshi_V1/halftoneproject-master/Code/FrmLogin.Designer.cs
2023-10-31 13:19:29 +08:00

172 lines
7.8 KiB
C#

namespace ProductionControl
{
partial class FrmLogin
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmLogin));
this.btnLogin = new System.Windows.Forms.Button();
this.chkRememberPw = new System.Windows.Forms.CheckBox();
this.chkRememberUserCode = new System.Windows.Forms.CheckBox();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.txtUserPw = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtUserCode = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// btnLogin
//
this.btnLogin.Location = new System.Drawing.Point(197, 272);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(112, 35);
this.btnLogin.TabIndex = 5;
this.btnLogin.Text = "登录";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// chkRememberPw
//
this.chkRememberPw.AutoSize = true;
this.chkRememberPw.Location = new System.Drawing.Point(304, 233);
this.chkRememberPw.Name = "chkRememberPw";
this.chkRememberPw.Size = new System.Drawing.Size(106, 22);
this.chkRememberPw.TabIndex = 3;
this.chkRememberPw.Text = "记住密码";
this.chkRememberPw.UseVisualStyleBackColor = true;
this.chkRememberPw.CheckedChanged += new System.EventHandler(this.chkRememberPw_CheckedChanged);
//
// chkRememberUserCode
//
this.chkRememberUserCode.AutoSize = true;
this.chkRememberUserCode.Location = new System.Drawing.Point(135, 233);
this.chkRememberUserCode.Name = "chkRememberUserCode";
this.chkRememberUserCode.Size = new System.Drawing.Size(124, 22);
this.chkRememberUserCode.TabIndex = 4;
this.chkRememberUserCode.Text = "记住用户名";
this.chkRememberUserCode.UseVisualStyleBackColor = true;
this.chkRememberUserCode.CheckedChanged += new System.EventHandler(this.chkRememberUserCode_CheckedChanged);
//
// pictureBox1
//
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(0, 2);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(539, 142);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 24;
this.pictureBox1.TabStop = false;
//
// txtUserPw
//
this.txtUserPw.Location = new System.Drawing.Point(135, 199);
this.txtUserPw.MaxLength = 16;
this.txtUserPw.Name = "txtUserPw";
this.txtUserPw.PasswordChar = '*';
this.txtUserPw.Size = new System.Drawing.Size(275, 28);
this.txtUserPw.TabIndex = 2;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(68, 209);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(44, 18);
this.label2.TabIndex = 27;
this.label2.Text = "密码";
//
// txtUserCode
//
this.txtUserCode.Location = new System.Drawing.Point(135, 158);
this.txtUserCode.Name = "txtUserCode";
this.txtUserCode.Size = new System.Drawing.Size(275, 28);
this.txtUserCode.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(68, 168);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 18);
this.label1.TabIndex = 25;
this.label1.Text = "帐号";
//
// button2
//
this.button2.Location = new System.Drawing.Point(422, 272);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(84, 35);
this.button2.TabIndex = 9;
this.button2.Text = "初始DB";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// FrmLogin
//
this.AcceptButton = this.btnLogin;
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
this.ClientSize = new System.Drawing.Size(518, 311);
this.Controls.Add(this.txtUserPw);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtUserCode);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.chkRememberUserCode);
this.Controls.Add(this.chkRememberPw);
this.Controls.Add(this.button2);
this.Controls.Add(this.btnLogin);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmLogin";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "自动化视觉检测系统 - v1.0";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmLogin_FormClosed);
this.Load += new System.EventHandler(this.FrmLogin_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.CheckBox chkRememberPw;
private System.Windows.Forms.CheckBox chkRememberUserCode;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.TextBox txtUserPw;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox txtUserCode;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button2;
}
}