first commit
This commit is contained in:
Generated
+178
@@ -0,0 +1,178 @@
|
||||
namespace LargeSquareOne
|
||||
{
|
||||
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.txt_LoginPwd = new System.Windows.Forms.TextBox();
|
||||
this.txt_LoginName = new System.Windows.Forms.TextBox();
|
||||
this.btn_Login = new System.Windows.Forms.Button();
|
||||
this.btn_Close = new System.Windows.Forms.Button();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox3 = new System.Windows.Forms.PictureBox();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// txt_LoginPwd
|
||||
//
|
||||
this.txt_LoginPwd.BackColor = System.Drawing.Color.White;
|
||||
this.txt_LoginPwd.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.txt_LoginPwd.Font = new System.Drawing.Font("微软雅黑", 15F);
|
||||
this.txt_LoginPwd.ForeColor = System.Drawing.Color.Black;
|
||||
this.txt_LoginPwd.Location = new System.Drawing.Point(220, 167);
|
||||
this.txt_LoginPwd.Name = "txt_LoginPwd";
|
||||
this.txt_LoginPwd.PasswordChar = '*';
|
||||
this.txt_LoginPwd.Size = new System.Drawing.Size(203, 27);
|
||||
this.txt_LoginPwd.TabIndex = 1;
|
||||
//
|
||||
// txt_LoginName
|
||||
//
|
||||
this.txt_LoginName.BackColor = System.Drawing.Color.White;
|
||||
this.txt_LoginName.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
||||
this.txt_LoginName.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.txt_LoginName.ForeColor = System.Drawing.Color.Black;
|
||||
this.txt_LoginName.Location = new System.Drawing.Point(220, 106);
|
||||
this.txt_LoginName.Name = "txt_LoginName";
|
||||
this.txt_LoginName.Size = new System.Drawing.Size(203, 27);
|
||||
this.txt_LoginName.TabIndex = 0;
|
||||
this.txt_LoginName.Text = "Admin";
|
||||
this.txt_LoginName.DoubleClick += new System.EventHandler(this.txt_LoginName_DoubleClick);
|
||||
this.txt_LoginName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_LoginName_KeyDown);
|
||||
//
|
||||
// btn_Login
|
||||
//
|
||||
this.btn_Login.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(29)))), ((int)(((byte)(85)))));
|
||||
this.btn_Login.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
|
||||
this.btn_Login.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
|
||||
this.btn_Login.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btn_Login.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.btn_Login.ForeColor = System.Drawing.Color.White;
|
||||
this.btn_Login.Location = new System.Drawing.Point(220, 233);
|
||||
this.btn_Login.Name = "btn_Login";
|
||||
this.btn_Login.Size = new System.Drawing.Size(149, 43);
|
||||
this.btn_Login.TabIndex = 2;
|
||||
this.btn_Login.Text = "登 录";
|
||||
this.btn_Login.UseVisualStyleBackColor = false;
|
||||
this.btn_Login.Click += new System.EventHandler(this.btn_Login_Click);
|
||||
this.btn_Login.KeyDown += new System.Windows.Forms.KeyEventHandler(this.btn_Login_KeyDown);
|
||||
//
|
||||
// btn_Close
|
||||
//
|
||||
this.btn_Close.BackColor = System.Drawing.Color.Transparent;
|
||||
this.btn_Close.FlatAppearance.BorderSize = 0;
|
||||
this.btn_Close.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
|
||||
this.btn_Close.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
|
||||
this.btn_Close.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
||||
this.btn_Close.Font = new System.Drawing.Font("微软雅黑", 14F);
|
||||
this.btn_Close.ForeColor = System.Drawing.Color.Black;
|
||||
this.btn_Close.Location = new System.Drawing.Point(417, 2);
|
||||
this.btn_Close.Name = "btn_Close";
|
||||
this.btn_Close.Size = new System.Drawing.Size(32, 34);
|
||||
this.btn_Close.TabIndex = 3;
|
||||
this.btn_Close.Text = "X";
|
||||
this.btn_Close.UseVisualStyleBackColor = false;
|
||||
this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pictureBox1.Image = global::LargeSquareOne.Properties.Resources.用户;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(180, 101);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(32, 32);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox1.TabIndex = 8;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pictureBox2.Image = global::LargeSquareOne.Properties.Resources._25_密码;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(180, 161);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(32, 32);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 9;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BackColor = System.Drawing.Color.Transparent;
|
||||
this.pictureBox3.Image = global::LargeSquareOne.Properties.Resources.yiweidongli;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(3, 2);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
this.pictureBox3.Size = new System.Drawing.Size(153, 34);
|
||||
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox3.TabIndex = 10;
|
||||
this.pictureBox3.TabStop = false;
|
||||
//
|
||||
// FrmLogin
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.BackgroundImage = global::LargeSquareOne.Properties.Resources.Login1;
|
||||
this.ClientSize = new System.Drawing.Size(451, 319);
|
||||
this.Controls.Add(this.pictureBox3);
|
||||
this.Controls.Add(this.pictureBox2);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.Controls.Add(this.btn_Close);
|
||||
this.Controls.Add(this.txt_LoginPwd);
|
||||
this.Controls.Add(this.txt_LoginName);
|
||||
this.Controls.Add(this.btn_Login);
|
||||
this.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
||||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||||
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
|
||||
this.Name = "FrmLogin";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.Text = "FrmLogin";
|
||||
this.Load += new System.EventHandler(this.FrmLogin_Load);
|
||||
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Form_MouseDown);
|
||||
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form_MouseMove);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox txt_LoginPwd;
|
||||
private System.Windows.Forms.TextBox txt_LoginName;
|
||||
private System.Windows.Forms.Button btn_Login;
|
||||
private System.Windows.Forms.Button btn_Close;
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.PictureBox pictureBox2;
|
||||
private System.Windows.Forms.PictureBox pictureBox3;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user