104 lines
4.0 KiB
C#
104 lines
4.0 KiB
C#
|
namespace Grant.Framework
|
|||
|
{
|
|||
|
partial class VerifyPassForm
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.textBox2 = new System.Windows.Forms.TextBox();
|
|||
|
this.button1 = new System.Windows.Forms.Button();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(40, 73);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(67, 14);
|
|||
|
this.label2.TabIndex = 14;
|
|||
|
this.label2.Text = "登陆密码:";
|
|||
|
//
|
|||
|
// textBox2
|
|||
|
//
|
|||
|
this.textBox2.Location = new System.Drawing.Point(113, 69);
|
|||
|
this.textBox2.Name = "textBox2";
|
|||
|
this.textBox2.PasswordChar = '*';
|
|||
|
this.textBox2.Size = new System.Drawing.Size(196, 22);
|
|||
|
this.textBox2.TabIndex = 13;
|
|||
|
this.textBox2.UseSystemPasswordChar = true;
|
|||
|
//
|
|||
|
// button1
|
|||
|
//
|
|||
|
this.button1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.button1.Location = new System.Drawing.Point(114, 111);
|
|||
|
this.button1.Name = "button1";
|
|||
|
this.button1.Size = new System.Drawing.Size(131, 30);
|
|||
|
this.button1.TabIndex = 16;
|
|||
|
this.button1.Text = " 确 定 ";
|
|||
|
this.button1.UseVisualStyleBackColor = true;
|
|||
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Font = new System.Drawing.Font("Tahoma", 10F);
|
|||
|
this.label1.ForeColor = System.Drawing.Color.Blue;
|
|||
|
this.label1.Location = new System.Drawing.Point(20, 27);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(316, 17);
|
|||
|
this.label1.TabIndex = 17;
|
|||
|
this.label1.Text = "请输入软件登录密码,验证身份通过才能继续操作";
|
|||
|
//
|
|||
|
// VerifyPassForm
|
|||
|
//
|
|||
|
this.AcceptButton = this.button1;
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(356, 161);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.button1);
|
|||
|
this.Controls.Add(this.textBox2);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "VerifyPassForm";
|
|||
|
this.Text = " 身 份 验 证 ";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.TextBox textBox2;
|
|||
|
private System.Windows.Forms.Button button1;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
}
|
|||
|
}
|