Upload to server
uploading
This commit is contained in:
146
omegapro/Omega/Forms/frmChangePass.designer.cs
generated
Normal file
146
omegapro/Omega/Forms/frmChangePass.designer.cs
generated
Normal file
@@ -0,0 +1,146 @@
|
||||
namespace Omega.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()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
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();
|
||||
this.imageList = new System.Windows.Forms.ImageList(this.components);
|
||||
this.UserName = new DevExpress.XtraEditors.ImageComboBoxEdit();
|
||||
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
|
||||
((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.RePassword.Properties)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.UserName.Properties)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// labelControl2
|
||||
//
|
||||
resources.ApplyResources(this.labelControl2, "labelControl2");
|
||||
this.labelControl2.Name = "labelControl2";
|
||||
//
|
||||
// Password
|
||||
//
|
||||
this.Password.EnterMoveNextControl = true;
|
||||
resources.ApplyResources(this.Password, "Password");
|
||||
this.Password.Name = "Password";
|
||||
this.Password.Properties.PasswordChar = '*';
|
||||
//
|
||||
// labelControl1
|
||||
//
|
||||
resources.ApplyResources(this.labelControl1, "labelControl1");
|
||||
this.labelControl1.Name = "labelControl1";
|
||||
//
|
||||
// RePassword
|
||||
//
|
||||
this.RePassword.EnterMoveNextControl = true;
|
||||
resources.ApplyResources(this.RePassword, "RePassword");
|
||||
this.RePassword.Name = "RePassword";
|
||||
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);
|
||||
//
|
||||
// imageList
|
||||
//
|
||||
this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
|
||||
this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
||||
this.imageList.Images.SetKeyName(0, "admin.jpg");
|
||||
this.imageList.Images.SetKeyName(1, "Super.jpg");
|
||||
this.imageList.Images.SetKeyName(2, "User.jpg");
|
||||
//
|
||||
// UserName
|
||||
//
|
||||
resources.ApplyResources(this.UserName, "UserName");
|
||||
this.UserName.Name = "UserName";
|
||||
this.UserName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
|
||||
new DevExpress.XtraEditors.Controls.EditorButton(((DevExpress.XtraEditors.Controls.ButtonPredefines)(resources.GetObject("UserName.Properties.Buttons"))))});
|
||||
this.UserName.Properties.DropDownRows = 3;
|
||||
this.UserName.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
|
||||
new DevExpress.XtraEditors.Controls.ImageComboBoxItem(resources.GetString("UserName.Properties.Items"), resources.GetString("UserName.Properties.Items1"), ((int)(resources.GetObject("UserName.Properties.Items2")))),
|
||||
new DevExpress.XtraEditors.Controls.ImageComboBoxItem(resources.GetString("UserName.Properties.Items3"), resources.GetString("UserName.Properties.Items4"), ((int)(resources.GetObject("UserName.Properties.Items5")))),
|
||||
new DevExpress.XtraEditors.Controls.ImageComboBoxItem(resources.GetString("UserName.Properties.Items6"), resources.GetString("UserName.Properties.Items7"), ((int)(resources.GetObject("UserName.Properties.Items8"))))});
|
||||
this.UserName.Properties.LargeImages = this.imageList;
|
||||
this.UserName.Properties.SmallImages = this.imageList;
|
||||
//
|
||||
// labelControl3
|
||||
//
|
||||
resources.ApplyResources(this.labelControl3, "labelControl3");
|
||||
this.labelControl3.Name = "labelControl3";
|
||||
//
|
||||
// frmChangePass
|
||||
//
|
||||
resources.ApplyResources(this, "$this");
|
||||
this.Controls.Add(this.labelControl3);
|
||||
this.Controls.Add(this.UserName);
|
||||
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";
|
||||
this.Load += new System.EventHandler(this.frmChangePass_Load);
|
||||
((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.RePassword.Properties)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.UserName.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;
|
||||
private System.Windows.Forms.ImageList imageList;
|
||||
private DevExpress.XtraEditors.ImageComboBoxEdit UserName;
|
||||
private DevExpress.XtraEditors.LabelControl labelControl3;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user