fRegistration.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. namespace Швейная_фабрика
  2. {
  3. partial class fRegistration
  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.bCancel = new System.Windows.Forms.Button();
  29. this.bOK = new System.Windows.Forms.Button();
  30. this.tbxPhoneNumber = new System.Windows.Forms.TextBox();
  31. this.tbxName = new System.Windows.Forms.TextBox();
  32. this.tbxPatronymic = new System.Windows.Forms.TextBox();
  33. this.tbxSurname = new System.Windows.Forms.TextBox();
  34. this.tbxLogin = new System.Windows.Forms.TextBox();
  35. this.tbxPassword = new System.Windows.Forms.TextBox();
  36. this.tbxConfirmPassword = new System.Windows.Forms.TextBox();
  37. this.cbxRole = new System.Windows.Forms.ComboBox();
  38. this.lblName = new System.Windows.Forms.Label();
  39. this.lblPatronymic = new System.Windows.Forms.Label();
  40. this.lblSurname = new System.Windows.Forms.Label();
  41. this.lblLogin = new System.Windows.Forms.Label();
  42. this.lblEnterPassword = new System.Windows.Forms.Label();
  43. this.lblConfirmPassword = new System.Windows.Forms.Label();
  44. this.lblPhoneNumber = new System.Windows.Forms.Label();
  45. this.lblRole = new System.Windows.Forms.Label();
  46. this.chbxShowPassword = new System.Windows.Forms.CheckBox();
  47. this.SuspendLayout();
  48. //
  49. // bCancel
  50. //
  51. this.bCancel.Location = new System.Drawing.Point(158, 249);
  52. this.bCancel.Name = "bCancel";
  53. this.bCancel.Size = new System.Drawing.Size(142, 23);
  54. this.bCancel.TabIndex = 0;
  55. this.bCancel.Text = "Отменить регистрацию";
  56. this.bCancel.UseVisualStyleBackColor = true;
  57. //
  58. // bOK
  59. //
  60. this.bOK.Location = new System.Drawing.Point(10, 249);
  61. this.bOK.Name = "bOK";
  62. this.bOK.Size = new System.Drawing.Size(142, 23);
  63. this.bOK.TabIndex = 1;
  64. this.bOK.Text = "Зарегистрироваться";
  65. this.bOK.UseVisualStyleBackColor = true;
  66. //
  67. // tbxPhoneNumber
  68. //
  69. this.tbxPhoneNumber.Location = new System.Drawing.Point(156, 90);
  70. this.tbxPhoneNumber.Name = "tbxPhoneNumber";
  71. this.tbxPhoneNumber.Size = new System.Drawing.Size(145, 20);
  72. this.tbxPhoneNumber.TabIndex = 2;
  73. //
  74. // tbxName
  75. //
  76. this.tbxName.Location = new System.Drawing.Point(156, 12);
  77. this.tbxName.Name = "tbxName";
  78. this.tbxName.Size = new System.Drawing.Size(145, 20);
  79. this.tbxName.TabIndex = 3;
  80. //
  81. // tbxPatronymic
  82. //
  83. this.tbxPatronymic.Location = new System.Drawing.Point(156, 38);
  84. this.tbxPatronymic.Name = "tbxPatronymic";
  85. this.tbxPatronymic.Size = new System.Drawing.Size(145, 20);
  86. this.tbxPatronymic.TabIndex = 4;
  87. //
  88. // tbxSurname
  89. //
  90. this.tbxSurname.Location = new System.Drawing.Point(156, 64);
  91. this.tbxSurname.Name = "tbxSurname";
  92. this.tbxSurname.Size = new System.Drawing.Size(145, 20);
  93. this.tbxSurname.TabIndex = 5;
  94. //
  95. // tbxLogin
  96. //
  97. this.tbxLogin.Location = new System.Drawing.Point(156, 143);
  98. this.tbxLogin.Name = "tbxLogin";
  99. this.tbxLogin.Size = new System.Drawing.Size(145, 20);
  100. this.tbxLogin.TabIndex = 6;
  101. //
  102. // tbxPassword
  103. //
  104. this.tbxPassword.Location = new System.Drawing.Point(156, 169);
  105. this.tbxPassword.Name = "tbxPassword";
  106. this.tbxPassword.Size = new System.Drawing.Size(145, 20);
  107. this.tbxPassword.TabIndex = 7;
  108. //
  109. // tbxConfirmPassword
  110. //
  111. this.tbxConfirmPassword.Location = new System.Drawing.Point(156, 195);
  112. this.tbxConfirmPassword.Name = "tbxConfirmPassword";
  113. this.tbxConfirmPassword.Size = new System.Drawing.Size(145, 20);
  114. this.tbxConfirmPassword.TabIndex = 8;
  115. //
  116. // cbxRole
  117. //
  118. this.cbxRole.FormattingEnabled = true;
  119. this.cbxRole.Location = new System.Drawing.Point(156, 116);
  120. this.cbxRole.Name = "cbxRole";
  121. this.cbxRole.Size = new System.Drawing.Size(145, 21);
  122. this.cbxRole.TabIndex = 9;
  123. //
  124. // lblName
  125. //
  126. this.lblName.AutoSize = true;
  127. this.lblName.Location = new System.Drawing.Point(11, 15);
  128. this.lblName.Name = "lblName";
  129. this.lblName.Size = new System.Drawing.Size(75, 13);
  130. this.lblName.TabIndex = 10;
  131. this.lblName.Text = "Введите имя.";
  132. //
  133. // lblPatronymic
  134. //
  135. this.lblPatronymic.AutoSize = true;
  136. this.lblPatronymic.Location = new System.Drawing.Point(11, 41);
  137. this.lblPatronymic.Name = "lblPatronymic";
  138. this.lblPatronymic.Size = new System.Drawing.Size(100, 13);
  139. this.lblPatronymic.TabIndex = 11;
  140. this.lblPatronymic.Text = "Введите отчество.";
  141. //
  142. // lblSurname
  143. //
  144. this.lblSurname.AutoSize = true;
  145. this.lblSurname.Location = new System.Drawing.Point(11, 67);
  146. this.lblSurname.Name = "lblSurname";
  147. this.lblSurname.Size = new System.Drawing.Size(103, 13);
  148. this.lblSurname.TabIndex = 12;
  149. this.lblSurname.Text = "Введите фамилию.";
  150. //
  151. // lblLogin
  152. //
  153. this.lblLogin.AutoSize = true;
  154. this.lblLogin.Location = new System.Drawing.Point(11, 146);
  155. this.lblLogin.Name = "lblLogin";
  156. this.lblLogin.Size = new System.Drawing.Size(84, 13);
  157. this.lblLogin.TabIndex = 13;
  158. this.lblLogin.Text = "Введите логин.";
  159. //
  160. // lblEnterPassword
  161. //
  162. this.lblEnterPassword.AutoSize = true;
  163. this.lblEnterPassword.Location = new System.Drawing.Point(11, 172);
  164. this.lblEnterPassword.Name = "lblEnterPassword";
  165. this.lblEnterPassword.Size = new System.Drawing.Size(91, 13);
  166. this.lblEnterPassword.TabIndex = 14;
  167. this.lblEnterPassword.Text = "Введите пароль.";
  168. //
  169. // lblConfirmPassword
  170. //
  171. this.lblConfirmPassword.AutoSize = true;
  172. this.lblConfirmPassword.Location = new System.Drawing.Point(11, 198);
  173. this.lblConfirmPassword.Name = "lblConfirmPassword";
  174. this.lblConfirmPassword.Size = new System.Drawing.Size(115, 13);
  175. this.lblConfirmPassword.TabIndex = 15;
  176. this.lblConfirmPassword.Text = "Подтвердите пароль.";
  177. //
  178. // lblPhoneNumber
  179. //
  180. this.lblPhoneNumber.AutoSize = true;
  181. this.lblPhoneNumber.Location = new System.Drawing.Point(11, 93);
  182. this.lblPhoneNumber.Name = "lblPhoneNumber";
  183. this.lblPhoneNumber.Size = new System.Drawing.Size(139, 13);
  184. this.lblPhoneNumber.TabIndex = 16;
  185. this.lblPhoneNumber.Text = "Введите номер телефона.";
  186. //
  187. // lblRole
  188. //
  189. this.lblRole.AutoSize = true;
  190. this.lblRole.Location = new System.Drawing.Point(11, 119);
  191. this.lblRole.Name = "lblRole";
  192. this.lblRole.Size = new System.Drawing.Size(87, 13);
  193. this.lblRole.TabIndex = 17;
  194. this.lblRole.Text = "Выберите роль.";
  195. //
  196. // chbxShowPassword
  197. //
  198. this.chbxShowPassword.AutoSize = true;
  199. this.chbxShowPassword.Location = new System.Drawing.Point(11, 226);
  200. this.chbxShowPassword.Name = "chbxShowPassword";
  201. this.chbxShowPassword.Size = new System.Drawing.Size(114, 17);
  202. this.chbxShowPassword.TabIndex = 18;
  203. this.chbxShowPassword.Text = "Показать пароли";
  204. this.chbxShowPassword.UseVisualStyleBackColor = true;
  205. //
  206. // fRegistration
  207. //
  208. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  209. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  210. this.ClientSize = new System.Drawing.Size(310, 283);
  211. this.Controls.Add(this.chbxShowPassword);
  212. this.Controls.Add(this.lblRole);
  213. this.Controls.Add(this.lblPhoneNumber);
  214. this.Controls.Add(this.lblConfirmPassword);
  215. this.Controls.Add(this.lblEnterPassword);
  216. this.Controls.Add(this.lblLogin);
  217. this.Controls.Add(this.lblSurname);
  218. this.Controls.Add(this.lblPatronymic);
  219. this.Controls.Add(this.lblName);
  220. this.Controls.Add(this.cbxRole);
  221. this.Controls.Add(this.tbxConfirmPassword);
  222. this.Controls.Add(this.tbxPassword);
  223. this.Controls.Add(this.tbxLogin);
  224. this.Controls.Add(this.tbxSurname);
  225. this.Controls.Add(this.tbxPatronymic);
  226. this.Controls.Add(this.tbxName);
  227. this.Controls.Add(this.tbxPhoneNumber);
  228. this.Controls.Add(this.bOK);
  229. this.Controls.Add(this.bCancel);
  230. this.Name = "fRegistration";
  231. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  232. this.Text = "Регистрация";
  233. this.ResumeLayout(false);
  234. this.PerformLayout();
  235. }
  236. #endregion
  237. private System.Windows.Forms.Button bCancel;
  238. private System.Windows.Forms.Button bOK;
  239. private System.Windows.Forms.TextBox tbxPhoneNumber;
  240. private System.Windows.Forms.TextBox tbxName;
  241. private System.Windows.Forms.TextBox tbxPatronymic;
  242. private System.Windows.Forms.TextBox tbxSurname;
  243. private System.Windows.Forms.TextBox tbxLogin;
  244. private System.Windows.Forms.TextBox tbxPassword;
  245. private System.Windows.Forms.TextBox tbxConfirmPassword;
  246. private System.Windows.Forms.ComboBox cbxRole;
  247. private System.Windows.Forms.Label lblName;
  248. private System.Windows.Forms.Label lblPatronymic;
  249. private System.Windows.Forms.Label lblSurname;
  250. private System.Windows.Forms.Label lblLogin;
  251. private System.Windows.Forms.Label lblEnterPassword;
  252. private System.Windows.Forms.Label lblConfirmPassword;
  253. private System.Windows.Forms.Label lblPhoneNumber;
  254. private System.Windows.Forms.Label lblRole;
  255. private System.Windows.Forms.CheckBox chbxShowPassword;
  256. }
  257. }