ReservationEditForm.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. namespace RestaurantApp
  2. {
  3. partial class ReservationEditForm
  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.lblTable = new System.Windows.Forms.Label();
  17. this.cmbTable = new System.Windows.Forms.ComboBox();
  18. this.lblClient = new System.Windows.Forms.Label();
  19. this.cmbClient = new System.Windows.Forms.ComboBox();
  20. this.lblEmployee = new System.Windows.Forms.Label();
  21. this.cmbEmployee = new System.Windows.Forms.ComboBox();
  22. this.lblDateTime = new System.Windows.Forms.Label();
  23. this.dtpReservedAt = new System.Windows.Forms.DateTimePicker();
  24. this.lblDuration = new System.Windows.Forms.Label();
  25. this.numDuration = new System.Windows.Forms.NumericUpDown();
  26. this.lblGuests = new System.Windows.Forms.Label();
  27. this.numGuests = new System.Windows.Forms.NumericUpDown();
  28. this.lblStatus = new System.Windows.Forms.Label();
  29. this.cmbStatus = new System.Windows.Forms.ComboBox();
  30. this.lblNotes = new System.Windows.Forms.Label();
  31. this.txtNotes = new System.Windows.Forms.TextBox();
  32. this.btnSave = new System.Windows.Forms.Button();
  33. this.btnCancel = new System.Windows.Forms.Button();
  34. this.chkNoClient = new System.Windows.Forms.CheckBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.numDuration)).BeginInit();
  36. ((System.ComponentModel.ISupportInitialize)(this.numGuests)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // lblTable
  40. //
  41. this.lblTable.AutoSize = true;
  42. this.lblTable.Location = new System.Drawing.Point(30, 25);
  43. this.lblTable.Name = "lblTable";
  44. this.lblTable.Size = new System.Drawing.Size(38, 13);
  45. this.lblTable.TabIndex = 0;
  46. this.lblTable.Text = "Стол:";
  47. //
  48. // cmbTable
  49. //
  50. this.cmbTable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  51. this.cmbTable.Location = new System.Drawing.Point(120, 22);
  52. this.cmbTable.Name = "cmbTable";
  53. this.cmbTable.Size = new System.Drawing.Size(250, 21);
  54. this.cmbTable.TabIndex = 1;
  55. //
  56. // lblClient
  57. //
  58. this.lblClient.AutoSize = true;
  59. this.lblClient.Location = new System.Drawing.Point(30, 55);
  60. this.lblClient.Name = "lblClient";
  61. this.lblClient.Size = new System.Drawing.Size(46, 13);
  62. this.lblClient.TabIndex = 2;
  63. this.lblClient.Text = "Клиент:";
  64. //
  65. // cmbClient
  66. //
  67. this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  68. this.cmbClient.Location = new System.Drawing.Point(120, 52);
  69. this.cmbClient.Name = "cmbClient";
  70. this.cmbClient.Size = new System.Drawing.Size(250, 21);
  71. this.cmbClient.TabIndex = 3;
  72. //
  73. // lblEmployee
  74. //
  75. this.lblEmployee.AutoSize = true;
  76. this.lblEmployee.Location = new System.Drawing.Point(30, 85);
  77. this.lblEmployee.Name = "lblEmployee";
  78. this.lblEmployee.Size = new System.Drawing.Size(66, 13);
  79. this.lblEmployee.TabIndex = 4;
  80. this.lblEmployee.Text = "Официант:";
  81. //
  82. // cmbEmployee
  83. //
  84. this.cmbEmployee.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  85. this.cmbEmployee.Location = new System.Drawing.Point(120, 82);
  86. this.cmbEmployee.Name = "cmbEmployee";
  87. this.cmbEmployee.Size = new System.Drawing.Size(250, 21);
  88. this.cmbEmployee.TabIndex = 5;
  89. //
  90. // chkNoClient
  91. //
  92. this.chkNoClient.AutoSize = true;
  93. this.chkNoClient.Location = new System.Drawing.Point(120, 110);
  94. this.chkNoClient.Name = "chkNoClient";
  95. this.chkNoClient.Size = new System.Drawing.Size(103, 17);
  96. this.chkNoClient.TabIndex = 6;
  97. this.chkNoClient.Text = "Без клиента";
  98. this.chkNoClient.UseVisualStyleBackColor = true;
  99. //
  100. // lblDateTime
  101. //
  102. this.lblDateTime.AutoSize = true;
  103. this.lblDateTime.Location = new System.Drawing.Point(30, 140);
  104. this.lblDateTime.Name = "lblDateTime";
  105. this.lblDateTime.Size = new System.Drawing.Size(77, 13);
  106. this.lblDateTime.TabIndex = 7;
  107. this.lblDateTime.Text = "Дата и время:";
  108. //
  109. // dtpReservedAt
  110. //
  111. this.dtpReservedAt.CustomFormat = "dd.MM.yyyy HH:mm";
  112. this.dtpReservedAt.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  113. this.dtpReservedAt.Location = new System.Drawing.Point(120, 137);
  114. this.dtpReservedAt.Name = "dtpReservedAt";
  115. this.dtpReservedAt.Size = new System.Drawing.Size(150, 20);
  116. this.dtpReservedAt.TabIndex = 8;
  117. //
  118. // lblDuration
  119. //
  120. this.lblDuration.AutoSize = true;
  121. this.lblDuration.Location = new System.Drawing.Point(30, 170);
  122. this.lblDuration.Name = "lblDuration";
  123. this.lblDuration.Size = new System.Drawing.Size(76, 13);
  124. this.lblDuration.TabIndex = 9;
  125. this.lblDuration.Text = "Длительность:";
  126. //
  127. // numDuration
  128. //
  129. this.numDuration.Location = new System.Drawing.Point(120, 168);
  130. this.numDuration.Maximum = new decimal(new int[] { 480, 0, 0, 0 });
  131. this.numDuration.Minimum = new decimal(new int[] { 30, 0, 0, 0 });
  132. this.numDuration.Name = "numDuration";
  133. this.numDuration.Size = new System.Drawing.Size(100, 20);
  134. this.numDuration.TabIndex = 10;
  135. this.numDuration.Value = new decimal(new int[] { 120, 0, 0, 0 });
  136. //
  137. // lblGuests
  138. //
  139. this.lblGuests.AutoSize = true;
  140. this.lblGuests.Location = new System.Drawing.Point(30, 200);
  141. this.lblGuests.Name = "lblGuests";
  142. this.lblGuests.Size = new System.Drawing.Size(67, 13);
  143. this.lblGuests.TabIndex = 11;
  144. this.lblGuests.Text = "Кол-во гостей:";
  145. //
  146. // numGuests
  147. //
  148. this.numGuests.Location = new System.Drawing.Point(120, 198);
  149. this.numGuests.Minimum = new decimal(new int[] { 1, 0, 0, 0 });
  150. this.numGuests.Name = "numGuests";
  151. this.numGuests.Size = new System.Drawing.Size(100, 20);
  152. this.numGuests.TabIndex = 12;
  153. this.numGuests.Value = new decimal(new int[] { 2, 0, 0, 0 });
  154. //
  155. // lblStatus
  156. //
  157. this.lblStatus.AutoSize = true;
  158. this.lblStatus.Location = new System.Drawing.Point(30, 230);
  159. this.lblStatus.Name = "lblStatus";
  160. this.lblStatus.Size = new System.Drawing.Size(44, 13);
  161. this.lblStatus.TabIndex = 13;
  162. this.lblStatus.Text = "Статус:";
  163. //
  164. // cmbStatus
  165. //
  166. this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  167. this.cmbStatus.Items.AddRange(new object[] { "confirmed", "cancelled", "completed" });
  168. this.cmbStatus.Location = new System.Drawing.Point(120, 227);
  169. this.cmbStatus.Name = "cmbStatus";
  170. this.cmbStatus.Size = new System.Drawing.Size(150, 21);
  171. this.cmbStatus.TabIndex = 14;
  172. //
  173. // lblNotes
  174. //
  175. this.lblNotes.AutoSize = true;
  176. this.lblNotes.Location = new System.Drawing.Point(30, 260);
  177. this.lblNotes.Name = "lblNotes";
  178. this.lblNotes.Size = new System.Drawing.Size(73, 13);
  179. this.lblNotes.TabIndex = 15;
  180. this.lblNotes.Text = "Примечание:";
  181. //
  182. // txtNotes
  183. //
  184. this.txtNotes.Location = new System.Drawing.Point(120, 257);
  185. this.txtNotes.Multiline = true;
  186. this.txtNotes.Name = "txtNotes";
  187. this.txtNotes.Size = new System.Drawing.Size(250, 50);
  188. this.txtNotes.TabIndex = 16;
  189. //
  190. // btnSave
  191. //
  192. this.btnSave.BackColor = System.Drawing.Color.LimeGreen;
  193. this.btnSave.Location = new System.Drawing.Point(120, 320);
  194. this.btnSave.Name = "btnSave";
  195. this.btnSave.Size = new System.Drawing.Size(100, 30);
  196. this.btnSave.TabIndex = 17;
  197. this.btnSave.Text = "Сохранить";
  198. this.btnSave.UseVisualStyleBackColor = false;
  199. //
  200. // btnCancel
  201. //
  202. this.btnCancel.Location = new System.Drawing.Point(240, 320);
  203. this.btnCancel.Name = "btnCancel";
  204. this.btnCancel.Size = new System.Drawing.Size(100, 30);
  205. this.btnCancel.TabIndex = 18;
  206. this.btnCancel.Text = "Отмена";
  207. this.btnCancel.UseVisualStyleBackColor = true;
  208. //
  209. // ReservationEditForm
  210. //
  211. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  212. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  213. this.ClientSize = new System.Drawing.Size(420, 380);
  214. this.Controls.Add(this.btnCancel);
  215. this.Controls.Add(this.btnSave);
  216. this.Controls.Add(this.txtNotes);
  217. this.Controls.Add(this.lblNotes);
  218. this.Controls.Add(this.cmbStatus);
  219. this.Controls.Add(this.lblStatus);
  220. this.Controls.Add(this.numGuests);
  221. this.Controls.Add(this.lblGuests);
  222. this.Controls.Add(this.numDuration);
  223. this.Controls.Add(this.lblDuration);
  224. this.Controls.Add(this.dtpReservedAt);
  225. this.Controls.Add(this.lblDateTime);
  226. this.Controls.Add(this.chkNoClient);
  227. this.Controls.Add(this.cmbEmployee);
  228. this.Controls.Add(this.lblEmployee);
  229. this.Controls.Add(this.cmbClient);
  230. this.Controls.Add(this.lblClient);
  231. this.Controls.Add(this.cmbTable);
  232. this.Controls.Add(this.lblTable);
  233. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  234. this.MaximizeBox = false;
  235. this.MinimizeBox = false;
  236. this.Name = "ReservationEditForm";
  237. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  238. this.Text = "Бронирование";
  239. ((System.ComponentModel.ISupportInitialize)(this.numDuration)).EndInit();
  240. ((System.ComponentModel.ISupportInitialize)(this.numGuests)).EndInit();
  241. this.ResumeLayout(false);
  242. this.PerformLayout();
  243. }
  244. private System.Windows.Forms.Label lblTable;
  245. private System.Windows.Forms.ComboBox cmbTable;
  246. private System.Windows.Forms.Label lblClient;
  247. private System.Windows.Forms.ComboBox cmbClient;
  248. private System.Windows.Forms.Label lblEmployee;
  249. private System.Windows.Forms.ComboBox cmbEmployee;
  250. private System.Windows.Forms.CheckBox chkNoClient;
  251. private System.Windows.Forms.Label lblDateTime;
  252. private System.Windows.Forms.DateTimePicker dtpReservedAt;
  253. private System.Windows.Forms.Label lblDuration;
  254. private System.Windows.Forms.NumericUpDown numDuration;
  255. private System.Windows.Forms.Label lblGuests;
  256. private System.Windows.Forms.NumericUpDown numGuests;
  257. private System.Windows.Forms.Label lblStatus;
  258. private System.Windows.Forms.ComboBox cmbStatus;
  259. private System.Windows.Forms.Label lblNotes;
  260. private System.Windows.Forms.TextBox txtNotes;
  261. private System.Windows.Forms.Button btnSave;
  262. private System.Windows.Forms.Button btnCancel;
  263. }
  264. }