FormAuthorization.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. namespace СУБД_Швейная_фабрика
  2. {
  3. partial class FormAuthorization
  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.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAuthorization));
  30. this.pracFabricaDataSet = new СУБД_Швейная_фабрика.pracFabricaDataSet();
  31. this.BsUsers = new System.Windows.Forms.BindingSource(this.components);
  32. this.usersTableAdapter = new СУБД_Швейная_фабрика.pracFabricaDataSetTableAdapters.UsersTableAdapter();
  33. this.TbxCapcha = new System.Windows.Forms.TextBox();
  34. this.label5 = new System.Windows.Forms.Label();
  35. this.LblCapcha = new System.Windows.Forms.Label();
  36. this.LblReg = new System.Windows.Forms.Label();
  37. this.BtnLogin = new System.Windows.Forms.Button();
  38. this.CbxShowPass = new System.Windows.Forms.CheckBox();
  39. this.TbxPass = new System.Windows.Forms.TextBox();
  40. this.TbxLogin = new System.Windows.Forms.TextBox();
  41. this.label4 = new System.Windows.Forms.Label();
  42. this.label3 = new System.Windows.Forms.Label();
  43. this.label2 = new System.Windows.Forms.Label();
  44. this.CmbRole = new System.Windows.Forms.ComboBox();
  45. this.panel1 = new System.Windows.Forms.Panel();
  46. this.label1 = new System.Windows.Forms.Label();
  47. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  48. ((System.ComponentModel.ISupportInitialize)(this.pracFabricaDataSet)).BeginInit();
  49. ((System.ComponentModel.ISupportInitialize)(this.BsUsers)).BeginInit();
  50. this.panel1.SuspendLayout();
  51. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  52. this.SuspendLayout();
  53. //
  54. // pracFabricaDataSet
  55. //
  56. this.pracFabricaDataSet.DataSetName = "db_22factoryDataSet";
  57. this.pracFabricaDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  58. //
  59. // BsUsers
  60. //
  61. this.BsUsers.DataMember = "Users";
  62. this.BsUsers.DataSource = this.pracFabricaDataSet;
  63. //
  64. // usersTableAdapter
  65. //
  66. this.usersTableAdapter.ClearBeforeFill = true;
  67. //
  68. // TbxCapcha
  69. //
  70. this.TbxCapcha.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  71. this.TbxCapcha.Location = new System.Drawing.Point(124, 383);
  72. this.TbxCapcha.Margin = new System.Windows.Forms.Padding(2);
  73. this.TbxCapcha.Name = "TbxCapcha";
  74. this.TbxCapcha.Size = new System.Drawing.Size(87, 22);
  75. this.TbxCapcha.TabIndex = 26;
  76. //
  77. // label5
  78. //
  79. this.label5.AutoSize = true;
  80. this.label5.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  81. this.label5.Location = new System.Drawing.Point(37, 386);
  82. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  83. this.label5.Name = "label5";
  84. this.label5.Size = new System.Drawing.Size(85, 16);
  85. this.label5.TabIndex = 25;
  86. this.label5.Text = "Введите капчу:";
  87. //
  88. // LblCapcha
  89. //
  90. this.LblCapcha.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  91. this.LblCapcha.Font = new System.Drawing.Font("Segoe Script", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  92. this.LblCapcha.Location = new System.Drawing.Point(35, 334);
  93. this.LblCapcha.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  94. this.LblCapcha.Name = "LblCapcha";
  95. this.LblCapcha.Size = new System.Drawing.Size(119, 40);
  96. this.LblCapcha.TabIndex = 24;
  97. this.LblCapcha.Text = "label";
  98. this.LblCapcha.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  99. this.LblCapcha.Paint += new System.Windows.Forms.PaintEventHandler(this.LblCapcha_Paint);
  100. //
  101. // LblReg
  102. //
  103. this.LblReg.AutoSize = true;
  104. this.LblReg.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  105. this.LblReg.ForeColor = System.Drawing.Color.Blue;
  106. this.LblReg.Location = new System.Drawing.Point(37, 450);
  107. this.LblReg.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  108. this.LblReg.Name = "LblReg";
  109. this.LblReg.Size = new System.Drawing.Size(161, 16);
  110. this.LblReg.TabIndex = 23;
  111. this.LblReg.Text = "Регистрация нового заказчика";
  112. this.LblReg.Click += new System.EventHandler(this.LblReg_Click);
  113. //
  114. // BtnLogin
  115. //
  116. this.BtnLogin.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(156)))), ((int)(((byte)(26)))));
  117. this.BtnLogin.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  118. this.BtnLogin.Location = new System.Drawing.Point(249, 437);
  119. this.BtnLogin.Margin = new System.Windows.Forms.Padding(2);
  120. this.BtnLogin.Name = "BtnLogin";
  121. this.BtnLogin.Size = new System.Drawing.Size(126, 43);
  122. this.BtnLogin.TabIndex = 22;
  123. this.BtnLogin.Text = "Вход";
  124. this.BtnLogin.UseVisualStyleBackColor = false;
  125. this.BtnLogin.Click += new System.EventHandler(this.BtnLogin_Click);
  126. //
  127. // CbxShowPass
  128. //
  129. this.CbxShowPass.AutoSize = true;
  130. this.CbxShowPass.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  131. this.CbxShowPass.Location = new System.Drawing.Point(200, 247);
  132. this.CbxShowPass.Margin = new System.Windows.Forms.Padding(2);
  133. this.CbxShowPass.Name = "CbxShowPass";
  134. this.CbxShowPass.Size = new System.Drawing.Size(174, 20);
  135. this.CbxShowPass.TabIndex = 21;
  136. this.CbxShowPass.Text = "Показывать символы пароля";
  137. this.CbxShowPass.UseVisualStyleBackColor = true;
  138. this.CbxShowPass.CheckedChanged += new System.EventHandler(this.CbxShowPass_CheckedChanged);
  139. //
  140. // TbxPass
  141. //
  142. this.TbxPass.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  143. this.TbxPass.Location = new System.Drawing.Point(200, 217);
  144. this.TbxPass.Margin = new System.Windows.Forms.Padding(2);
  145. this.TbxPass.Name = "TbxPass";
  146. this.TbxPass.Size = new System.Drawing.Size(178, 22);
  147. this.TbxPass.TabIndex = 20;
  148. this.TbxPass.UseSystemPasswordChar = true;
  149. //
  150. // TbxLogin
  151. //
  152. this.TbxLogin.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  153. this.TbxLogin.Location = new System.Drawing.Point(200, 174);
  154. this.TbxLogin.Margin = new System.Windows.Forms.Padding(2);
  155. this.TbxLogin.Name = "TbxLogin";
  156. this.TbxLogin.Size = new System.Drawing.Size(178, 22);
  157. this.TbxLogin.TabIndex = 19;
  158. //
  159. // label4
  160. //
  161. this.label4.AutoSize = true;
  162. this.label4.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  163. this.label4.Location = new System.Drawing.Point(202, 199);
  164. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  165. this.label4.Name = "label4";
  166. this.label4.Size = new System.Drawing.Size(89, 16);
  167. this.label4.TabIndex = 18;
  168. this.label4.Text = "Введите пароль";
  169. //
  170. // label3
  171. //
  172. this.label3.AutoSize = true;
  173. this.label3.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  174. this.label3.Location = new System.Drawing.Point(200, 157);
  175. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  176. this.label3.Name = "label3";
  177. this.label3.Size = new System.Drawing.Size(81, 16);
  178. this.label3.TabIndex = 17;
  179. this.label3.Text = "Введите логин";
  180. //
  181. // label2
  182. //
  183. this.label2.AutoSize = true;
  184. this.label2.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  185. this.label2.Location = new System.Drawing.Point(13, 177);
  186. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  187. this.label2.Name = "label2";
  188. this.label2.Size = new System.Drawing.Size(154, 16);
  189. this.label2.TabIndex = 16;
  190. this.label2.Text = "Выберите, кто авторизуется";
  191. //
  192. // CmbRole
  193. //
  194. this.CmbRole.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  195. this.CmbRole.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  196. this.CmbRole.FormattingEnabled = true;
  197. this.CmbRole.Items.AddRange(new object[] {
  198. "Заказчик",
  199. "Менеджер",
  200. "Кладовщик"});
  201. this.CmbRole.Location = new System.Drawing.Point(13, 196);
  202. this.CmbRole.Margin = new System.Windows.Forms.Padding(2);
  203. this.CmbRole.Name = "CmbRole";
  204. this.CmbRole.Size = new System.Drawing.Size(178, 24);
  205. this.CmbRole.TabIndex = 15;
  206. //
  207. // panel1
  208. //
  209. this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(225)))));
  210. this.panel1.Controls.Add(this.label1);
  211. this.panel1.Controls.Add(this.pictureBox1);
  212. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  213. this.panel1.Location = new System.Drawing.Point(0, 0);
  214. this.panel1.Margin = new System.Windows.Forms.Padding(2);
  215. this.panel1.Name = "panel1";
  216. this.panel1.Size = new System.Drawing.Size(389, 106);
  217. this.panel1.TabIndex = 14;
  218. //
  219. // label1
  220. //
  221. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  222. this.label1.Font = new System.Drawing.Font("Arial Narrow", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  223. this.label1.Location = new System.Drawing.Point(133, 0);
  224. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  225. this.label1.Name = "label1";
  226. this.label1.Size = new System.Drawing.Size(256, 106);
  227. this.label1.TabIndex = 1;
  228. this.label1.Text = "Авторизация";
  229. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  230. //
  231. // pictureBox1
  232. //
  233. this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Left;
  234. this.pictureBox1.Image = global::СУБД_Швейная_фабрика.Properties.Resources.fabric_logo;
  235. this.pictureBox1.Location = new System.Drawing.Point(0, 0);
  236. this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
  237. this.pictureBox1.Name = "pictureBox1";
  238. this.pictureBox1.Size = new System.Drawing.Size(133, 106);
  239. this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
  240. this.pictureBox1.TabIndex = 0;
  241. this.pictureBox1.TabStop = false;
  242. //
  243. // FormAuthorization
  244. //
  245. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  246. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  247. this.BackColor = System.Drawing.Color.White;
  248. this.ClientSize = new System.Drawing.Size(389, 491);
  249. this.Controls.Add(this.TbxCapcha);
  250. this.Controls.Add(this.label5);
  251. this.Controls.Add(this.LblCapcha);
  252. this.Controls.Add(this.LblReg);
  253. this.Controls.Add(this.BtnLogin);
  254. this.Controls.Add(this.CbxShowPass);
  255. this.Controls.Add(this.TbxPass);
  256. this.Controls.Add(this.TbxLogin);
  257. this.Controls.Add(this.label4);
  258. this.Controls.Add(this.label3);
  259. this.Controls.Add(this.label2);
  260. this.Controls.Add(this.CmbRole);
  261. this.Controls.Add(this.panel1);
  262. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  263. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  264. this.MaximizeBox = false;
  265. this.MinimizeBox = false;
  266. this.MinimumSize = new System.Drawing.Size(409, 534);
  267. this.Name = "FormAuthorization";
  268. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  269. this.Text = "СУБД \"Швейная фабрика\"";
  270. this.Load += new System.EventHandler(this.FormAuthorization_Load);
  271. ((System.ComponentModel.ISupportInitialize)(this.pracFabricaDataSet)).EndInit();
  272. ((System.ComponentModel.ISupportInitialize)(this.BsUsers)).EndInit();
  273. this.panel1.ResumeLayout(false);
  274. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  275. this.ResumeLayout(false);
  276. this.PerformLayout();
  277. }
  278. #endregion
  279. private pracFabricaDataSet pracFabricaDataSet;
  280. private System.Windows.Forms.BindingSource BsUsers;
  281. private pracFabricaDataSetTableAdapters.UsersTableAdapter usersTableAdapter;
  282. private System.Windows.Forms.TextBox TbxCapcha;
  283. private System.Windows.Forms.Label label5;
  284. private System.Windows.Forms.Label LblCapcha;
  285. private System.Windows.Forms.Label LblReg;
  286. private System.Windows.Forms.Button BtnLogin;
  287. private System.Windows.Forms.CheckBox CbxShowPass;
  288. private System.Windows.Forms.TextBox TbxPass;
  289. private System.Windows.Forms.TextBox TbxLogin;
  290. private System.Windows.Forms.Label label4;
  291. private System.Windows.Forms.Label label3;
  292. private System.Windows.Forms.Label label2;
  293. private System.Windows.Forms.ComboBox CmbRole;
  294. private System.Windows.Forms.Panel panel1;
  295. private System.Windows.Forms.Label label1;
  296. private System.Windows.Forms.PictureBox pictureBox1;
  297. }
  298. }