FrmChangeGroup.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. namespace Core.StlMes.Client.ZGMil.Popup
  2. {
  3. partial class FrmChangeGroup
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
  29. this.ultraLabel2 = new Infragistics.Win.Misc.UltraLabel();
  30. this.txtUserID = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  31. this.txtPassWord = new Infragistics.Win.UltraWinEditors.UltraTextEditor();
  32. this.btnCommit = new Infragistics.Win.Misc.UltraButton();
  33. this.btnCancel = new Infragistics.Win.Misc.UltraButton();
  34. ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).BeginInit();
  35. ((System.ComponentModel.ISupportInitialize)(this.txtPassWord)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // ultraLabel1
  39. //
  40. this.ultraLabel1.Location = new System.Drawing.Point(45, 34);
  41. this.ultraLabel1.Name = "ultraLabel1";
  42. this.ultraLabel1.Size = new System.Drawing.Size(54, 23);
  43. this.ultraLabel1.TabIndex = 0;
  44. this.ultraLabel1.Text = "用户名:";
  45. //
  46. // ultraLabel2
  47. //
  48. this.ultraLabel2.Location = new System.Drawing.Point(55, 71);
  49. this.ultraLabel2.Name = "ultraLabel2";
  50. this.ultraLabel2.Size = new System.Drawing.Size(44, 20);
  51. this.ultraLabel2.TabIndex = 0;
  52. this.ultraLabel2.Text = "密码:";
  53. //
  54. // txtUserID
  55. //
  56. this.txtUserID.Location = new System.Drawing.Point(105, 31);
  57. this.txtUserID.Name = "txtUserID";
  58. this.txtUserID.Size = new System.Drawing.Size(115, 21);
  59. this.txtUserID.TabIndex = 1;
  60. this.txtUserID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtUserID_KeyPress);
  61. //
  62. // txtPassWord
  63. //
  64. this.txtPassWord.Location = new System.Drawing.Point(105, 67);
  65. this.txtPassWord.Name = "txtPassWord";
  66. this.txtPassWord.PasswordChar = '*';
  67. this.txtPassWord.Size = new System.Drawing.Size(115, 21);
  68. this.txtPassWord.TabIndex = 2;
  69. this.txtPassWord.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPassWord_KeyPress);
  70. //
  71. // btnCommit
  72. //
  73. this.btnCommit.Location = new System.Drawing.Point(45, 115);
  74. this.btnCommit.Name = "btnCommit";
  75. this.btnCommit.Size = new System.Drawing.Size(75, 23);
  76. this.btnCommit.TabIndex = 3;
  77. this.btnCommit.Text = "确认";
  78. this.btnCommit.Click += new System.EventHandler(this.btnCommit_Click);
  79. //
  80. // btnCancel
  81. //
  82. this.btnCancel.Location = new System.Drawing.Point(145, 115);
  83. this.btnCancel.Name = "btnCancel";
  84. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  85. this.btnCancel.TabIndex = 4;
  86. this.btnCancel.Text = "取消";
  87. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  88. //
  89. // FrmChangeGroup
  90. //
  91. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  92. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93. this.ClientSize = new System.Drawing.Size(276, 223);
  94. this.Controls.Add(this.btnCancel);
  95. this.Controls.Add(this.btnCommit);
  96. this.Controls.Add(this.txtPassWord);
  97. this.Controls.Add(this.txtUserID);
  98. this.Controls.Add(this.ultraLabel2);
  99. this.Controls.Add(this.ultraLabel1);
  100. this.Name = "FrmChangeGroup";
  101. this.Text = "接班确认";
  102. ((System.ComponentModel.ISupportInitialize)(this.txtUserID)).EndInit();
  103. ((System.ComponentModel.ISupportInitialize)(this.txtPassWord)).EndInit();
  104. this.ResumeLayout(false);
  105. this.PerformLayout();
  106. }
  107. #endregion
  108. private Infragistics.Win.Misc.UltraLabel ultraLabel1;
  109. private Infragistics.Win.Misc.UltraLabel ultraLabel2;
  110. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtUserID;
  111. private Infragistics.Win.UltraWinEditors.UltraTextEditor txtPassWord;
  112. private Infragistics.Win.Misc.UltraButton btnCommit;
  113. private Infragistics.Win.Misc.UltraButton btnCancel;
  114. }
  115. }