Files
lserp_cs_6.0/插件库/Lskj.Main3/FrmPassword.Designer.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

216 lines
9.6 KiB
C#

namespace Lskj.Main3
{
partial class FrmPassword
{
/// <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(FrmPassword));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtPassAfter = new System.Windows.Forms.TextBox();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.txtPassBefore = new System.Windows.Forms.TextBox();
this.txtUserName = new System.Windows.Forms.TextBox();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.label1 = new System.Windows.Forms.Label();
this.btnSave = new DevExpress.XtraEditors.SimpleButton();
this.btnExit = new DevExpress.XtraEditors.SimpleButton();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtPassAfter);
this.groupBox1.Controls.Add(this.labelControl3);
this.groupBox1.Controls.Add(this.txtPassBefore);
this.groupBox1.Controls.Add(this.txtUserName);
this.groupBox1.Controls.Add(this.labelControl2);
this.groupBox1.Controls.Add(this.labelControl1);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(3, 2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(219, 87);
this.groupBox1.TabIndex = 11;
this.groupBox1.TabStop = false;
//
// txtPassAfter
//
this.txtPassAfter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtPassAfter.Location = new System.Drawing.Point(67, 61);
this.txtPassAfter.MaxLength = 50;
this.txtPassAfter.Name = "txtPassAfter";
this.txtPassAfter.PasswordChar = '*';
this.txtPassAfter.Size = new System.Drawing.Size(139, 21);
this.txtPassAfter.TabIndex = 9;
//
// labelControl3
//
this.labelControl3.Location = new System.Drawing.Point(10, 64);
this.labelControl3.Name = "labelControl3";
this.labelControl3.Size = new System.Drawing.Size(48, 14);
this.labelControl3.TabIndex = 8;
this.labelControl3.Text = "确认密码";
//
// txtPassBefore
//
this.txtPassBefore.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtPassBefore.Location = new System.Drawing.Point(67, 37);
this.txtPassBefore.MaxLength = 50;
this.txtPassBefore.Name = "txtPassBefore";
this.txtPassBefore.PasswordChar = '*';
this.txtPassBefore.Size = new System.Drawing.Size(139, 21);
this.txtPassBefore.TabIndex = 7;
//
// txtUserName
//
this.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtUserName.Location = new System.Drawing.Point(67, 13);
this.txtUserName.MaxLength = 50;
this.txtUserName.Name = "txtUserName";
this.txtUserName.ReadOnly = true;
this.txtUserName.Size = new System.Drawing.Size(139, 21);
this.txtUserName.TabIndex = 6;
//
// labelControl2
//
this.labelControl2.Location = new System.Drawing.Point(10, 40);
this.labelControl2.Name = "labelControl2";
this.labelControl2.Size = new System.Drawing.Size(48, 14);
this.labelControl2.TabIndex = 5;
this.labelControl2.Text = "登录密码";
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(10, 16);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(48, 14);
this.labelControl1.TabIndex = 4;
this.labelControl1.Text = "登录用户";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 17);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(0, 12);
this.label1.TabIndex = 0;
//
// btnSave
//
this.btnSave.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnSave.Location = new System.Drawing.Point(53, 164);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(53, 20);
this.btnSave.TabIndex = 13;
this.btnSave.Text = "保存";
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnExit
//
this.btnExit.Cursor = System.Windows.Forms.Cursors.Hand;
this.btnExit.Location = new System.Drawing.Point(123, 164);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(53, 20);
this.btnExit.TabIndex = 14;
this.btnExit.Text = "取消";
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(9, 96);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(155, 12);
this.label2.TabIndex = 15;
this.label2.Text = "密码要求:1、必须包含数字";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(69, 116);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(155, 12);
this.label3.TabIndex = 16;
this.label3.Text = "2、必须包含小写或大写字母";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(69, 134);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(89, 12);
this.label4.TabIndex = 17;
this.label4.Text = "3、至少8个字符";
//
// FrmPassword
//
this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(207)))), ((int)(((byte)(221)))), ((int)(((byte)(238)))));
this.Appearance.Options.UseBackColor = true;
this.Appearance.Options.UseFont = true;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(225, 192);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnExit);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FrmPassword";
this.Text = "强制修改密码";
this.Load += new System.EventHandler(this.FrmPassword_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.TextBox txtPassBefore;
private System.Windows.Forms.TextBox txtUserName;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.LabelControl labelControl1;
private System.Windows.Forms.Label label1;
private DevExpress.XtraEditors.SimpleButton btnSave;
private DevExpress.XtraEditors.SimpleButton btnExit;
private System.Windows.Forms.TextBox txtPassAfter;
private DevExpress.XtraEditors.LabelControl labelControl3;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
}
}