Files
csharpcode/patientman/PatientMan/Forms/frmChangePass.Designer.cs
2025-08-02 05:20:17 +07:00

136 lines
8.0 KiB
C#

namespace PatientMan.Forms
{
partial class frmChangePass
{
/// <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(frmChangePass));
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.Password = new DevExpress.XtraEditors.TextEdit();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.RePassword = new DevExpress.XtraEditors.TextEdit();
this.OK = new System.Windows.Forms.Button();
this.Cancel = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.RePassword.Properties)).BeginInit();
this.SuspendLayout();
//
// labelControl2
//
resources.ApplyResources(this.labelControl2, "labelControl2");
this.labelControl2.Name = "labelControl2";
//
// Password
//
resources.ApplyResources(this.Password, "Password");
this.Password.EnterMoveNextControl = true;
this.Password.Name = "Password";
this.Password.Properties.AccessibleDescription = resources.GetString("Password.Properties.AccessibleDescription");
this.Password.Properties.AccessibleName = resources.GetString("Password.Properties.AccessibleName");
this.Password.Properties.AutoHeight = ((bool)(resources.GetObject("Password.Properties.AutoHeight")));
this.Password.Properties.Mask.AutoComplete = ((DevExpress.XtraEditors.Mask.AutoCompleteType)(resources.GetObject("Password.Properties.Mask.AutoComplete")));
this.Password.Properties.Mask.BeepOnError = ((bool)(resources.GetObject("Password.Properties.Mask.BeepOnError")));
this.Password.Properties.Mask.EditMask = resources.GetString("Password.Properties.Mask.EditMask");
this.Password.Properties.Mask.IgnoreMaskBlank = ((bool)(resources.GetObject("Password.Properties.Mask.IgnoreMaskBlank")));
this.Password.Properties.Mask.MaskType = ((DevExpress.XtraEditors.Mask.MaskType)(resources.GetObject("Password.Properties.Mask.MaskType")));
this.Password.Properties.Mask.PlaceHolder = ((char)(resources.GetObject("Password.Properties.Mask.PlaceHolder")));
this.Password.Properties.Mask.SaveLiteral = ((bool)(resources.GetObject("Password.Properties.Mask.SaveLiteral")));
this.Password.Properties.Mask.ShowPlaceHolders = ((bool)(resources.GetObject("Password.Properties.Mask.ShowPlaceHolders")));
this.Password.Properties.Mask.UseMaskAsDisplayFormat = ((bool)(resources.GetObject("Password.Properties.Mask.UseMaskAsDisplayFormat")));
this.Password.Properties.NullValuePrompt = resources.GetString("Password.Properties.NullValuePrompt");
this.Password.Properties.NullValuePromptShowForEmptyValue = ((bool)(resources.GetObject("Password.Properties.NullValuePromptShowForEmptyValue")));
this.Password.Properties.PasswordChar = '*';
//
// labelControl1
//
resources.ApplyResources(this.labelControl1, "labelControl1");
this.labelControl1.Name = "labelControl1";
//
// RePassword
//
resources.ApplyResources(this.RePassword, "RePassword");
this.RePassword.EnterMoveNextControl = true;
this.RePassword.Name = "RePassword";
this.RePassword.Properties.AccessibleDescription = resources.GetString("RePassword.Properties.AccessibleDescription");
this.RePassword.Properties.AccessibleName = resources.GetString("RePassword.Properties.AccessibleName");
this.RePassword.Properties.AutoHeight = ((bool)(resources.GetObject("RePassword.Properties.AutoHeight")));
this.RePassword.Properties.Mask.AutoComplete = ((DevExpress.XtraEditors.Mask.AutoCompleteType)(resources.GetObject("RePassword.Properties.Mask.AutoComplete")));
this.RePassword.Properties.Mask.BeepOnError = ((bool)(resources.GetObject("RePassword.Properties.Mask.BeepOnError")));
this.RePassword.Properties.Mask.EditMask = resources.GetString("RePassword.Properties.Mask.EditMask");
this.RePassword.Properties.Mask.IgnoreMaskBlank = ((bool)(resources.GetObject("RePassword.Properties.Mask.IgnoreMaskBlank")));
this.RePassword.Properties.Mask.MaskType = ((DevExpress.XtraEditors.Mask.MaskType)(resources.GetObject("RePassword.Properties.Mask.MaskType")));
this.RePassword.Properties.Mask.PlaceHolder = ((char)(resources.GetObject("RePassword.Properties.Mask.PlaceHolder")));
this.RePassword.Properties.Mask.SaveLiteral = ((bool)(resources.GetObject("RePassword.Properties.Mask.SaveLiteral")));
this.RePassword.Properties.Mask.ShowPlaceHolders = ((bool)(resources.GetObject("RePassword.Properties.Mask.ShowPlaceHolders")));
this.RePassword.Properties.Mask.UseMaskAsDisplayFormat = ((bool)(resources.GetObject("RePassword.Properties.Mask.UseMaskAsDisplayFormat")));
this.RePassword.Properties.NullValuePrompt = resources.GetString("RePassword.Properties.NullValuePrompt");
this.RePassword.Properties.NullValuePromptShowForEmptyValue = ((bool)(resources.GetObject("RePassword.Properties.NullValuePromptShowForEmptyValue")));
this.RePassword.Properties.PasswordChar = '*';
//
// OK
//
resources.ApplyResources(this.OK, "OK");
this.OK.Name = "OK";
this.OK.UseVisualStyleBackColor = true;
this.OK.Click += new System.EventHandler(this.OK_Click);
//
// Cancel
//
resources.ApplyResources(this.Cancel, "Cancel");
this.Cancel.Name = "Cancel";
this.Cancel.UseVisualStyleBackColor = true;
this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
//
// frmChangePass
//
resources.ApplyResources(this, "$this");
this.Controls.Add(this.Cancel);
this.Controls.Add(this.OK);
this.Controls.Add(this.labelControl1);
this.Controls.Add(this.RePassword);
this.Controls.Add(this.labelControl2);
this.Controls.Add(this.Password);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "frmChangePass";
((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.RePassword.Properties)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.TextEdit Password;
private DevExpress.XtraEditors.LabelControl labelControl1;
private DevExpress.XtraEditors.TextEdit RePassword;
private System.Windows.Forms.Button OK;
private System.Windows.Forms.Button Cancel;
}
}