You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
4.5 KiB
107 lines
4.5 KiB
3 years ago
|
namespace Stone.WinModule.Standard
|
||
|
{
|
||
|
partial class frmPasswordVerify
|
||
|
{
|
||
|
/// <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.lblName = new System.Windows.Forms.Label();
|
||
|
this.txtPassword = new System.Windows.Forms.TextBox();
|
||
|
this.btnOK = new System.Windows.Forms.Button();
|
||
|
this.btnClose = new System.Windows.Forms.Button();
|
||
|
this.SuspendLayout();
|
||
|
//
|
||
|
// lblName
|
||
|
//
|
||
|
this.lblName.AutoSize = true;
|
||
|
this.lblName.Location = new System.Drawing.Point(21, 20);
|
||
|
this.lblName.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
|
||
|
this.lblName.Name = "lblName";
|
||
|
this.lblName.Size = new System.Drawing.Size(69, 27);
|
||
|
this.lblName.TabIndex = 0;
|
||
|
this.lblName.Text = "label1";
|
||
|
//
|
||
|
// txtPassword
|
||
|
//
|
||
|
this.txtPassword.Location = new System.Drawing.Point(26, 63);
|
||
|
this.txtPassword.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
|
||
|
this.txtPassword.Name = "txtPassword";
|
||
|
this.txtPassword.PasswordChar = '*';
|
||
|
this.txtPassword.Size = new System.Drawing.Size(350, 34);
|
||
|
this.txtPassword.TabIndex = 1;
|
||
|
this.txtPassword.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassword_KeyDown);
|
||
|
//
|
||
|
// btnOK
|
||
|
//
|
||
|
this.btnOK.Location = new System.Drawing.Point(26, 111);
|
||
|
this.btnOK.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
|
||
|
this.btnOK.Name = "btnOK";
|
||
|
this.btnOK.Size = new System.Drawing.Size(150, 51);
|
||
|
this.btnOK.TabIndex = 2;
|
||
|
this.btnOK.Text = "确定";
|
||
|
this.btnOK.UseVisualStyleBackColor = true;
|
||
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
||
|
//
|
||
|
// btnClose
|
||
|
//
|
||
|
this.btnClose.Location = new System.Drawing.Point(226, 111);
|
||
|
this.btnClose.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
|
||
|
this.btnClose.Name = "btnClose";
|
||
|
this.btnClose.Size = new System.Drawing.Size(150, 51);
|
||
|
this.btnClose.TabIndex = 3;
|
||
|
this.btnClose.Text = "取消";
|
||
|
this.btnClose.UseVisualStyleBackColor = true;
|
||
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
||
|
//
|
||
|
// frmPasswordVerify
|
||
|
//
|
||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 27F);
|
||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
|
this.ClientSize = new System.Drawing.Size(407, 192);
|
||
|
this.Controls.Add(this.btnClose);
|
||
|
this.Controls.Add(this.btnOK);
|
||
|
this.Controls.Add(this.txtPassword);
|
||
|
this.Controls.Add(this.lblName);
|
||
|
this.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
||
|
this.Margin = new System.Windows.Forms.Padding(6, 7, 6, 7);
|
||
|
this.Name = "frmPasswordVerify";
|
||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||
|
this.Text = "验证密码";
|
||
|
this.Load += new System.EventHandler(this.frmPasswordVerify_Load);
|
||
|
this.ResumeLayout(false);
|
||
|
this.PerformLayout();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
|
||
|
public System.Windows.Forms.Label lblName;
|
||
|
private System.Windows.Forms.TextBox txtPassword;
|
||
|
private System.Windows.Forms.Button btnOK;
|
||
|
private System.Windows.Forms.Button btnClose;
|
||
|
}
|
||
|
}
|