namespace ServerSystem { partial class PassWord { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PassWord)); this.lblOldPwd = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.btnClose = new WMS.Ctrl.CtrlButtons(); this.btnAccept = new WMS.Ctrl.CtrlButtons(); this.t_user = new WMS.Ctrl.WMSCtrlTextBox(this.components); this.t_passWord = new WMS.Ctrl.WMSCtrlTextBox(this.components); ((System.ComponentModel.ISupportInitialize)(this.t_user.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.t_passWord.Properties)).BeginInit(); this.SuspendLayout(); // // lblOldPwd // this.lblOldPwd.AutoSize = true; this.lblOldPwd.Font = new System.Drawing.Font("宋体", 12F); this.lblOldPwd.ForeColor = System.Drawing.SystemColors.ControlText; this.lblOldPwd.Location = new System.Drawing.Point(30, 67); this.lblOldPwd.Name = "lblOldPwd"; this.lblOldPwd.Size = new System.Drawing.Size(40, 16); this.lblOldPwd.TabIndex = 29; this.lblOldPwd.Text = "密码"; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("宋体", 12F); this.label1.ForeColor = System.Drawing.SystemColors.ControlText; this.label1.Location = new System.Drawing.Point(30, 31); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 16); this.label1.TabIndex = 31; this.label1.Text = "用户名"; // // btnClose // this.btnClose.Appearance.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold); this.btnClose.Appearance.Options.UseFont = true; this.btnClose.BoolDiagFrm = false; this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image"))); this.btnClose.ImageUri.Uri = "Close;Office2013"; this.btnClose.Location = new System.Drawing.Point(189, 110); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(150, 45); this.btnClose.TabIndex = 34; this.btnClose.Text = " 关闭 "; this.btnClose.typeButton = " 关闭 "; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // btnAccept // this.btnAccept.Appearance.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold); this.btnAccept.Appearance.Options.UseFont = true; this.btnAccept.BoolDiagFrm = false; this.btnAccept.Image = ((System.Drawing.Image)(resources.GetObject("btnAccept.Image"))); this.btnAccept.ImageUri.Uri = "Apply;Office2013"; this.btnAccept.Location = new System.Drawing.Point(33, 110); this.btnAccept.Name = "btnAccept"; this.btnAccept.Size = new System.Drawing.Size(150, 45); this.btnAccept.TabIndex = 33; this.btnAccept.Text = " 确定 "; this.btnAccept.typeButton = " 确定 "; this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click); // // t_user // this.t_user.EditValue = ""; this.t_user.FrmSelect = false; this.t_user.Location = new System.Drawing.Point(108, 27); this.t_user.MustText = false; this.t_user.Name = "t_user"; this.t_user.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window; this.t_user.Properties.Appearance.Font = new System.Drawing.Font("宋体", 10F); this.t_user.Properties.Appearance.Options.UseBackColor = true; this.t_user.Properties.Appearance.Options.UseFont = true; this.t_user.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat; this.t_user.Size = new System.Drawing.Size(160, 22); this.t_user.StrLen = 0; this.t_user.TabIndex = 32; this.t_user.Valatt = WMS.Ctrl.ValidationAttribute.无; this.t_user.ValText = ""; this.t_user.KeyDown += new System.Windows.Forms.KeyEventHandler(this.t_user_KeyDown); // // t_passWord // this.t_passWord.FrmSelect = false; this.t_passWord.Location = new System.Drawing.Point(108, 63); this.t_passWord.MustText = false; this.t_passWord.Name = "t_passWord"; this.t_passWord.Properties.Appearance.BackColor = System.Drawing.SystemColors.Window; this.t_passWord.Properties.Appearance.Font = new System.Drawing.Font("宋体", 10F); this.t_passWord.Properties.Appearance.Options.UseBackColor = true; this.t_passWord.Properties.Appearance.Options.UseFont = true; this.t_passWord.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat; this.t_passWord.Properties.PasswordChar = '*'; this.t_passWord.Size = new System.Drawing.Size(160, 22); this.t_passWord.StrLen = 0; this.t_passWord.TabIndex = 30; this.t_passWord.Valatt = WMS.Ctrl.ValidationAttribute.无; this.t_passWord.ValText = ""; this.t_passWord.KeyDown += new System.Windows.Forms.KeyEventHandler(this.t_passWord_KeyDown); // // PassWord // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(377, 166); this.Controls.Add(this.btnClose); this.Controls.Add(this.btnAccept); this.Controls.Add(this.t_user); this.Controls.Add(this.label1); this.Controls.Add(this.t_passWord); this.Controls.Add(this.lblOldPwd); this.Name = "PassWord"; this.Text = "退出系统"; this.Load += new System.EventHandler(this.PassWord_Load); ((System.ComponentModel.ISupportInitialize)(this.t_user.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.t_passWord.Properties)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private WMS.Ctrl.WMSCtrlTextBox t_passWord; private System.Windows.Forms.Label lblOldPwd; private WMS.Ctrl.WMSCtrlTextBox t_user; private System.Windows.Forms.Label label1; private WMS.Ctrl.CtrlButtons btnClose; private WMS.Ctrl.CtrlButtons btnAccept; } }