Form4.Designer.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. 
  2. namespace KafeKazarin03
  3. {
  4. partial class Form4
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.components = new System.ComponentModel.Container();
  30. this.label3 = new System.Windows.Forms.Label();
  31. this.button4 = new System.Windows.Forms.Button();
  32. this.kazarinKafeDataSet = new KafeKazarin03.KazarinKafeDataSet();
  33. this.ordersBindingSource = new System.Windows.Forms.BindingSource(this.components);
  34. this.ordersTableAdapter = new KafeKazarin03.KazarinKafeDataSetTableAdapters.OrdersTableAdapter();
  35. this.tableAdapterManager = new KafeKazarin03.KazarinKafeDataSetTableAdapters.TableAdapterManager();
  36. this.orderedDishesTableAdapter = new KafeKazarin03.KazarinKafeDataSetTableAdapters.OrderedDishesTableAdapter();
  37. this.ordersDataGridView = new System.Windows.Forms.DataGridView();
  38. this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  39. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  40. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  41. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  42. this.orderedDishesBindingSource = new System.Windows.Forms.BindingSource(this.components);
  43. this.orderedDishesDataGridView = new System.Windows.Forms.DataGridView();
  44. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  45. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  46. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  47. this.label1 = new System.Windows.Forms.Label();
  48. this.label2 = new System.Windows.Forms.Label();
  49. this.button2 = new System.Windows.Forms.Button();
  50. this.button3 = new System.Windows.Forms.Button();
  51. ((System.ComponentModel.ISupportInitialize)(this.kazarinKafeDataSet)).BeginInit();
  52. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).BeginInit();
  53. ((System.ComponentModel.ISupportInitialize)(this.ordersDataGridView)).BeginInit();
  54. ((System.ComponentModel.ISupportInitialize)(this.orderedDishesBindingSource)).BeginInit();
  55. ((System.ComponentModel.ISupportInitialize)(this.orderedDishesDataGridView)).BeginInit();
  56. this.SuspendLayout();
  57. //
  58. // label3
  59. //
  60. this.label3.AutoSize = true;
  61. this.label3.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  62. this.label3.Location = new System.Drawing.Point(12, 9);
  63. this.label3.Name = "label3";
  64. this.label3.Size = new System.Drawing.Size(365, 25);
  65. this.label3.TabIndex = 5;
  66. this.label3.Text = "Приветствую вас повар \"Кафе\"";
  67. //
  68. // button4
  69. //
  70. this.button4.BackColor = System.Drawing.Color.Tan;
  71. this.button4.Font = new System.Drawing.Font("Georgia", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  72. this.button4.Location = new System.Drawing.Point(576, 472);
  73. this.button4.Name = "button4";
  74. this.button4.Size = new System.Drawing.Size(253, 34);
  75. this.button4.TabIndex = 10;
  76. this.button4.Text = "Выход из уч. записи";
  77. this.button4.UseVisualStyleBackColor = false;
  78. this.button4.Click += new System.EventHandler(this.button4_Click);
  79. //
  80. // kazarinKafeDataSet
  81. //
  82. this.kazarinKafeDataSet.DataSetName = "KazarinKafeDataSet";
  83. this.kazarinKafeDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
  84. //
  85. // ordersBindingSource
  86. //
  87. this.ordersBindingSource.DataMember = "Orders";
  88. this.ordersBindingSource.DataSource = this.kazarinKafeDataSet;
  89. //
  90. // ordersTableAdapter
  91. //
  92. this.ordersTableAdapter.ClearBeforeFill = true;
  93. //
  94. // tableAdapterManager
  95. //
  96. this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
  97. this.tableAdapterManager.CooksTableAdapter = null;
  98. this.tableAdapterManager.EmployeesTableAdapter = null;
  99. this.tableAdapterManager.OrderedDishesTableAdapter = this.orderedDishesTableAdapter;
  100. this.tableAdapterManager.OrdersTableAdapter = this.ordersTableAdapter;
  101. this.tableAdapterManager.OrderStatusTableAdapter = null;
  102. this.tableAdapterManager.PaymentMethodTableAdapter = null;
  103. this.tableAdapterManager.ProductTableAdapter = null;
  104. this.tableAdapterManager.RolesTableAdapter = null;
  105. this.tableAdapterManager.TablesTableAdapter = null;
  106. this.tableAdapterManager.UpdateOrder = KafeKazarin03.KazarinKafeDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
  107. this.tableAdapterManager.WaitersTableAdapter = null;
  108. this.tableAdapterManager.WorkShiftTableAdapter = null;
  109. this.tableAdapterManager.СategoriesTableAdapter = null;
  110. //
  111. // orderedDishesTableAdapter
  112. //
  113. this.orderedDishesTableAdapter.ClearBeforeFill = true;
  114. //
  115. // ordersDataGridView
  116. //
  117. this.ordersDataGridView.AllowUserToAddRows = false;
  118. this.ordersDataGridView.AllowUserToDeleteRows = false;
  119. this.ordersDataGridView.AutoGenerateColumns = false;
  120. this.ordersDataGridView.BackgroundColor = System.Drawing.Color.Tan;
  121. this.ordersDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  122. this.ordersDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  123. this.ID,
  124. this.dataGridViewTextBoxColumn7,
  125. this.dataGridViewTextBoxColumn2,
  126. this.dataGridViewTextBoxColumn3});
  127. this.ordersDataGridView.DataSource = this.ordersBindingSource;
  128. this.ordersDataGridView.Location = new System.Drawing.Point(12, 123);
  129. this.ordersDataGridView.Name = "ordersDataGridView";
  130. this.ordersDataGridView.Size = new System.Drawing.Size(444, 220);
  131. this.ordersDataGridView.TabIndex = 11;
  132. //
  133. // ID
  134. //
  135. this.ID.DataPropertyName = "ID";
  136. this.ID.HeaderText = "IDЗаказа";
  137. this.ID.Name = "ID";
  138. this.ID.ReadOnly = true;
  139. //
  140. // dataGridViewTextBoxColumn7
  141. //
  142. this.dataGridViewTextBoxColumn7.DataPropertyName = "IDСмены";
  143. this.dataGridViewTextBoxColumn7.HeaderText = "IDСмены";
  144. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  145. //
  146. // dataGridViewTextBoxColumn2
  147. //
  148. this.dataGridViewTextBoxColumn2.DataPropertyName = "ДатаЗаказа";
  149. this.dataGridViewTextBoxColumn2.HeaderText = "ДатаЗаказа";
  150. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  151. //
  152. // dataGridViewTextBoxColumn3
  153. //
  154. this.dataGridViewTextBoxColumn3.DataPropertyName = "СтатусЗаказа";
  155. this.dataGridViewTextBoxColumn3.HeaderText = "СтатусЗаказа";
  156. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  157. //
  158. // orderedDishesBindingSource
  159. //
  160. this.orderedDishesBindingSource.DataMember = "OrderedDishes";
  161. this.orderedDishesBindingSource.DataSource = this.kazarinKafeDataSet;
  162. //
  163. // orderedDishesDataGridView
  164. //
  165. this.orderedDishesDataGridView.AllowUserToAddRows = false;
  166. this.orderedDishesDataGridView.AllowUserToDeleteRows = false;
  167. this.orderedDishesDataGridView.AutoGenerateColumns = false;
  168. this.orderedDishesDataGridView.BackgroundColor = System.Drawing.Color.Tan;
  169. this.orderedDishesDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  170. this.orderedDishesDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  171. this.dataGridViewTextBoxColumn4,
  172. this.dataGridViewTextBoxColumn5,
  173. this.dataGridViewTextBoxColumn6});
  174. this.orderedDishesDataGridView.DataSource = this.orderedDishesBindingSource;
  175. this.orderedDishesDataGridView.Location = new System.Drawing.Point(462, 123);
  176. this.orderedDishesDataGridView.Name = "orderedDishesDataGridView";
  177. this.orderedDishesDataGridView.ReadOnly = true;
  178. this.orderedDishesDataGridView.Size = new System.Drawing.Size(367, 220);
  179. this.orderedDishesDataGridView.TabIndex = 11;
  180. //
  181. // dataGridViewTextBoxColumn4
  182. //
  183. this.dataGridViewTextBoxColumn4.DataPropertyName = "IDЗаказа";
  184. this.dataGridViewTextBoxColumn4.HeaderText = "IDЗаказа";
  185. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  186. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  187. //
  188. // dataGridViewTextBoxColumn5
  189. //
  190. this.dataGridViewTextBoxColumn5.DataPropertyName = "IDПродукт";
  191. this.dataGridViewTextBoxColumn5.HeaderText = "IDПродукт";
  192. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  193. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  194. //
  195. // dataGridViewTextBoxColumn6
  196. //
  197. this.dataGridViewTextBoxColumn6.DataPropertyName = "Количество";
  198. this.dataGridViewTextBoxColumn6.HeaderText = "Количество";
  199. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  200. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  201. //
  202. // label1
  203. //
  204. this.label1.AutoSize = true;
  205. this.label1.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  206. this.label1.Location = new System.Drawing.Point(115, 83);
  207. this.label1.Name = "label1";
  208. this.label1.Size = new System.Drawing.Size(240, 25);
  209. this.label1.TabIndex = 13;
  210. this.label1.Text = "Заказы и их статусы";
  211. //
  212. // label2
  213. //
  214. this.label2.AutoSize = true;
  215. this.label2.Font = new System.Drawing.Font("Georgia", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  216. this.label2.Location = new System.Drawing.Point(556, 83);
  217. this.label2.Name = "label2";
  218. this.label2.Size = new System.Drawing.Size(184, 25);
  219. this.label2.TabIndex = 14;
  220. this.label2.Text = "Блюда в заказе";
  221. //
  222. // button2
  223. //
  224. this.button2.BackColor = System.Drawing.Color.Tan;
  225. this.button2.Font = new System.Drawing.Font("Georgia", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  226. this.button2.Location = new System.Drawing.Point(102, 358);
  227. this.button2.Name = "button2";
  228. this.button2.Size = new System.Drawing.Size(253, 34);
  229. this.button2.TabIndex = 15;
  230. this.button2.Text = "Изменить статус заказа";
  231. this.button2.UseVisualStyleBackColor = false;
  232. this.button2.Click += new System.EventHandler(this.button2_Click);
  233. //
  234. // button3
  235. //
  236. this.button3.BackColor = System.Drawing.Color.Tan;
  237. this.button3.Font = new System.Drawing.Font("Georgia", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  238. this.button3.Location = new System.Drawing.Point(531, 358);
  239. this.button3.Name = "button3";
  240. this.button3.Size = new System.Drawing.Size(253, 34);
  241. this.button3.TabIndex = 16;
  242. this.button3.Text = "Добавить блюда в заказ";
  243. this.button3.UseVisualStyleBackColor = false;
  244. this.button3.Click += new System.EventHandler(this.button3_Click);
  245. //
  246. // Form4
  247. //
  248. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  249. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  250. this.BackColor = System.Drawing.Color.PeachPuff;
  251. this.ClientSize = new System.Drawing.Size(841, 518);
  252. this.Controls.Add(this.button3);
  253. this.Controls.Add(this.button2);
  254. this.Controls.Add(this.label2);
  255. this.Controls.Add(this.label1);
  256. this.Controls.Add(this.orderedDishesDataGridView);
  257. this.Controls.Add(this.ordersDataGridView);
  258. this.Controls.Add(this.button4);
  259. this.Controls.Add(this.label3);
  260. this.Name = "Form4";
  261. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  262. this.Text = "Cooks";
  263. this.Load += new System.EventHandler(this.Form4_Load);
  264. ((System.ComponentModel.ISupportInitialize)(this.kazarinKafeDataSet)).EndInit();
  265. ((System.ComponentModel.ISupportInitialize)(this.ordersBindingSource)).EndInit();
  266. ((System.ComponentModel.ISupportInitialize)(this.ordersDataGridView)).EndInit();
  267. ((System.ComponentModel.ISupportInitialize)(this.orderedDishesBindingSource)).EndInit();
  268. ((System.ComponentModel.ISupportInitialize)(this.orderedDishesDataGridView)).EndInit();
  269. this.ResumeLayout(false);
  270. this.PerformLayout();
  271. }
  272. #endregion
  273. private System.Windows.Forms.Label label3;
  274. private System.Windows.Forms.Button button4;
  275. private KazarinKafeDataSet kazarinKafeDataSet;
  276. private System.Windows.Forms.BindingSource ordersBindingSource;
  277. private KazarinKafeDataSetTableAdapters.OrdersTableAdapter ordersTableAdapter;
  278. private KazarinKafeDataSetTableAdapters.TableAdapterManager tableAdapterManager;
  279. private KazarinKafeDataSetTableAdapters.OrderedDishesTableAdapter orderedDishesTableAdapter;
  280. private System.Windows.Forms.DataGridView ordersDataGridView;
  281. private System.Windows.Forms.BindingSource orderedDishesBindingSource;
  282. private System.Windows.Forms.DataGridView orderedDishesDataGridView;
  283. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  284. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  285. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  286. private System.Windows.Forms.DataGridViewTextBoxColumn ID;
  287. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  288. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  289. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  290. private System.Windows.Forms.Label label1;
  291. private System.Windows.Forms.Label label2;
  292. private System.Windows.Forms.Button button2;
  293. private System.Windows.Forms.Button button3;
  294. }
  295. }