EmployeeEditForm.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. namespace RestaurantApp
  2. {
  3. partial class EmployeeEditForm
  4. {
  5. private System.ComponentModel.IContainer components = null;
  6. protected override void Dispose(bool disposing)
  7. {
  8. if (disposing && (components != null))
  9. {
  10. components.Dispose();
  11. }
  12. base.Dispose(disposing);
  13. }
  14. private void InitializeComponent()
  15. {
  16. this.lblLastName = new System.Windows.Forms.Label();
  17. this.txtLastName = new System.Windows.Forms.TextBox();
  18. this.lblFirstName = new System.Windows.Forms.Label();
  19. this.txtFirstName = new System.Windows.Forms.TextBox();
  20. this.lblMiddleName = new System.Windows.Forms.Label();
  21. this.txtMiddleName = new System.Windows.Forms.TextBox();
  22. this.lblPosition = new System.Windows.Forms.Label();
  23. this.cmbPosition = new System.Windows.Forms.ComboBox();
  24. this.lblPhone = new System.Windows.Forms.Label();
  25. this.txtPhone = new System.Windows.Forms.TextBox();
  26. this.lblEmail = new System.Windows.Forms.Label();
  27. this.txtEmail = new System.Windows.Forms.TextBox();
  28. this.lblHireDate = new System.Windows.Forms.Label();
  29. this.dtpHireDate = new System.Windows.Forms.DateTimePicker();
  30. this.lblSalary = new System.Windows.Forms.Label();
  31. this.numSalary = new System.Windows.Forms.NumericUpDown();
  32. this.chkActive = new System.Windows.Forms.CheckBox();
  33. this.btnSave = new System.Windows.Forms.Button();
  34. this.btnCancel = new System.Windows.Forms.Button();
  35. ((System.ComponentModel.ISupportInitialize)(this.numSalary)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // lblLastName
  39. //
  40. this.lblLastName.AutoSize = true;
  41. this.lblLastName.Location = new System.Drawing.Point(30, 25);
  42. this.lblLastName.Name = "lblLastName";
  43. this.lblLastName.Size = new System.Drawing.Size(59, 13);
  44. this.lblLastName.TabIndex = 0;
  45. this.lblLastName.Text = "Фамилия:";
  46. //
  47. // txtLastName
  48. //
  49. this.txtLastName.Location = new System.Drawing.Point(120, 22);
  50. this.txtLastName.Name = "txtLastName";
  51. this.txtLastName.Size = new System.Drawing.Size(250, 20);
  52. this.txtLastName.TabIndex = 1;
  53. //
  54. // lblFirstName
  55. //
  56. this.lblFirstName.AutoSize = true;
  57. this.lblFirstName.Location = new System.Drawing.Point(30, 55);
  58. this.lblFirstName.Name = "lblFirstName";
  59. this.lblFirstName.Size = new System.Drawing.Size(32, 13);
  60. this.lblFirstName.TabIndex = 2;
  61. this.lblFirstName.Text = "Имя:";
  62. //
  63. // txtFirstName
  64. //
  65. this.txtFirstName.Location = new System.Drawing.Point(120, 52);
  66. this.txtFirstName.Name = "txtFirstName";
  67. this.txtFirstName.Size = new System.Drawing.Size(250, 20);
  68. this.txtFirstName.TabIndex = 3;
  69. //
  70. // lblMiddleName
  71. //
  72. this.lblMiddleName.AutoSize = true;
  73. this.lblMiddleName.Location = new System.Drawing.Point(30, 85);
  74. this.lblMiddleName.Name = "lblMiddleName";
  75. this.lblMiddleName.Size = new System.Drawing.Size(57, 13);
  76. this.lblMiddleName.TabIndex = 4;
  77. this.lblMiddleName.Text = "Отчество:";
  78. //
  79. // txtMiddleName
  80. //
  81. this.txtMiddleName.Location = new System.Drawing.Point(120, 82);
  82. this.txtMiddleName.Name = "txtMiddleName";
  83. this.txtMiddleName.Size = new System.Drawing.Size(250, 20);
  84. this.txtMiddleName.TabIndex = 5;
  85. //
  86. // lblPosition
  87. //
  88. this.lblPosition.AutoSize = true;
  89. this.lblPosition.Location = new System.Drawing.Point(30, 115);
  90. this.lblPosition.Name = "lblPosition";
  91. this.lblPosition.Size = new System.Drawing.Size(68, 13);
  92. this.lblPosition.TabIndex = 6;
  93. this.lblPosition.Text = "Должность:";
  94. //
  95. // cmbPosition
  96. //
  97. this.cmbPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  98. this.cmbPosition.Location = new System.Drawing.Point(120, 112);
  99. this.cmbPosition.Name = "cmbPosition";
  100. this.cmbPosition.Size = new System.Drawing.Size(250, 21);
  101. this.cmbPosition.TabIndex = 7;
  102. //
  103. // lblPhone
  104. //
  105. this.lblPhone.AutoSize = true;
  106. this.lblPhone.Location = new System.Drawing.Point(30, 145);
  107. this.lblPhone.Name = "lblPhone";
  108. this.lblPhone.Size = new System.Drawing.Size(55, 13);
  109. this.lblPhone.TabIndex = 8;
  110. this.lblPhone.Text = "Телефон:";
  111. //
  112. // txtPhone
  113. //
  114. this.txtPhone.Location = new System.Drawing.Point(120, 142);
  115. this.txtPhone.Name = "txtPhone";
  116. this.txtPhone.Size = new System.Drawing.Size(250, 20);
  117. this.txtPhone.TabIndex = 9;
  118. //
  119. // lblEmail
  120. //
  121. this.lblEmail.AutoSize = true;
  122. this.lblEmail.Location = new System.Drawing.Point(30, 175);
  123. this.lblEmail.Name = "lblEmail";
  124. this.lblEmail.Size = new System.Drawing.Size(35, 13);
  125. this.lblEmail.TabIndex = 10;
  126. this.lblEmail.Text = "Email:";
  127. //
  128. // txtEmail
  129. //
  130. this.txtEmail.Location = new System.Drawing.Point(120, 172);
  131. this.txtEmail.Name = "txtEmail";
  132. this.txtEmail.Size = new System.Drawing.Size(250, 20);
  133. this.txtEmail.TabIndex = 11;
  134. //
  135. // lblHireDate
  136. //
  137. this.lblHireDate.AutoSize = true;
  138. this.lblHireDate.Location = new System.Drawing.Point(30, 205);
  139. this.lblHireDate.Name = "lblHireDate";
  140. this.lblHireDate.Size = new System.Drawing.Size(77, 13);
  141. this.lblHireDate.TabIndex = 12;
  142. this.lblHireDate.Text = "Дата приема:";
  143. //
  144. // dtpHireDate
  145. //
  146. this.dtpHireDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  147. this.dtpHireDate.Location = new System.Drawing.Point(120, 202);
  148. this.dtpHireDate.Name = "dtpHireDate";
  149. this.dtpHireDate.Size = new System.Drawing.Size(150, 20);
  150. this.dtpHireDate.TabIndex = 13;
  151. //
  152. // lblSalary
  153. //
  154. this.lblSalary.AutoSize = true;
  155. this.lblSalary.Location = new System.Drawing.Point(30, 235);
  156. this.lblSalary.Name = "lblSalary";
  157. this.lblSalary.Size = new System.Drawing.Size(42, 13);
  158. this.lblSalary.TabIndex = 14;
  159. this.lblSalary.Text = "Оклад:";
  160. //
  161. // numSalary
  162. //
  163. this.numSalary.DecimalPlaces = 2;
  164. this.numSalary.Location = new System.Drawing.Point(120, 233);
  165. this.numSalary.Maximum = new decimal(new int[] { 1000000, 0, 0, 0 });
  166. this.numSalary.Name = "numSalary";
  167. this.numSalary.Size = new System.Drawing.Size(150, 20);
  168. this.numSalary.TabIndex = 15;
  169. //
  170. // chkActive
  171. //
  172. this.chkActive.AutoSize = true;
  173. this.chkActive.Location = new System.Drawing.Point(120, 265);
  174. this.chkActive.Name = "chkActive";
  175. this.chkActive.Size = new System.Drawing.Size(80, 17);
  176. this.chkActive.TabIndex = 16;
  177. this.chkActive.Text = "Активен";
  178. this.chkActive.UseVisualStyleBackColor = true;
  179. //
  180. // btnSave
  181. //
  182. this.btnSave.BackColor = System.Drawing.Color.LimeGreen;
  183. this.btnSave.Location = new System.Drawing.Point(120, 300);
  184. this.btnSave.Name = "btnSave";
  185. this.btnSave.Size = new System.Drawing.Size(100, 30);
  186. this.btnSave.TabIndex = 17;
  187. this.btnSave.Text = "Сохранить";
  188. this.btnSave.UseVisualStyleBackColor = false;
  189. //
  190. // btnCancel
  191. //
  192. this.btnCancel.Location = new System.Drawing.Point(240, 300);
  193. this.btnCancel.Name = "btnCancel";
  194. this.btnCancel.Size = new System.Drawing.Size(100, 30);
  195. this.btnCancel.TabIndex = 18;
  196. this.btnCancel.Text = "Отмена";
  197. this.btnCancel.UseVisualStyleBackColor = true;
  198. //
  199. // EmployeeEditForm
  200. //
  201. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  202. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  203. this.ClientSize = new System.Drawing.Size(420, 360);
  204. this.Controls.Add(this.btnCancel);
  205. this.Controls.Add(this.btnSave);
  206. this.Controls.Add(this.chkActive);
  207. this.Controls.Add(this.numSalary);
  208. this.Controls.Add(this.lblSalary);
  209. this.Controls.Add(this.dtpHireDate);
  210. this.Controls.Add(this.lblHireDate);
  211. this.Controls.Add(this.txtEmail);
  212. this.Controls.Add(this.lblEmail);
  213. this.Controls.Add(this.txtPhone);
  214. this.Controls.Add(this.lblPhone);
  215. this.Controls.Add(this.cmbPosition);
  216. this.Controls.Add(this.lblPosition);
  217. this.Controls.Add(this.txtMiddleName);
  218. this.Controls.Add(this.lblMiddleName);
  219. this.Controls.Add(this.txtFirstName);
  220. this.Controls.Add(this.lblFirstName);
  221. this.Controls.Add(this.txtLastName);
  222. this.Controls.Add(this.lblLastName);
  223. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  224. this.MaximizeBox = false;
  225. this.MinimizeBox = false;
  226. this.Name = "EmployeeEditForm";
  227. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  228. this.Text = "Сотрудник";
  229. ((System.ComponentModel.ISupportInitialize)(this.numSalary)).EndInit();
  230. this.ResumeLayout(false);
  231. this.PerformLayout();
  232. }
  233. private System.Windows.Forms.Label lblLastName;
  234. private System.Windows.Forms.TextBox txtLastName;
  235. private System.Windows.Forms.Label lblFirstName;
  236. private System.Windows.Forms.TextBox txtFirstName;
  237. private System.Windows.Forms.Label lblMiddleName;
  238. private System.Windows.Forms.TextBox txtMiddleName;
  239. private System.Windows.Forms.Label lblPosition;
  240. private System.Windows.Forms.ComboBox cmbPosition;
  241. private System.Windows.Forms.Label lblPhone;
  242. private System.Windows.Forms.TextBox txtPhone;
  243. private System.Windows.Forms.Label lblEmail;
  244. private System.Windows.Forms.TextBox txtEmail;
  245. private System.Windows.Forms.Label lblHireDate;
  246. private System.Windows.Forms.DateTimePicker dtpHireDate;
  247. private System.Windows.Forms.Label lblSalary;
  248. private System.Windows.Forms.NumericUpDown numSalary;
  249. private System.Windows.Forms.CheckBox chkActive;
  250. private System.Windows.Forms.Button btnSave;
  251. private System.Windows.Forms.Button btnCancel;
  252. }
  253. }