| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- namespace Core.StlMes.Client.ZGMil.Popup
- {
- partial class FrmChangeGroup
- {
- /// <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.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
- this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
- this.txtUserID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.txtPassWord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
- this.btnCommit = new Infragistics.Win.Misc.UltraButton();
- this.btnCancel = new Infragistics.Win.Misc.UltraButton();
- ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPassWord)).BeginInit();
- this.SuspendLayout();
- //
- // ultraLabel1
- //
- this.ultraLabel1.Location = new System.Drawing.Point(45, 34);
- this.ultraLabel1.Name = "ultraLabel1";
- this.ultraLabel1.Size = new System.Drawing.Size(54, 23);
- this.ultraLabel1.TabIndex = 0;
- this.ultraLabel1.Text = "用户名:";
- //
- // ultraLabel2
- //
- this.ultraLabel2.Location = new System.Drawing.Point(55, 71);
- this.ultraLabel2.Name = "ultraLabel2";
- this.ultraLabel2.Size = new System.Drawing.Size(44, 20);
- this.ultraLabel2.TabIndex = 0;
- this.ultraLabel2.Text = "密码:";
- //
- // txtUserID
- //
- this.txtUserID.Location = new System.Drawing.Point(105, 31);
- this.txtUserID.Name = "txtUserID";
- this.txtUserID.Size = new System.Drawing.Size(115, 21);
- this.txtUserID.TabIndex = 1;
- this.txtUserID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtUserID_KeyPress);
- //
- // txtPassWord
- //
- this.txtPassWord.Location = new System.Drawing.Point(105, 67);
- this.txtPassWord.Name = "txtPassWord";
- this.txtPassWord.PasswordChar = '*';
- this.txtPassWord.Size = new System.Drawing.Size(115, 21);
- this.txtPassWord.TabIndex = 2;
- this.txtPassWord.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPassWord_KeyPress);
- //
- // btnCommit
- //
- this.btnCommit.Location = new System.Drawing.Point(45, 115);
- this.btnCommit.Name = "btnCommit";
- this.btnCommit.Size = new System.Drawing.Size(75, 23);
- this.btnCommit.TabIndex = 3;
- this.btnCommit.Text = "确认";
- this.btnCommit.Click += new System.EventHandler(this.btnCommit_Click);
- //
- // btnCancel
- //
- this.btnCancel.Location = new System.Drawing.Point(145, 115);
- this.btnCancel.Name = "btnCancel";
- this.btnCancel.Size = new System.Drawing.Size(75, 23);
- this.btnCancel.TabIndex = 4;
- this.btnCancel.Text = "取消";
- this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
- //
- // FrmChangeGroup
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(276, 223);
- this.Controls.Add(this.btnCancel);
- this.Controls.Add(this.btnCommit);
- this.Controls.Add(this.txtPassWord);
- this.Controls.Add(this.txtUserID);
- this.Controls.Add(this.ultraLabel2);
- this.Controls.Add(this.ultraLabel1);
- this.Name = "FrmChangeGroup";
- this.Text = "接班确认";
- ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.txtPassWord)).EndInit();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private Infragistics.Win.Misc.UltraLabel ultraLabel1;
- private Infragistics.Win.Misc.UltraLabel ultraLabel2;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtUserID;
- private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPassWord;
- private Infragistics.Win.Misc.UltraButton btnCommit;
- private Infragistics.Win.Misc.UltraButton btnCancel;
- }
- }
|