DishEditForm.Designer.cs 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. namespace RestaurantApp
  2. {
  3. partial class DishEditForm
  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.lblCategory = new System.Windows.Forms.Label();
  17. this.cmbCategory = new System.Windows.Forms.ComboBox();
  18. this.lblName = new System.Windows.Forms.Label();
  19. this.txtName = new System.Windows.Forms.TextBox();
  20. this.lblDescription = new System.Windows.Forms.Label();
  21. this.txtDescription = new System.Windows.Forms.TextBox();
  22. this.lblPrice = new System.Windows.Forms.Label();
  23. this.numPrice = new System.Windows.Forms.NumericUpDown();
  24. this.lblWeight = new System.Windows.Forms.Label();
  25. this.numWeight = new System.Windows.Forms.NumericUpDown();
  26. this.lblCookTime = new System.Windows.Forms.Label();
  27. this.numCookTime = new System.Windows.Forms.NumericUpDown();
  28. this.chkAvailable = new System.Windows.Forms.CheckBox();
  29. this.btnSave = new System.Windows.Forms.Button();
  30. this.btnCancel = new System.Windows.Forms.Button();
  31. ((System.ComponentModel.ISupportInitialize)(this.numPrice)).BeginInit();
  32. ((System.ComponentModel.ISupportInitialize)(this.numWeight)).BeginInit();
  33. ((System.ComponentModel.ISupportInitialize)(this.numCookTime)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // lblCategory
  37. //
  38. this.lblCategory.AutoSize = true;
  39. this.lblCategory.Location = new System.Drawing.Point(30, 25);
  40. this.lblCategory.Name = "lblCategory";
  41. this.lblCategory.Size = new System.Drawing.Size(63, 13);
  42. this.lblCategory.TabIndex = 0;
  43. this.lblCategory.Text = "Категория:";
  44. //
  45. // cmbCategory
  46. //
  47. this.cmbCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  48. this.cmbCategory.Location = new System.Drawing.Point(120, 22);
  49. this.cmbCategory.Name = "cmbCategory";
  50. this.cmbCategory.Size = new System.Drawing.Size(250, 21);
  51. this.cmbCategory.TabIndex = 1;
  52. //
  53. // lblName
  54. //
  55. this.lblName.AutoSize = true;
  56. this.lblName.Location = new System.Drawing.Point(30, 55);
  57. this.lblName.Name = "lblName";
  58. this.lblName.Size = new System.Drawing.Size(60, 13);
  59. this.lblName.TabIndex = 2;
  60. this.lblName.Text = "Название:";
  61. //
  62. // txtName
  63. //
  64. this.txtName.Location = new System.Drawing.Point(120, 52);
  65. this.txtName.Name = "txtName";
  66. this.txtName.Size = new System.Drawing.Size(250, 20);
  67. this.txtName.TabIndex = 3;
  68. //
  69. // lblDescription
  70. //
  71. this.lblDescription.AutoSize = true;
  72. this.lblDescription.Location = new System.Drawing.Point(30, 85);
  73. this.lblDescription.Name = "lblDescription";
  74. this.lblDescription.Size = new System.Drawing.Size(60, 13);
  75. this.lblDescription.TabIndex = 4;
  76. this.lblDescription.Text = "Описание:";
  77. //
  78. // txtDescription
  79. //
  80. this.txtDescription.Location = new System.Drawing.Point(120, 82);
  81. this.txtDescription.Multiline = true;
  82. this.txtDescription.Name = "txtDescription";
  83. this.txtDescription.Size = new System.Drawing.Size(250, 60);
  84. this.txtDescription.TabIndex = 5;
  85. //
  86. // lblPrice
  87. //
  88. this.lblPrice.AutoSize = true;
  89. this.lblPrice.Location = new System.Drawing.Point(30, 155);
  90. this.lblPrice.Name = "lblPrice";
  91. this.lblPrice.Size = new System.Drawing.Size(36, 13);
  92. this.lblPrice.TabIndex = 6;
  93. this.lblPrice.Text = "Цена:";
  94. //
  95. // numPrice
  96. //
  97. this.numPrice.DecimalPlaces = 2;
  98. this.numPrice.Location = new System.Drawing.Point(120, 153);
  99. this.numPrice.Maximum = new decimal(new int[] { 100000, 0, 0, 0 });
  100. this.numPrice.Name = "numPrice";
  101. this.numPrice.Size = new System.Drawing.Size(120, 20);
  102. this.numPrice.TabIndex = 7;
  103. //
  104. // lblWeight
  105. //
  106. this.lblWeight.AutoSize = true;
  107. this.lblWeight.Location = new System.Drawing.Point(30, 185);
  108. this.lblWeight.Name = "lblWeight";
  109. this.lblWeight.Size = new System.Drawing.Size(57, 13);
  110. this.lblWeight.TabIndex = 8;
  111. this.lblWeight.Text = "Вес (г):";
  112. //
  113. // numWeight
  114. //
  115. this.numWeight.Location = new System.Drawing.Point(120, 183);
  116. this.numWeight.Maximum = new decimal(new int[] { 10000, 0, 0, 0 });
  117. this.numWeight.Name = "numWeight";
  118. this.numWeight.Size = new System.Drawing.Size(120, 20);
  119. this.numWeight.TabIndex = 9;
  120. //
  121. // lblCookTime
  122. //
  123. this.lblCookTime.AutoSize = true;
  124. this.lblCookTime.Location = new System.Drawing.Point(30, 215);
  125. this.lblCookTime.Name = "lblCookTime";
  126. this.lblCookTime.Size = new System.Drawing.Size(91, 13);
  127. this.lblCookTime.TabIndex = 10;
  128. this.lblCookTime.Text = "Время (мин):";
  129. //
  130. // numCookTime
  131. //
  132. this.numCookTime.Location = new System.Drawing.Point(120, 213);
  133. this.numCookTime.Maximum = new decimal(new int[] { 1000, 0, 0, 0 });
  134. this.numCookTime.Name = "numCookTime";
  135. this.numCookTime.Size = new System.Drawing.Size(120, 20);
  136. this.numCookTime.TabIndex = 11;
  137. //
  138. // chkAvailable
  139. //
  140. this.chkAvailable.AutoSize = true;
  141. this.chkAvailable.Location = new System.Drawing.Point(120, 245);
  142. this.chkAvailable.Name = "chkAvailable";
  143. this.chkAvailable.Size = new System.Drawing.Size(91, 17);
  144. this.chkAvailable.TabIndex = 12;
  145. this.chkAvailable.Text = "Доступно";
  146. this.chkAvailable.UseVisualStyleBackColor = true;
  147. //
  148. // btnSave
  149. //
  150. this.btnSave.BackColor = System.Drawing.Color.LimeGreen;
  151. this.btnSave.Location = new System.Drawing.Point(120, 280);
  152. this.btnSave.Name = "btnSave";
  153. this.btnSave.Size = new System.Drawing.Size(100, 30);
  154. this.btnSave.TabIndex = 13;
  155. this.btnSave.Text = "Сохранить";
  156. this.btnSave.UseVisualStyleBackColor = false;
  157. //
  158. // btnCancel
  159. //
  160. this.btnCancel.Location = new System.Drawing.Point(240, 280);
  161. this.btnCancel.Name = "btnCancel";
  162. this.btnCancel.Size = new System.Drawing.Size(100, 30);
  163. this.btnCancel.TabIndex = 14;
  164. this.btnCancel.Text = "Отмена";
  165. this.btnCancel.UseVisualStyleBackColor = true;
  166. //
  167. // DishEditForm
  168. //
  169. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  170. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  171. this.ClientSize = new System.Drawing.Size(420, 340);
  172. this.Controls.Add(this.btnCancel);
  173. this.Controls.Add(this.btnSave);
  174. this.Controls.Add(this.chkAvailable);
  175. this.Controls.Add(this.numCookTime);
  176. this.Controls.Add(this.lblCookTime);
  177. this.Controls.Add(this.numWeight);
  178. this.Controls.Add(this.lblWeight);
  179. this.Controls.Add(this.numPrice);
  180. this.Controls.Add(this.lblPrice);
  181. this.Controls.Add(this.txtDescription);
  182. this.Controls.Add(this.lblDescription);
  183. this.Controls.Add(this.txtName);
  184. this.Controls.Add(this.lblName);
  185. this.Controls.Add(this.cmbCategory);
  186. this.Controls.Add(this.lblCategory);
  187. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  188. this.MaximizeBox = false;
  189. this.MinimizeBox = false;
  190. this.Name = "DishEditForm";
  191. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  192. this.Text = "Блюдо";
  193. ((System.ComponentModel.ISupportInitialize)(this.numPrice)).EndInit();
  194. ((System.ComponentModel.ISupportInitialize)(this.numWeight)).EndInit();
  195. ((System.ComponentModel.ISupportInitialize)(this.numCookTime)).EndInit();
  196. this.ResumeLayout(false);
  197. this.PerformLayout();
  198. }
  199. private System.Windows.Forms.Label lblCategory;
  200. private System.Windows.Forms.ComboBox cmbCategory;
  201. private System.Windows.Forms.Label lblName;
  202. private System.Windows.Forms.TextBox txtName;
  203. private System.Windows.Forms.Label lblDescription;
  204. private System.Windows.Forms.TextBox txtDescription;
  205. private System.Windows.Forms.Label lblPrice;
  206. private System.Windows.Forms.NumericUpDown numPrice;
  207. private System.Windows.Forms.Label lblWeight;
  208. private System.Windows.Forms.NumericUpDown numWeight;
  209. private System.Windows.Forms.Label lblCookTime;
  210. private System.Windows.Forms.NumericUpDown numCookTime;
  211. private System.Windows.Forms.CheckBox chkAvailable;
  212. private System.Windows.Forms.Button btnSave;
  213. private System.Windows.Forms.Button btnCancel;
  214. }
  215. }