namespace DinerView { partial class FormMain { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { menuStrip = new MenuStrip(); toolStripMenuItemMenu = new ToolStripMenuItem(); toolStripMenuItemFoods = new ToolStripMenuItem(); toolStripMenuItemSnacks = new ToolStripMenuItem(); toolStripMenuItemClient = new ToolStripMenuItem(); toolStripMenuItemImplementer = new ToolStripMenuItem(); toolStripMenuItemReport = new ToolStripMenuItem(); FoodsToolStripMenuItem = new ToolStripMenuItem(); FoodSnacksToolStripMenuItem = new ToolStripMenuItem(); ordersToolStripMenuItem = new ToolStripMenuItem(); toolStripMenuItemStartOfWork = new ToolStripMenuItem(); dataGridView = new DataGridView(); buttonCreateOrder = new Button(); buttonIsDelivery = new Button(); buttonUpdateList = new Button(); menuStrip.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit(); SuspendLayout(); // // menuStrip // menuStrip.BackColor = SystemColors.Control; menuStrip.Items.AddRange(new ToolStripItem[] { toolStripMenuItemMenu, toolStripMenuItemReport, toolStripMenuItemStartOfWork }); menuStrip.Location = new Point(0, 0); menuStrip.Name = "menuStrip"; menuStrip.Size = new Size(1114, 24); menuStrip.TabIndex = 0; menuStrip.Text = "Справочник"; // // toolStripMenuItemMenu // toolStripMenuItemMenu.DropDownItems.AddRange(new ToolStripItem[] { toolStripMenuItemFoods, toolStripMenuItemSnacks, toolStripMenuItemClient, toolStripMenuItemImplementer }); toolStripMenuItemMenu.Name = "toolStripMenuItemMenu"; toolStripMenuItemMenu.Size = new Size(94, 20); toolStripMenuItemMenu.Text = "Справочники"; // // toolStripMenuItemFoods // toolStripMenuItemFoods.Name = "toolStripMenuItemFoods"; toolStripMenuItemFoods.Size = new Size(149, 22); toolStripMenuItemFoods.Text = "Продукты"; toolStripMenuItemFoods.Click += toolStripMenuItemFoods_Click; // // toolStripMenuItemSnacks // toolStripMenuItemSnacks.Name = "toolStripMenuItemSnacks"; toolStripMenuItemSnacks.Size = new Size(149, 22); toolStripMenuItemSnacks.Text = "Снэки"; toolStripMenuItemSnacks.Click += toolStripMenuItemSnacks_Click; // // toolStripMenuItemClient // toolStripMenuItemClient.Name = "toolStripMenuItemClient"; toolStripMenuItemClient.Size = new Size(149, 22); toolStripMenuItemClient.Text = "Клиенты"; toolStripMenuItemClient.Click += toolStripMenuItemClient_Click; // // toolStripMenuItemImplementer // toolStripMenuItemImplementer.Name = "toolStripMenuItemImplementer"; toolStripMenuItemImplementer.Size = new Size(149, 22); toolStripMenuItemImplementer.Text = "Исполнители"; toolStripMenuItemImplementer.Click += toolStripMenuItemImplementer_Click; // // toolStripMenuItemReport // toolStripMenuItemReport.DropDownItems.AddRange(new ToolStripItem[] { FoodsToolStripMenuItem, FoodSnacksToolStripMenuItem, ordersToolStripMenuItem }); toolStripMenuItemReport.Name = "toolStripMenuItemReport"; toolStripMenuItemReport.Size = new Size(60, 20); toolStripMenuItemReport.Text = "Отчеты"; // // FoodsToolStripMenuItem // FoodsToolStripMenuItem.Name = "FoodsToolStripMenuItem"; FoodsToolStripMenuItem.Size = new Size(192, 22); FoodsToolStripMenuItem.Text = "Список продуктов"; FoodsToolStripMenuItem.Click += FoodsToolStripMenuItem_Click; // // FoodSnacksToolStripMenuItem // FoodSnacksToolStripMenuItem.Name = "FoodSnacksToolStripMenuItem"; FoodSnacksToolStripMenuItem.Size = new Size(192, 22); FoodSnacksToolStripMenuItem.Text = "Продукты для снэков"; FoodSnacksToolStripMenuItem.Click += FoodSnacksToolStripMenuItem_Click; // // ordersToolStripMenuItem // ordersToolStripMenuItem.Name = "ordersToolStripMenuItem"; ordersToolStripMenuItem.Size = new Size(192, 22); ordersToolStripMenuItem.Text = "Список заказов"; ordersToolStripMenuItem.Click += ordersToolStripMenuItem_Click; // // toolStripMenuItemStartOfWork // toolStripMenuItemStartOfWork.Name = "toolStripMenuItemStartOfWork"; toolStripMenuItemStartOfWork.Size = new Size(92, 20); toolStripMenuItemStartOfWork.Text = "Запуск работ"; toolStripMenuItemStartOfWork.Click += toolStripMenuItemStartOfWork_Click; // // dataGridView // dataGridView.AllowUserToAddRows = false; dataGridView.AllowUserToDeleteRows = false; dataGridView.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right; dataGridView.BackgroundColor = SystemColors.Control; dataGridView.BorderStyle = BorderStyle.None; dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize; dataGridView.Location = new Point(0, 24); dataGridView.MultiSelect = false; dataGridView.Name = "dataGridView"; dataGridView.ReadOnly = true; dataGridView.RowHeadersVisible = false; dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView.Size = new Size(889, 426); dataGridView.TabIndex = 0; // // buttonCreateOrder // buttonCreateOrder.Location = new Point(895, 40); buttonCreateOrder.Name = "buttonCreateOrder"; buttonCreateOrder.Size = new Size(212, 39); buttonCreateOrder.TabIndex = 2; buttonCreateOrder.Text = "Создать заказ"; buttonCreateOrder.UseVisualStyleBackColor = true; buttonCreateOrder.Click += buttonCreateOrder_Click; // // buttonIsDelivery // buttonIsDelivery.Location = new Point(895, 100); buttonIsDelivery.Name = "buttonIsDelivery"; buttonIsDelivery.Size = new Size(212, 39); buttonIsDelivery.TabIndex = 5; buttonIsDelivery.Text = "Заказ выдан"; buttonIsDelivery.UseVisualStyleBackColor = true; buttonIsDelivery.Click += buttonIsDelivery_Click; // // buttonUpdateList // buttonUpdateList.Location = new Point(895, 159); buttonUpdateList.Name = "buttonUpdateList"; buttonUpdateList.Size = new Size(212, 39); buttonUpdateList.TabIndex = 6; buttonUpdateList.Text = "Обновить список"; buttonUpdateList.UseVisualStyleBackColor = true; buttonUpdateList.Click += buttonUpdateList_Click; // // FormMain // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; BackColor = SystemColors.ScrollBar; ClientSize = new Size(1114, 450); Controls.Add(buttonUpdateList); Controls.Add(buttonIsDelivery); Controls.Add(buttonCreateOrder); Controls.Add(dataGridView); Controls.Add(menuStrip); MainMenuStrip = menuStrip; Name = "FormMain"; Text = "Заказы"; Load += FormMain_Load; menuStrip.ResumeLayout(false); menuStrip.PerformLayout(); ((System.ComponentModel.ISupportInitialize)dataGridView).EndInit(); ResumeLayout(false); PerformLayout(); } #endregion private MenuStrip menuStrip; private ToolStripMenuItem toolStripMenuItemMenu; private DataGridView dataGridView; private ToolStripMenuItem toolStripMenuItemFoods; private ToolStripMenuItem toolStripMenuItemSnacks; private Button buttonCreateOrder; private Button buttonIsDelivery; private Button buttonUpdateList; private ToolStripMenuItem toolStripMenuItemReport; private ToolStripMenuItem FoodsToolStripMenuItem; private ToolStripMenuItem FoodSnacksToolStripMenuItem; private ToolStripMenuItem ordersToolStripMenuItem; private ToolStripMenuItem toolStripMenuItemClient; private ToolStripMenuItem toolStripMenuItemStartOfWork; private ToolStripMenuItem toolStripMenuItemImplementer; } }