175 lines
9.0 KiB
C#
175 lines
9.0 KiB
C#
namespace ConfectioneryView
|
||
{
|
||
partial class FormMain
|
||
{
|
||
/// <summary>
|
||
/// Required designer variable.
|
||
/// </summary>
|
||
private System.ComponentModel.IContainer components = null;
|
||
|
||
/// <summary>
|
||
/// Clean up any resources being used.
|
||
/// </summary>
|
||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||
protected override void Dispose(bool disposing)
|
||
{
|
||
if (disposing && (components != null))
|
||
{
|
||
components.Dispose();
|
||
}
|
||
base.Dispose(disposing);
|
||
}
|
||
|
||
#region Windows Form Designer generated code
|
||
|
||
/// <summary>
|
||
/// Required method for Designer support - do not modify
|
||
/// the contents of this method with the code editor.
|
||
/// </summary>
|
||
private void InitializeComponent()
|
||
{
|
||
this.menuStrip = new System.Windows.Forms.MenuStrip();
|
||
this.справочникиToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.КомпонентыToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.КондитерскиеИзделияToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.dataGridView = new System.Windows.Forms.DataGridView();
|
||
this.buttonCreateOrder = new System.Windows.Forms.Button();
|
||
this.buttonTakeOrderInWork = new System.Windows.Forms.Button();
|
||
this.buttonOrderReady = new System.Windows.Forms.Button();
|
||
this.buttonIssuedOrder = new System.Windows.Forms.Button();
|
||
this.buttonUpd = new System.Windows.Forms.Button();
|
||
this.menuStrip.SuspendLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// menuStrip
|
||
//
|
||
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.справочникиToolStripMenuItem});
|
||
this.menuStrip.Location = new System.Drawing.Point(0, 0);
|
||
this.menuStrip.Name = "menuStrip";
|
||
this.menuStrip.Size = new System.Drawing.Size(1009, 24);
|
||
this.menuStrip.TabIndex = 0;
|
||
this.menuStrip.Text = "menuStrip1";
|
||
//
|
||
// справочникиToolStripMenuItem
|
||
//
|
||
this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||
this.КомпонентыToolStripMenuItem,
|
||
this.КондитерскиеИзделияToolStripMenuItem});
|
||
this.справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
|
||
this.справочникиToolStripMenuItem.Size = new System.Drawing.Size(94, 20);
|
||
this.справочникиToolStripMenuItem.Text = "Справочники";
|
||
//
|
||
// КомпонентыToolStripMenuItem
|
||
//
|
||
this.КомпонентыToolStripMenuItem.Name = "КомпонентыToolStripMenuItem";
|
||
this.КомпонентыToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
|
||
this.КомпонентыToolStripMenuItem.Text = "Компоненты";
|
||
this.КомпонентыToolStripMenuItem.Click += new System.EventHandler(this.КомпонентыToolStripMenuItem_Click);
|
||
//
|
||
// КондитерскиеИзделияToolStripMenuItem
|
||
//
|
||
this.КондитерскиеИзделияToolStripMenuItem.Name = "КондитерскиеИзделияToolStripMenuItem";
|
||
this.КондитерскиеИзделияToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
|
||
this.КондитерскиеИзделияToolStripMenuItem.Text = "Кондитерские изделия";
|
||
this.КондитерскиеИзделияToolStripMenuItem.Click += new System.EventHandler(this.КондитерскиеИзделияToolStripMenuItem_Click);
|
||
//
|
||
// dataGridView
|
||
//
|
||
this.dataGridView.AllowUserToAddRows = false;
|
||
this.dataGridView.AllowUserToDeleteRows = false;
|
||
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.dataGridView.Location = new System.Drawing.Point(0, 27);
|
||
this.dataGridView.Name = "dataGridView";
|
||
this.dataGridView.RowTemplate.Height = 25;
|
||
this.dataGridView.Size = new System.Drawing.Size(757, 306);
|
||
this.dataGridView.TabIndex = 1;
|
||
//
|
||
// buttonCreateOrder
|
||
//
|
||
this.buttonCreateOrder.Location = new System.Drawing.Point(806, 51);
|
||
this.buttonCreateOrder.Name = "buttonCreateOrder";
|
||
this.buttonCreateOrder.Size = new System.Drawing.Size(182, 27);
|
||
this.buttonCreateOrder.TabIndex = 2;
|
||
this.buttonCreateOrder.Text = "Создать заказ";
|
||
this.buttonCreateOrder.UseVisualStyleBackColor = true;
|
||
this.buttonCreateOrder.Click += new System.EventHandler(this.buttonCreateOrder_Click);
|
||
//
|
||
// buttonTakeOrderInWork
|
||
//
|
||
this.buttonTakeOrderInWork.Location = new System.Drawing.Point(806, 112);
|
||
this.buttonTakeOrderInWork.Name = "buttonTakeOrderInWork";
|
||
this.buttonTakeOrderInWork.Size = new System.Drawing.Size(184, 26);
|
||
this.buttonTakeOrderInWork.TabIndex = 3;
|
||
this.buttonTakeOrderInWork.Text = "Отдать на выполнение";
|
||
this.buttonTakeOrderInWork.UseVisualStyleBackColor = true;
|
||
this.buttonTakeOrderInWork.Click += new System.EventHandler(this.buttonTakeOrderInWork_Click);
|
||
//
|
||
// buttonOrderReady
|
||
//
|
||
this.buttonOrderReady.Location = new System.Drawing.Point(806, 169);
|
||
this.buttonOrderReady.Name = "buttonOrderReady";
|
||
this.buttonOrderReady.Size = new System.Drawing.Size(182, 28);
|
||
this.buttonOrderReady.TabIndex = 4;
|
||
this.buttonOrderReady.Text = "Заказ готов";
|
||
this.buttonOrderReady.UseVisualStyleBackColor = true;
|
||
this.buttonOrderReady.Click += new System.EventHandler(this.buttonOrderReady_Click);
|
||
//
|
||
// buttonIssuedOrder
|
||
//
|
||
this.buttonIssuedOrder.Location = new System.Drawing.Point(806, 227);
|
||
this.buttonIssuedOrder.Name = "buttonIssuedOrder";
|
||
this.buttonIssuedOrder.Size = new System.Drawing.Size(182, 27);
|
||
this.buttonIssuedOrder.TabIndex = 5;
|
||
this.buttonIssuedOrder.Text = "Заказ выдан";
|
||
this.buttonIssuedOrder.UseVisualStyleBackColor = true;
|
||
this.buttonIssuedOrder.Click += new System.EventHandler(this.buttonIssuedOrder_Click);
|
||
//
|
||
// buttonUpd
|
||
//
|
||
this.buttonUpd.Location = new System.Drawing.Point(806, 281);
|
||
this.buttonUpd.Name = "buttonUpd";
|
||
this.buttonUpd.Size = new System.Drawing.Size(182, 29);
|
||
this.buttonUpd.TabIndex = 6;
|
||
this.buttonUpd.Text = "Обновить список";
|
||
this.buttonUpd.UseVisualStyleBackColor = true;
|
||
this.buttonUpd.Click += new System.EventHandler(this.buttonUpd_Click);
|
||
//
|
||
// FormMain
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(1009, 332);
|
||
this.Controls.Add(this.buttonUpd);
|
||
this.Controls.Add(this.buttonIssuedOrder);
|
||
this.Controls.Add(this.buttonOrderReady);
|
||
this.Controls.Add(this.buttonTakeOrderInWork);
|
||
this.Controls.Add(this.buttonCreateOrder);
|
||
this.Controls.Add(this.dataGridView);
|
||
this.Controls.Add(this.menuStrip);
|
||
this.MainMenuStrip = this.menuStrip;
|
||
this.Name = "FormMain";
|
||
this.Text = "Кондитерская";
|
||
this.menuStrip.ResumeLayout(false);
|
||
this.menuStrip.PerformLayout();
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private MenuStrip menuStrip;
|
||
private ToolStripMenuItem справочникиToolStripMenuItem;
|
||
private ToolStripMenuItem КомпонентыToolStripMenuItem;
|
||
private ToolStripMenuItem КондитерскиеИзделияToolStripMenuItem;
|
||
private DataGridView dataGridView;
|
||
private Button buttonCreateOrder;
|
||
private Button buttonTakeOrderInWork;
|
||
private Button buttonOrderReady;
|
||
private Button buttonIssuedOrder;
|
||
private Button buttonUpd;
|
||
}
|
||
} |