No Description

UserLoginForm.Designer.cs 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. namespace BulkPrinting
  2. {
  3. partial class UserLoginForm
  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(UserLoginForm));
  29. this.txtUsername = new System.Windows.Forms.TextBox();
  30. this.txtUserID = new System.Windows.Forms.TextBox();
  31. this.txtPassword = new System.Windows.Forms.TextBox();
  32. this.btnLogin = new System.Windows.Forms.Button();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.label2 = new System.Windows.Forms.Label();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.txtVendorID = new System.Windows.Forms.TextBox();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label5 = new System.Windows.Forms.Label();
  39. this.lblHDDSerial = new System.Windows.Forms.Label();
  40. this.chkOffline = new System.Windows.Forms.CheckBox();
  41. this.chkRemember = new System.Windows.Forms.CheckBox();
  42. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  43. this.label6 = new System.Windows.Forms.Label();
  44. this.lblVersion = new System.Windows.Forms.Label();
  45. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  46. this.SuspendLayout();
  47. //
  48. // txtUsername
  49. //
  50. this.txtUsername.Location = new System.Drawing.Point(107, 106);
  51. this.txtUsername.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  52. this.txtUsername.Name = "txtUsername";
  53. this.txtUsername.Size = new System.Drawing.Size(255, 22);
  54. this.txtUsername.TabIndex = 0;
  55. //
  56. // txtUserID
  57. //
  58. this.txtUserID.Location = new System.Drawing.Point(107, 138);
  59. this.txtUserID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  60. this.txtUserID.Name = "txtUserID";
  61. this.txtUserID.Size = new System.Drawing.Size(255, 22);
  62. this.txtUserID.TabIndex = 1;
  63. //
  64. // txtPassword
  65. //
  66. this.txtPassword.Location = new System.Drawing.Point(107, 170);
  67. this.txtPassword.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  68. this.txtPassword.Name = "txtPassword";
  69. this.txtPassword.PasswordChar = '*';
  70. this.txtPassword.Size = new System.Drawing.Size(255, 22);
  71. this.txtPassword.TabIndex = 2;
  72. //
  73. // btnLogin
  74. //
  75. this.btnLogin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  76. this.btnLogin.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  77. this.btnLogin.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  78. this.btnLogin.ForeColor = System.Drawing.Color.White;
  79. this.btnLogin.Location = new System.Drawing.Point(21, 298);
  80. this.btnLogin.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  81. this.btnLogin.Name = "btnLogin";
  82. this.btnLogin.Size = new System.Drawing.Size(100, 28);
  83. this.btnLogin.TabIndex = 6;
  84. this.btnLogin.Text = "Login";
  85. this.btnLogin.UseVisualStyleBackColor = false;
  86. this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
  87. //
  88. // label1
  89. //
  90. this.label1.AutoSize = true;
  91. this.label1.ForeColor = System.Drawing.Color.White;
  92. this.label1.Location = new System.Drawing.Point(17, 106);
  93. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  94. this.label1.Name = "label1";
  95. this.label1.Size = new System.Drawing.Size(73, 17);
  96. this.label1.TabIndex = 5;
  97. this.label1.Text = "Username";
  98. this.label1.Click += new System.EventHandler(this.label1_Click);
  99. //
  100. // label2
  101. //
  102. this.label2.AutoSize = true;
  103. this.label2.ForeColor = System.Drawing.Color.White;
  104. this.label2.Location = new System.Drawing.Point(16, 138);
  105. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  106. this.label2.Name = "label2";
  107. this.label2.Size = new System.Drawing.Size(55, 17);
  108. this.label2.TabIndex = 6;
  109. this.label2.Text = "User ID";
  110. this.label2.Click += new System.EventHandler(this.label2_Click);
  111. //
  112. // label3
  113. //
  114. this.label3.AutoSize = true;
  115. this.label3.ForeColor = System.Drawing.Color.White;
  116. this.label3.Location = new System.Drawing.Point(16, 170);
  117. this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  118. this.label3.Name = "label3";
  119. this.label3.Size = new System.Drawing.Size(69, 17);
  120. this.label3.TabIndex = 7;
  121. this.label3.Text = "Password";
  122. this.label3.Click += new System.EventHandler(this.label3_Click);
  123. //
  124. // txtVendorID
  125. //
  126. this.txtVendorID.Location = new System.Drawing.Point(107, 203);
  127. this.txtVendorID.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  128. this.txtVendorID.Name = "txtVendorID";
  129. this.txtVendorID.Size = new System.Drawing.Size(255, 22);
  130. this.txtVendorID.TabIndex = 3;
  131. this.txtVendorID.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtVendorID_KeyPress);
  132. //
  133. // label4
  134. //
  135. this.label4.AutoSize = true;
  136. this.label4.ForeColor = System.Drawing.Color.White;
  137. this.label4.Location = new System.Drawing.Point(16, 203);
  138. this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  139. this.label4.Name = "label4";
  140. this.label4.Size = new System.Drawing.Size(71, 17);
  141. this.label4.TabIndex = 9;
  142. this.label4.Text = "Vendor ID";
  143. this.label4.Click += new System.EventHandler(this.label4_Click);
  144. //
  145. // label5
  146. //
  147. this.label5.AutoSize = true;
  148. this.label5.ForeColor = System.Drawing.Color.White;
  149. this.label5.Location = new System.Drawing.Point(18, 240);
  150. this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  151. this.label5.Name = "label5";
  152. this.label5.Size = new System.Drawing.Size(82, 17);
  153. this.label5.TabIndex = 10;
  154. this.label5.Text = "Vendor Key";
  155. this.label5.Click += new System.EventHandler(this.label5_Click);
  156. //
  157. // lblHDDSerial
  158. //
  159. this.lblHDDSerial.AutoSize = true;
  160. this.lblHDDSerial.Location = new System.Drawing.Point(108, 240);
  161. this.lblHDDSerial.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  162. this.lblHDDSerial.Name = "lblHDDSerial";
  163. this.lblHDDSerial.Size = new System.Drawing.Size(0, 17);
  164. this.lblHDDSerial.TabIndex = 11;
  165. //
  166. // chkOffline
  167. //
  168. this.chkOffline.AutoSize = true;
  169. this.chkOffline.ForeColor = System.Drawing.Color.White;
  170. this.chkOffline.Location = new System.Drawing.Point(137, 303);
  171. this.chkOffline.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  172. this.chkOffline.Name = "chkOffline";
  173. this.chkOffline.Size = new System.Drawing.Size(71, 21);
  174. this.chkOffline.TabIndex = 5;
  175. this.chkOffline.Text = "Offline";
  176. this.chkOffline.UseVisualStyleBackColor = true;
  177. this.chkOffline.CheckedChanged += new System.EventHandler(this.chkOffline_CheckedChanged);
  178. //
  179. // chkRemember
  180. //
  181. this.chkRemember.AutoSize = true;
  182. this.chkRemember.ForeColor = System.Drawing.Color.White;
  183. this.chkRemember.Location = new System.Drawing.Point(216, 303);
  184. this.chkRemember.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  185. this.chkRemember.Name = "chkRemember";
  186. this.chkRemember.Size = new System.Drawing.Size(122, 21);
  187. this.chkRemember.TabIndex = 4;
  188. this.chkRemember.Text = "Remember Me";
  189. this.chkRemember.UseVisualStyleBackColor = true;
  190. this.chkRemember.CheckedChanged += new System.EventHandler(this.chkRemember_CheckedChanged);
  191. //
  192. // pictureBox1
  193. //
  194. this.pictureBox1.Image = global::BulkPrinting.Properties.Resources.rgroup_bulk_print_app_260x70;
  195. this.pictureBox1.Location = new System.Drawing.Point(16, 7);
  196. this.pictureBox1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  197. this.pictureBox1.Name = "pictureBox1";
  198. this.pictureBox1.Size = new System.Drawing.Size(347, 87);
  199. this.pictureBox1.TabIndex = 12;
  200. this.pictureBox1.TabStop = false;
  201. this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
  202. //
  203. // label6
  204. //
  205. this.label6.AutoSize = true;
  206. this.label6.ForeColor = System.Drawing.Color.White;
  207. this.label6.Location = new System.Drawing.Point(18, 267);
  208. this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  209. this.label6.Name = "label6";
  210. this.label6.Size = new System.Drawing.Size(56, 17);
  211. this.label6.TabIndex = 13;
  212. this.label6.Text = "Version";
  213. //
  214. // lblVersion
  215. //
  216. this.lblVersion.AutoSize = true;
  217. this.lblVersion.Location = new System.Drawing.Point(108, 267);
  218. this.lblVersion.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  219. this.lblVersion.Name = "lblVersion";
  220. this.lblVersion.Size = new System.Drawing.Size(0, 17);
  221. this.lblVersion.TabIndex = 14;
  222. //
  223. // UserLoginForm
  224. //
  225. this.AcceptButton = this.btnLogin;
  226. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  227. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  228. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(7)))), ((int)(((byte)(63)))), ((int)(((byte)(145)))));
  229. this.ClientSize = new System.Drawing.Size(376, 333);
  230. this.Controls.Add(this.lblVersion);
  231. this.Controls.Add(this.label6);
  232. this.Controls.Add(this.pictureBox1);
  233. this.Controls.Add(this.chkRemember);
  234. this.Controls.Add(this.chkOffline);
  235. this.Controls.Add(this.lblHDDSerial);
  236. this.Controls.Add(this.label5);
  237. this.Controls.Add(this.label4);
  238. this.Controls.Add(this.txtVendorID);
  239. this.Controls.Add(this.label3);
  240. this.Controls.Add(this.label2);
  241. this.Controls.Add(this.label1);
  242. this.Controls.Add(this.btnLogin);
  243. this.Controls.Add(this.txtPassword);
  244. this.Controls.Add(this.txtUserID);
  245. this.Controls.Add(this.txtUsername);
  246. this.ForeColor = System.Drawing.Color.White;
  247. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  248. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  249. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  250. this.MaximizeBox = false;
  251. this.MinimizeBox = false;
  252. this.Name = "UserLoginForm";
  253. this.Text = "R-Group Bulk Printing";
  254. this.Load += new System.EventHandler(this.UserLoginForm_Load);
  255. this.Shown += new System.EventHandler(this.UserLoginForm_Shown);
  256. this.VisibleChanged += new System.EventHandler(this.UserLoginForm_VisibleChanged);
  257. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  258. this.ResumeLayout(false);
  259. this.PerformLayout();
  260. }
  261. #endregion
  262. private System.Windows.Forms.TextBox txtUsername;
  263. private System.Windows.Forms.TextBox txtUserID;
  264. private System.Windows.Forms.TextBox txtPassword;
  265. private System.Windows.Forms.Button btnLogin;
  266. private System.Windows.Forms.Label label1;
  267. private System.Windows.Forms.Label label2;
  268. private System.Windows.Forms.Label label3;
  269. private System.Windows.Forms.TextBox txtVendorID;
  270. private System.Windows.Forms.Label label4;
  271. private System.Windows.Forms.Label label5;
  272. private System.Windows.Forms.Label lblHDDSerial;
  273. private System.Windows.Forms.CheckBox chkOffline;
  274. private System.Windows.Forms.CheckBox chkRemember;
  275. private System.Windows.Forms.PictureBox pictureBox1;
  276. private System.Windows.Forms.Label label6;
  277. private System.Windows.Forms.Label lblVersion;
  278. }
  279. }