Files
FullAutoWaterCheck/全自动水压检测仪/Forms/ChangePasswordForm.Designer.cs

168 lines
7.6 KiB
C#
Raw Normal View History

2026-01-26 18:47:27 +08:00
namespace
{
partial class ChangePasswordForm
{
/// <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.btnConfirm = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.txtConfirmPassword = new System.Windows.Forms.TextBox();
this.lblConfirmPassword = new System.Windows.Forms.Label();
this.txtNewPassword = new System.Windows.Forms.TextBox();
this.lblNewPassword = new System.Windows.Forms.Label();
this.txtOldPassword = new System.Windows.Forms.TextBox();
this.lblOldPassword = new System.Windows.Forms.Label();
this.panelMain = new System.Windows.Forms.Panel();
this.panelMain.SuspendLayout();
this.SuspendLayout();
//
// btnConfirm
//
this.btnConfirm.Location = new System.Drawing.Point(120, 250);
this.btnConfirm.Name = "btnConfirm";
this.btnConfirm.Size = new System.Drawing.Size(90, 35);
this.btnConfirm.TabIndex = 6;
this.btnConfirm.Text = "确定";
this.btnConfirm.UseVisualStyleBackColor = true;
this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(230, 250);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(90, 35);
this.btnCancel.TabIndex = 7;
this.btnCancel.Text = "取消";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// txtConfirmPassword
//
this.txtConfirmPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.txtConfirmPassword.Location = new System.Drawing.Point(120, 200);
this.txtConfirmPassword.Name = "txtConfirmPassword";
this.txtConfirmPassword.PasswordChar = '*';
this.txtConfirmPassword.Size = new System.Drawing.Size(200, 25);
this.txtConfirmPassword.TabIndex = 2;
//
// lblConfirmPassword
//
this.lblConfirmPassword.AutoSize = true;
this.lblConfirmPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.lblConfirmPassword.Location = new System.Drawing.Point(30, 205);
this.lblConfirmPassword.Name = "lblConfirmPassword";
this.lblConfirmPassword.Size = new System.Drawing.Size(88, 20);
this.lblConfirmPassword.TabIndex = 5;
this.lblConfirmPassword.Text = "确认密码:";
//
// txtNewPassword
//
this.txtNewPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.txtNewPassword.Location = new System.Drawing.Point(120, 155);
this.txtNewPassword.Name = "txtNewPassword";
this.txtNewPassword.PasswordChar = '*';
this.txtNewPassword.Size = new System.Drawing.Size(200, 25);
this.txtNewPassword.TabIndex = 1;
//
// lblNewPassword
//
this.lblNewPassword.AutoSize = true;
this.lblNewPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.lblNewPassword.Location = new System.Drawing.Point(30, 160);
this.lblNewPassword.Name = "lblNewPassword";
this.lblNewPassword.Size = new System.Drawing.Size(88, 20);
this.lblNewPassword.TabIndex = 3;
this.lblNewPassword.Text = "新密码:";
//
// txtOldPassword
//
this.txtOldPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.txtOldPassword.Location = new System.Drawing.Point(120, 110);
this.txtOldPassword.Name = "txtOldPassword";
this.txtOldPassword.PasswordChar = '*';
this.txtOldPassword.Size = new System.Drawing.Size(200, 25);
this.txtOldPassword.TabIndex = 0;
//
// lblOldPassword
//
this.lblOldPassword.AutoSize = true;
this.lblOldPassword.Font = new System.Drawing.Font("Microsoft YaHei UI", 10F);
this.lblOldPassword.Location = new System.Drawing.Point(30, 115);
this.lblOldPassword.Name = "lblOldPassword";
this.lblOldPassword.Size = new System.Drawing.Size(88, 20);
this.lblOldPassword.TabIndex = 4;
this.lblOldPassword.Text = "旧密码:";
//
// panelMain
//
this.panelMain.BackColor = System.Drawing.Color.White;
this.panelMain.Controls.Add(this.txtConfirmPassword);
this.panelMain.Controls.Add(this.lblConfirmPassword);
this.panelMain.Controls.Add(this.txtNewPassword);
this.panelMain.Controls.Add(this.lblNewPassword);
this.panelMain.Controls.Add(this.txtOldPassword);
this.panelMain.Controls.Add(this.lblOldPassword);
this.panelMain.Location = new System.Drawing.Point(60, 50);
this.panelMain.Name = "panelMain";
this.panelMain.Size = new System.Drawing.Size(380, 320);
this.panelMain.TabIndex = 0;
//
// ChangePasswordForm
//
this.AcceptButton = this.btnConfirm;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(500, 400);
this.Controls.Add(this.btnConfirm);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.panelMain);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ChangePasswordForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "修改密码";
this.panelMain.ResumeLayout(false);
this.panelMain.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TextBox txtOldPassword;
private System.Windows.Forms.Label lblOldPassword;
private System.Windows.Forms.TextBox txtNewPassword;
private System.Windows.Forms.Label lblNewPassword;
private System.Windows.Forms.TextBox txtConfirmPassword;
private System.Windows.Forms.Label lblConfirmPassword;
private System.Windows.Forms.Button btnConfirm;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Panel panelMain;
}
}