OrderEditForm.Designer.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. namespace RestaurantApp
  2. {
  3. partial class OrderEditForm
  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.lblWaiter = new System.Windows.Forms.Label();
  19. this.cmbWaiter = new System.Windows.Forms.ComboBox();
  20. this.lblClient = new System.Windows.Forms.Label();
  21. this.cmbClient = new System.Windows.Forms.ComboBox();
  22. this.lblDiscount = new System.Windows.Forms.Label();
  23. this.numDiscount = new System.Windows.Forms.NumericUpDown();
  24. this.btnSave = new System.Windows.Forms.Button();
  25. this.btnCancel = new System.Windows.Forms.Button();
  26. this.chkNoClient = new System.Windows.Forms.CheckBox();
  27. ((System.ComponentModel.ISupportInitialize)(this.numDiscount)).BeginInit();
  28. this.SuspendLayout();
  29. //
  30. // lblTable
  31. //
  32. this.lblTable.AutoSize = true;
  33. this.lblTable.Location = new System.Drawing.Point(30, 30);
  34. this.lblTable.Name = "lblTable";
  35. this.lblTable.Size = new System.Drawing.Size(38, 13);
  36. this.lblTable.TabIndex = 0;
  37. this.lblTable.Text = "Стол:";
  38. //
  39. // cmbTable
  40. //
  41. this.cmbTable.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  42. this.cmbTable.FormattingEnabled = true;
  43. this.cmbTable.Location = new System.Drawing.Point(120, 27);
  44. this.cmbTable.Name = "cmbTable";
  45. this.cmbTable.Size = new System.Drawing.Size(250, 21);
  46. this.cmbTable.TabIndex = 1;
  47. //
  48. // lblWaiter
  49. //
  50. this.lblWaiter.AutoSize = true;
  51. this.lblWaiter.Location = new System.Drawing.Point(30, 60);
  52. this.lblWaiter.Name = "lblWaiter";
  53. this.lblWaiter.Size = new System.Drawing.Size(59, 13);
  54. this.lblWaiter.TabIndex = 2;
  55. this.lblWaiter.Text = "Официант:";
  56. //
  57. // cmbWaiter
  58. //
  59. this.cmbWaiter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  60. this.cmbWaiter.FormattingEnabled = true;
  61. this.cmbWaiter.Location = new System.Drawing.Point(120, 57);
  62. this.cmbWaiter.Name = "cmbWaiter";
  63. this.cmbWaiter.Size = new System.Drawing.Size(250, 21);
  64. this.cmbWaiter.TabIndex = 3;
  65. //
  66. // lblClient
  67. //
  68. this.lblClient.AutoSize = true;
  69. this.lblClient.Location = new System.Drawing.Point(30, 90);
  70. this.lblClient.Name = "lblClient";
  71. this.lblClient.Size = new System.Drawing.Size(46, 13);
  72. this.lblClient.TabIndex = 4;
  73. this.lblClient.Text = "Клиент:";
  74. //
  75. // cmbClient
  76. //
  77. this.cmbClient.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  78. this.cmbClient.FormattingEnabled = true;
  79. this.cmbClient.Location = new System.Drawing.Point(120, 87);
  80. this.cmbClient.Name = "cmbClient";
  81. this.cmbClient.Size = new System.Drawing.Size(250, 21);
  82. this.cmbClient.TabIndex = 5;
  83. //
  84. // chkNoClient
  85. //
  86. this.chkNoClient.AutoSize = true;
  87. this.chkNoClient.Location = new System.Drawing.Point(120, 115);
  88. this.chkNoClient.Name = "chkNoClient";
  89. this.chkNoClient.Size = new System.Drawing.Size(103, 17);
  90. this.chkNoClient.TabIndex = 6;
  91. this.chkNoClient.Text = "Без клиента";
  92. this.chkNoClient.UseVisualStyleBackColor = true;
  93. //
  94. // lblDiscount
  95. //
  96. this.lblDiscount.AutoSize = true;
  97. this.lblDiscount.Location = new System.Drawing.Point(30, 145);
  98. this.lblDiscount.Name = "lblDiscount";
  99. this.lblDiscount.Size = new System.Drawing.Size(52, 13);
  100. this.lblDiscount.TabIndex = 7;
  101. this.lblDiscount.Text = "Скидка %:";
  102. //
  103. // numDiscount
  104. //
  105. this.numDiscount.Location = new System.Drawing.Point(120, 143);
  106. this.numDiscount.Name = "numDiscount";
  107. this.numDiscount.Size = new System.Drawing.Size(100, 20);
  108. this.numDiscount.TabIndex = 8;
  109. //
  110. // btnSave
  111. //
  112. this.btnSave.BackColor = System.Drawing.Color.LimeGreen;
  113. this.btnSave.Location = new System.Drawing.Point(120, 190);
  114. this.btnSave.Name = "btnSave";
  115. this.btnSave.Size = new System.Drawing.Size(100, 30);
  116. this.btnSave.TabIndex = 9;
  117. this.btnSave.Text = "Создать заказ";
  118. this.btnSave.UseVisualStyleBackColor = false;
  119. //
  120. // btnCancel
  121. //
  122. this.btnCancel.Location = new System.Drawing.Point(240, 190);
  123. this.btnCancel.Name = "btnCancel";
  124. this.btnCancel.Size = new System.Drawing.Size(100, 30);
  125. this.btnCancel.TabIndex = 10;
  126. this.btnCancel.Text = "Отмена";
  127. this.btnCancel.UseVisualStyleBackColor = true;
  128. //
  129. // OrderEditForm
  130. //
  131. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  132. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  133. this.ClientSize = new System.Drawing.Size(400, 250);
  134. this.Controls.Add(this.btnCancel);
  135. this.Controls.Add(this.btnSave);
  136. this.Controls.Add(this.numDiscount);
  137. this.Controls.Add(this.lblDiscount);
  138. this.Controls.Add(this.chkNoClient);
  139. this.Controls.Add(this.cmbClient);
  140. this.Controls.Add(this.lblClient);
  141. this.Controls.Add(this.cmbWaiter);
  142. this.Controls.Add(this.lblWaiter);
  143. this.Controls.Add(this.cmbTable);
  144. this.Controls.Add(this.lblTable);
  145. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  146. this.MaximizeBox = false;
  147. this.MinimizeBox = false;
  148. this.Name = "OrderEditForm";
  149. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  150. this.Text = "Новый заказ";
  151. ((System.ComponentModel.ISupportInitialize)(this.numDiscount)).EndInit();
  152. this.ResumeLayout(false);
  153. this.PerformLayout();
  154. }
  155. private System.Windows.Forms.Label lblTable;
  156. private System.Windows.Forms.ComboBox cmbTable;
  157. private System.Windows.Forms.Label lblWaiter;
  158. private System.Windows.Forms.ComboBox cmbWaiter;
  159. private System.Windows.Forms.Label lblClient;
  160. private System.Windows.Forms.ComboBox cmbClient;
  161. private System.Windows.Forms.CheckBox chkNoClient;
  162. private System.Windows.Forms.Label lblDiscount;
  163. private System.Windows.Forms.NumericUpDown numDiscount;
  164. private System.Windows.Forms.Button btnSave;
  165. private System.Windows.Forms.Button btnCancel;
  166. }
  167. }