XKRS2023Frm/CopyCode/AdvancedPwdFrm.Designer.cs
2023-03-24 09:58:42 +08:00

122 lines
5.1 KiB
C#

namespace XKRS.UI.Main
{
partial class AdvancedPwdFrm
{
/// <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.label1 = new System.Windows.Forms.Label();
this.btnExitLogin = new System.Windows.Forms.Button();
this.txtPwd = new System.Windows.Forms.TextBox();
this.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(32, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(52, 14);
this.label1.TabIndex = 1;
this.label1.Text = "密码:";
//
// btnExitLogin
//
this.btnExitLogin.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnExitLogin.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
this.btnExitLogin.Location = new System.Drawing.Point(12, 63);
this.btnExitLogin.Name = "btnExitLogin";
this.btnExitLogin.Size = new System.Drawing.Size(75, 23);
this.btnExitLogin.TabIndex = 2;
this.btnExitLogin.Text = "退出登录";
this.btnExitLogin.UseVisualStyleBackColor = true;
this.btnExitLogin.Click += new System.EventHandler(this.btnExitLogin_Click);
//
// txtPwd
//
this.txtPwd.Font = new System.Drawing.Font("宋体", 10F);
this.txtPwd.Location = new System.Drawing.Point(126, 28);
this.txtPwd.Name = "txtPwd";
this.txtPwd.PasswordChar = '*';
this.txtPwd.Size = new System.Drawing.Size(236, 23);
this.txtPwd.TabIndex = 0;
this.txtPwd.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPwd_KeyDown);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
this.btnCancel.Location = new System.Drawing.Point(208, 63);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 2;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
this.btnOK.Location = new System.Drawing.Point(289, 63);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// AdvancedPwdFrm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(388, 98);
this.ControlBox = false;
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.txtPwd);
this.Controls.Add(this.btnExitLogin);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "AdvancedPwdFrm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "用户验证";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button btnExitLogin;
private System.Windows.Forms.TextBox txtPwd;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
}
}