157 lines
6.8 KiB
C#
157 lines
6.8 KiB
C#
namespace AGVSystem
|
||
{
|
||
partial class logon
|
||
{
|
||
/// <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(logon));
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.panel2 = new System.Windows.Forms.Panel();
|
||
this.label3 = new System.Windows.Forms.Label();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.txtName = new System.Windows.Forms.TextBox();
|
||
this.txtPW = new System.Windows.Forms.TextBox();
|
||
this.button1 = new System.Windows.Forms.Button();
|
||
this.panel1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.Controls.Add(this.panel2);
|
||
this.panel1.Controls.Add(this.label3);
|
||
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.panel1.Location = new System.Drawing.Point(0, 0);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(425, 58);
|
||
this.panel1.TabIndex = 1;
|
||
//
|
||
// panel2
|
||
//
|
||
this.panel2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel2.BackgroundImage")));
|
||
this.panel2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
|
||
this.panel2.Location = new System.Drawing.Point(-1, -1);
|
||
this.panel2.Name = "panel2";
|
||
this.panel2.Size = new System.Drawing.Size(111, 68);
|
||
this.panel2.TabIndex = 2;
|
||
//
|
||
// label3
|
||
//
|
||
this.label3.AutoSize = true;
|
||
this.label3.Font = new System.Drawing.Font("微软雅黑", 15.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label3.ForeColor = System.Drawing.Color.Chocolate;
|
||
this.label3.Location = new System.Drawing.Point(129, 21);
|
||
this.label3.Name = "label3";
|
||
this.label3.Size = new System.Drawing.Size(167, 28);
|
||
this.label3.TabIndex = 1;
|
||
this.label3.Text = "AGV 管 理 系 统";
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label1.Location = new System.Drawing.Point(81, 102);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(63, 14);
|
||
this.label1.TabIndex = 2;
|
||
this.label1.Text = "用户名:";
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.label2.Location = new System.Drawing.Point(81, 148);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(63, 14);
|
||
this.label2.TabIndex = 3;
|
||
this.label2.Text = "密 码 :";
|
||
//
|
||
// txtName
|
||
//
|
||
this.txtName.Location = new System.Drawing.Point(154, 95);
|
||
this.txtName.Name = "txtName";
|
||
this.txtName.Size = new System.Drawing.Size(145, 21);
|
||
this.txtName.TabIndex = 4;
|
||
//
|
||
// txtPW
|
||
//
|
||
this.txtPW.Location = new System.Drawing.Point(154, 141);
|
||
this.txtPW.Name = "txtPW";
|
||
this.txtPW.PasswordChar = '*';
|
||
this.txtPW.Size = new System.Drawing.Size(145, 21);
|
||
this.txtPW.TabIndex = 5;
|
||
this.txtPW.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPW_KeyDown);
|
||
//
|
||
// button1
|
||
//
|
||
this.button1.Location = new System.Drawing.Point(254, 225);
|
||
this.button1.Name = "button1";
|
||
this.button1.Size = new System.Drawing.Size(85, 31);
|
||
this.button1.TabIndex = 0;
|
||
this.button1.Text = "确 认";
|
||
this.button1.UseVisualStyleBackColor = true;
|
||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||
//
|
||
// logon
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.BackColor = System.Drawing.SystemColors.Control;
|
||
this.ClientSize = new System.Drawing.Size(425, 290);
|
||
this.Controls.Add(this.button1);
|
||
this.Controls.Add(this.txtPW);
|
||
this.Controls.Add(this.txtName);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.panel1);
|
||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "logon";
|
||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
this.Text = "管理员登录";
|
||
this.TopMost = true;
|
||
this.Load += new System.EventHandler(this.log_Load);
|
||
this.panel1.ResumeLayout(false);
|
||
this.panel1.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.Panel panel1;
|
||
private System.Windows.Forms.Button button1;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.TextBox txtName;
|
||
private System.Windows.Forms.TextBox txtPW;
|
||
private System.Windows.Forms.Label label3;
|
||
private System.Windows.Forms.Panel panel2;
|
||
}
|
||
} |