Login.Designer.cs 12 KB

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