Login.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. namespace UAS_MES
  2. {
  3. partial class Login
  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(Login));
  29. this.UserName = new System.Windows.Forms.TextBox();
  30. this.PassWord = new System.Windows.Forms.TextBox();
  31. this.ForGetPwd = new System.Windows.Forms.LinkLabel();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.panel1 = new System.Windows.Forms.Panel();
  35. this.label4 = new System.Windows.Forms.Label();
  36. this.Source = new System.Windows.Forms.TextBox();
  37. this.label3 = new System.Windows.Forms.Label();
  38. this.LoginButton = new System.Windows.Forms.Button();
  39. this.panel2 = new System.Windows.Forms.Panel();
  40. this.label5 = new System.Windows.Forms.Label();
  41. this.DB = new UAS_MES.CustomControl.ComBoxWithFocus.ComBoxWithFocus();
  42. this.panel1.SuspendLayout();
  43. this.panel2.SuspendLayout();
  44. this.SuspendLayout();
  45. //
  46. // UserName
  47. //
  48. this.UserName.Location = new System.Drawing.Point(94, 69);
  49. this.UserName.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  50. this.UserName.Name = "UserName";
  51. this.UserName.Size = new System.Drawing.Size(200, 23);
  52. this.UserName.TabIndex = 0;
  53. this.UserName.MouseClick += new System.Windows.Forms.MouseEventHandler(this.UserName_MouseClick);
  54. this.UserName.Enter += new System.EventHandler(this.UserName_Enter);
  55. this.UserName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Login_KeyDown);
  56. this.UserName.Leave += new System.EventHandler(this.UserName_Leave);
  57. //
  58. // PassWord
  59. //
  60. this.PassWord.Location = new System.Drawing.Point(94, 114);
  61. this.PassWord.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  62. this.PassWord.Name = "PassWord";
  63. this.PassWord.PasswordChar = '*';
  64. this.PassWord.Size = new System.Drawing.Size(200, 23);
  65. this.PassWord.TabIndex = 1;
  66. this.PassWord.MouseClick += new System.Windows.Forms.MouseEventHandler(this.UserName_MouseClick);
  67. this.PassWord.Enter += new System.EventHandler(this.UserName_Enter);
  68. this.PassWord.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Login_KeyDown);
  69. this.PassWord.Leave += new System.EventHandler(this.UserName_Leave);
  70. //
  71. // ForGetPwd
  72. //
  73. this.ForGetPwd.AutoSize = true;
  74. this.ForGetPwd.Location = new System.Drawing.Point(295, 73);
  75. this.ForGetPwd.Name = "ForGetPwd";
  76. this.ForGetPwd.Size = new System.Drawing.Size(68, 17);
  77. this.ForGetPwd.TabIndex = 5;
  78. this.ForGetPwd.TabStop = true;
  79. this.ForGetPwd.Text = "忘记密码?";
  80. this.ForGetPwd.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ForGetPwd_LinkClicked);
  81. //
  82. // label1
  83. //
  84. this.label1.AutoSize = true;
  85. this.label1.Location = new System.Drawing.Point(42, 73);
  86. this.label1.Name = "label1";
  87. this.label1.Size = new System.Drawing.Size(44, 17);
  88. this.label1.TabIndex = 4;
  89. this.label1.Text = "用户名";
  90. //
  91. // label2
  92. //
  93. this.label2.AutoSize = true;
  94. this.label2.Location = new System.Drawing.Point(42, 118);
  95. this.label2.Name = "label2";
  96. this.label2.Size = new System.Drawing.Size(44, 17);
  97. this.label2.TabIndex = 5;
  98. this.label2.Text = "密 码";
  99. //
  100. // panel1
  101. //
  102. this.panel1.BackColor = System.Drawing.SystemColors.ButtonHighlight;
  103. this.panel1.Controls.Add(this.label4);
  104. this.panel1.Controls.Add(this.Source);
  105. this.panel1.Controls.Add(this.DB);
  106. this.panel1.Controls.Add(this.label3);
  107. this.panel1.Controls.Add(this.LoginButton);
  108. this.panel1.Controls.Add(this.panel2);
  109. this.panel1.Controls.Add(this.UserName);
  110. this.panel1.Controls.Add(this.ForGetPwd);
  111. this.panel1.Controls.Add(this.PassWord);
  112. this.panel1.Controls.Add(this.label2);
  113. this.panel1.Controls.Add(this.label1);
  114. this.panel1.Location = new System.Drawing.Point(164, 86);
  115. this.panel1.Name = "panel1";
  116. this.panel1.Size = new System.Drawing.Size(381, 297);
  117. this.panel1.TabIndex = 9;
  118. //
  119. // label4
  120. //
  121. this.label4.AutoSize = true;
  122. this.label4.Location = new System.Drawing.Point(42, 167);
  123. this.label4.Name = "label4";
  124. this.label4.Size = new System.Drawing.Size(44, 17);
  125. this.label4.TabIndex = 14;
  126. this.label4.Text = "资 源";
  127. //
  128. // Source
  129. //
  130. this.Source.Location = new System.Drawing.Point(94, 164);
  131. this.Source.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  132. this.Source.Name = "Source";
  133. this.Source.Size = new System.Drawing.Size(200, 23);
  134. this.Source.TabIndex = 2;
  135. this.Source.MouseClick += new System.Windows.Forms.MouseEventHandler(this.UserName_MouseClick);
  136. this.Source.Enter += new System.EventHandler(this.UserName_Enter);
  137. this.Source.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Login_KeyDown);
  138. this.Source.Leave += new System.EventHandler(this.UserName_Leave);
  139. //
  140. // label3
  141. //
  142. this.label3.AutoSize = true;
  143. this.label3.Location = new System.Drawing.Point(42, 216);
  144. this.label3.Name = "label3";
  145. this.label3.Size = new System.Drawing.Size(44, 17);
  146. this.label3.TabIndex = 11;
  147. this.label3.Text = "数据库";
  148. //
  149. // LoginButton
  150. //
  151. this.LoginButton.BackColor = System.Drawing.Color.White;
  152. this.LoginButton.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("LoginButton.BackgroundImage")));
  153. this.LoginButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  154. this.LoginButton.Enabled = false;
  155. this.LoginButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  156. this.LoginButton.Location = new System.Drawing.Point(153, 250);
  157. this.LoginButton.Name = "LoginButton";
  158. this.LoginButton.Size = new System.Drawing.Size(75, 30);
  159. this.LoginButton.TabIndex = 4;
  160. this.LoginButton.Text = "登陆";
  161. this.LoginButton.UseVisualStyleBackColor = false;
  162. this.LoginButton.Click += new System.EventHandler(this.LoginButton_Click);
  163. //
  164. // panel2
  165. //
  166. this.panel2.BackColor = System.Drawing.SystemColors.ActiveCaption;
  167. this.panel2.Controls.Add(this.label5);
  168. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  169. this.panel2.Location = new System.Drawing.Point(0, 0);
  170. this.panel2.Name = "panel2";
  171. this.panel2.Size = new System.Drawing.Size(381, 33);
  172. this.panel2.TabIndex = 6;
  173. //
  174. // label5
  175. //
  176. this.label5.AutoSize = true;
  177. this.label5.Font = new System.Drawing.Font("微软雅黑", 14F);
  178. this.label5.ForeColor = System.Drawing.Color.White;
  179. this.label5.Location = new System.Drawing.Point(3, 5);
  180. this.label5.Name = "label5";
  181. this.label5.Size = new System.Drawing.Size(164, 25);
  182. this.label5.TabIndex = 0;
  183. this.label5.Text = "UAS制造执行系统";
  184. //
  185. // DB
  186. //
  187. this.DB.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  188. this.DB.FormattingEnabled = true;
  189. this.DB.Location = new System.Drawing.Point(94, 211);
  190. this.DB.Name = "DB";
  191. this.DB.Size = new System.Drawing.Size(200, 25);
  192. this.DB.TabIndex = 3;
  193. //
  194. // Login
  195. //
  196. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
  197. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  198. this.BackColor = System.Drawing.SystemColors.Control;
  199. this.BackgroundImage = global::UAS_MES.Properties.Resources.LoginBG;
  200. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  201. this.ClientSize = new System.Drawing.Size(705, 461);
  202. this.Controls.Add(this.panel1);
  203. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  204. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  205. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  206. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  207. this.Name = "Login";
  208. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  209. this.Tag = "ShowDialogWindow";
  210. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Login_FormClosing);
  211. this.Load += new System.EventHandler(this.Login_Load);
  212. this.Paint += new System.Windows.Forms.PaintEventHandler(this.Login_Paint);
  213. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Login_MouseDown);
  214. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Login_MouseMove);
  215. this.panel1.ResumeLayout(false);
  216. this.panel1.PerformLayout();
  217. this.panel2.ResumeLayout(false);
  218. this.panel2.PerformLayout();
  219. this.ResumeLayout(false);
  220. }
  221. #endregion
  222. private System.Windows.Forms.TextBox UserName;
  223. private System.Windows.Forms.TextBox PassWord;
  224. private System.Windows.Forms.LinkLabel ForGetPwd;
  225. private System.Windows.Forms.Label label1;
  226. private System.Windows.Forms.Label label2;
  227. private System.Windows.Forms.Panel panel1;
  228. private System.Windows.Forms.Panel panel2;
  229. private System.Windows.Forms.Button LoginButton;
  230. private CustomControl.ComBoxWithFocus.ComBoxWithFocus DB;
  231. private System.Windows.Forms.Label label3;
  232. private System.Windows.Forms.Label label4;
  233. private System.Windows.Forms.TextBox Source;
  234. private System.Windows.Forms.Label label5;
  235. }
  236. }