LoginForm.Designer.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. namespace GCAS
  2. {
  3. partial class LoginForm
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
  29. this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
  30. this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
  31. this.text_username = new DevExpress.XtraEditors.TextEdit();
  32. this.text_password = new DevExpress.XtraEditors.TextEdit();
  33. this.btn_login = new DevExpress.XtraEditors.SimpleButton();
  34. this.btn_cancel = new DevExpress.XtraEditors.SimpleButton();
  35. this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
  36. this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
  37. this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
  38. ((System.ComponentModel.ISupportInitialize)(this.text_username.Properties)).BeginInit();
  39. ((System.ComponentModel.ISupportInitialize)(this.text_password.Properties)).BeginInit();
  40. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
  41. this.panelControl1.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // labelControl1
  45. //
  46. this.labelControl1.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl1.Appearance.Font")));
  47. this.labelControl1.Appearance.Options.UseFont = true;
  48. resources.ApplyResources(this.labelControl1, "labelControl1");
  49. this.labelControl1.Name = "labelControl1";
  50. //
  51. // labelControl2
  52. //
  53. this.labelControl2.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl2.Appearance.Font")));
  54. this.labelControl2.Appearance.Options.UseFont = true;
  55. resources.ApplyResources(this.labelControl2, "labelControl2");
  56. this.labelControl2.Name = "labelControl2";
  57. //
  58. // text_username
  59. //
  60. resources.ApplyResources(this.text_username, "text_username");
  61. this.text_username.Name = "text_username";
  62. this.text_username.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("text_username.Properties.Appearance.BackColor")));
  63. this.text_username.Properties.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("text_username.Properties.Appearance.Font")));
  64. this.text_username.Properties.Appearance.Options.UseBackColor = true;
  65. this.text_username.Properties.Appearance.Options.UseFont = true;
  66. this.text_username.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
  67. this.text_username.Click += new System.EventHandler(this.text_username_Click);
  68. //
  69. // text_password
  70. //
  71. resources.ApplyResources(this.text_password, "text_password");
  72. this.text_password.Name = "text_password";
  73. this.text_password.Properties.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("text_password.Properties.Appearance.BackColor")));
  74. this.text_password.Properties.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("text_password.Properties.Appearance.Font")));
  75. this.text_password.Properties.Appearance.Options.UseBackColor = true;
  76. this.text_password.Properties.Appearance.Options.UseFont = true;
  77. this.text_password.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
  78. this.text_password.Properties.PasswordChar = '*';
  79. this.text_password.Properties.UseSystemPasswordChar = true;
  80. this.text_password.Click += new System.EventHandler(this.text_password_Click);
  81. //
  82. // btn_login
  83. //
  84. this.btn_login.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("btn_login.Appearance.Font")));
  85. this.btn_login.Appearance.Options.UseFont = true;
  86. this.btn_login.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btn_login.ImageOptions.Image")));
  87. resources.ApplyResources(this.btn_login, "btn_login");
  88. this.btn_login.Name = "btn_login";
  89. this.btn_login.Click += new System.EventHandler(this.btn_login_Click);
  90. //
  91. // btn_cancel
  92. //
  93. this.btn_cancel.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("btn_cancel.Appearance.Font")));
  94. this.btn_cancel.Appearance.Options.UseFont = true;
  95. this.btn_cancel.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btn_cancel.ImageOptions.Image")));
  96. resources.ApplyResources(this.btn_cancel, "btn_cancel");
  97. this.btn_cancel.Name = "btn_cancel";
  98. this.btn_cancel.Click += new System.EventHandler(this.btn_cancel_Click);
  99. //
  100. // labelControl3
  101. //
  102. this.labelControl3.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl3.Appearance.Font")));
  103. this.labelControl3.Appearance.ForeColor = ((System.Drawing.Color)(resources.GetObject("labelControl3.Appearance.ForeColor")));
  104. this.labelControl3.Appearance.Options.UseFont = true;
  105. this.labelControl3.Appearance.Options.UseForeColor = true;
  106. resources.ApplyResources(this.labelControl3, "labelControl3");
  107. this.labelControl3.Name = "labelControl3";
  108. //
  109. // labelControl4
  110. //
  111. this.labelControl4.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("labelControl4.Appearance.Font")));
  112. this.labelControl4.Appearance.Options.UseFont = true;
  113. resources.ApplyResources(this.labelControl4, "labelControl4");
  114. this.labelControl4.Name = "labelControl4";
  115. //
  116. // panelControl1
  117. //
  118. this.panelControl1.Appearance.BackColor = ((System.Drawing.Color)(resources.GetObject("panelControl1.Appearance.BackColor")));
  119. this.panelControl1.Appearance.Options.UseBackColor = true;
  120. this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
  121. this.panelControl1.ContentImage = global::GCAS.Properties.Resources.loginbgZH;
  122. this.panelControl1.Controls.Add(this.labelControl3);
  123. this.panelControl1.Controls.Add(this.labelControl1);
  124. this.panelControl1.Controls.Add(this.labelControl2);
  125. this.panelControl1.Controls.Add(this.btn_cancel);
  126. this.panelControl1.Controls.Add(this.text_username);
  127. this.panelControl1.Controls.Add(this.btn_login);
  128. this.panelControl1.Controls.Add(this.text_password);
  129. resources.ApplyResources(this.panelControl1, "panelControl1");
  130. this.panelControl1.Name = "panelControl1";
  131. //
  132. // LoginForm
  133. //
  134. this.AcceptButton = this.btn_login;
  135. resources.ApplyResources(this, "$this");
  136. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  137. this.Controls.Add(this.panelControl1);
  138. this.Controls.Add(this.labelControl4);
  139. this.DoubleBuffered = true;
  140. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  141. this.MaximizeBox = false;
  142. this.MinimizeBox = false;
  143. this.Name = "LoginForm";
  144. this.Load += new System.EventHandler(this.LoginForm_Load);
  145. ((System.ComponentModel.ISupportInitialize)(this.text_username.Properties)).EndInit();
  146. ((System.ComponentModel.ISupportInitialize)(this.text_password.Properties)).EndInit();
  147. ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
  148. this.panelControl1.ResumeLayout(false);
  149. this.panelControl1.PerformLayout();
  150. this.ResumeLayout(false);
  151. this.PerformLayout();
  152. }
  153. #endregion
  154. private DevExpress.XtraEditors.LabelControl labelControl1;
  155. private DevExpress.XtraEditors.LabelControl labelControl2;
  156. private DevExpress.XtraEditors.TextEdit text_username;
  157. private DevExpress.XtraEditors.TextEdit text_password;
  158. private DevExpress.XtraEditors.SimpleButton btn_login;
  159. private DevExpress.XtraEditors.SimpleButton btn_cancel;
  160. private DevExpress.XtraEditors.LabelControl labelControl3;
  161. private DevExpress.XtraEditors.LabelControl labelControl4;
  162. private DevExpress.XtraEditors.PanelControl panelControl1;
  163. }
  164. }