namespace ProductionControl { partial class FrmLogin { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// 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(131, 181); this.btnLogin.Margin = new System.Windows.Forms.Padding(2); this.btnLogin.Name = "btnLogin"; this.btnLogin.Size = new System.Drawing.Size(75, 23); 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(203, 155); this.chkRememberPw.Margin = new System.Windows.Forms.Padding(2); this.chkRememberPw.Name = "chkRememberPw"; this.chkRememberPw.Size = new System.Drawing.Size(72, 16); 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(90, 155); this.chkRememberUserCode.Margin = new System.Windows.Forms.Padding(2); this.chkRememberUserCode.Name = "chkRememberUserCode"; this.chkRememberUserCode.Size = new System.Drawing.Size(84, 16); 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, 1); this.pictureBox1.Margin = new System.Windows.Forms.Padding(2); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(359, 95); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 24; this.pictureBox1.TabStop = false; // // txtUserPw // this.txtUserPw.Location = new System.Drawing.Point(90, 133); this.txtUserPw.Margin = new System.Windows.Forms.Padding(2); this.txtUserPw.MaxLength = 16; this.txtUserPw.Name = "txtUserPw"; this.txtUserPw.PasswordChar = '*'; this.txtUserPw.Size = new System.Drawing.Size(185, 21); this.txtUserPw.TabIndex = 2; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(45, 139); this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(29, 12); this.label2.TabIndex = 27; this.label2.Text = "密码"; // // txtUserCode // this.txtUserCode.Location = new System.Drawing.Point(90, 105); this.txtUserCode.Margin = new System.Windows.Forms.Padding(2); this.txtUserCode.Name = "txtUserCode"; this.txtUserCode.Size = new System.Drawing.Size(185, 21); this.txtUserCode.TabIndex = 1; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(45, 112); this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(29, 12); this.label1.TabIndex = 25; this.label1.Text = "帐号"; // // button2 // this.button2.Location = new System.Drawing.Point(281, 181); this.button2.Margin = new System.Windows.Forms.Padding(2); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(56, 23); 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(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption; this.ClientSize = new System.Drawing.Size(345, 207); 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.Margin = new System.Windows.Forms.Padding(2); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "FrmLogin"; this.ShowIcon = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "自动化视觉检测系统 - v1.2.4"; 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; } }