182 lines
9.4 KiB
C#
182 lines
9.4 KiB
C#
namespace IceCreamShopView
|
||
{
|
||
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.buttonUpdate = new System.Windows.Forms.Button();
|
||
this.buttonSetToFinish = new System.Windows.Forms.Button();
|
||
this.buttonSetToDone = new System.Windows.Forms.Button();
|
||
this.buttonSetToWork = new System.Windows.Forms.Button();
|
||
this.buttonCreateOrder = new System.Windows.Forms.Button();
|
||
this.dataGridView = new System.Windows.Forms.DataGridView();
|
||
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();
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
||
this.menuStrip.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// buttonUpdate
|
||
//
|
||
this.buttonUpdate.Location = new System.Drawing.Point(878, 294);
|
||
this.buttonUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.buttonUpdate.Name = "buttonUpdate";
|
||
this.buttonUpdate.Size = new System.Drawing.Size(170, 37);
|
||
this.buttonUpdate.TabIndex = 13;
|
||
this.buttonUpdate.Text = "Обновить";
|
||
this.buttonUpdate.UseVisualStyleBackColor = true;
|
||
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
|
||
//
|
||
// buttonSetToFinish
|
||
//
|
||
this.buttonSetToFinish.Location = new System.Drawing.Point(878, 225);
|
||
this.buttonSetToFinish.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.buttonSetToFinish.Name = "buttonSetToFinish";
|
||
this.buttonSetToFinish.Size = new System.Drawing.Size(170, 37);
|
||
this.buttonSetToFinish.TabIndex = 12;
|
||
this.buttonSetToFinish.Text = "Заказ выдан";
|
||
this.buttonSetToFinish.UseVisualStyleBackColor = true;
|
||
this.buttonSetToFinish.Click += new System.EventHandler(this.buttonSetToFinish_Click);
|
||
//
|
||
// buttonSetToDone
|
||
//
|
||
this.buttonSetToDone.Location = new System.Drawing.Point(878, 160);
|
||
this.buttonSetToDone.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.buttonSetToDone.Name = "buttonSetToDone";
|
||
this.buttonSetToDone.Size = new System.Drawing.Size(170, 37);
|
||
this.buttonSetToDone.TabIndex = 11;
|
||
this.buttonSetToDone.Text = "Заказ готов";
|
||
this.buttonSetToDone.UseVisualStyleBackColor = true;
|
||
this.buttonSetToDone.Click += new System.EventHandler(this.buttonSetToDone_Click);
|
||
//
|
||
// buttonSetToWork
|
||
//
|
||
this.buttonSetToWork.Location = new System.Drawing.Point(878, 93);
|
||
this.buttonSetToWork.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.buttonSetToWork.Name = "buttonSetToWork";
|
||
this.buttonSetToWork.Size = new System.Drawing.Size(170, 37);
|
||
this.buttonSetToWork.TabIndex = 10;
|
||
this.buttonSetToWork.Text = "Отдать на выполнение";
|
||
this.buttonSetToWork.UseVisualStyleBackColor = true;
|
||
this.buttonSetToWork.Click += new System.EventHandler(this.buttonSetToWork_Click);
|
||
//
|
||
// buttonCreateOrder
|
||
//
|
||
this.buttonCreateOrder.Location = new System.Drawing.Point(878, 26);
|
||
this.buttonCreateOrder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.buttonCreateOrder.Name = "buttonCreateOrder";
|
||
this.buttonCreateOrder.Size = new System.Drawing.Size(170, 37);
|
||
this.buttonCreateOrder.TabIndex = 9;
|
||
this.buttonCreateOrder.Text = "Создать заказ";
|
||
this.buttonCreateOrder.UseVisualStyleBackColor = true;
|
||
this.buttonCreateOrder.Click += new System.EventHandler(this.buttonCreateOrder_Click);
|
||
//
|
||
// dataGridView
|
||
//
|
||
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.dataGridView.Location = new System.Drawing.Point(12, 26);
|
||
this.dataGridView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||
this.dataGridView.Name = "dataGridView";
|
||
this.dataGridView.RowHeadersWidth = 51;
|
||
this.dataGridView.RowTemplate.Height = 29;
|
||
this.dataGridView.Size = new System.Drawing.Size(848, 305);
|
||
this.dataGridView.TabIndex = 8;
|
||
//
|
||
// menuStrip
|
||
//
|
||
this.menuStrip.ImageScalingSize = new System.Drawing.Size(20, 20);
|
||
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.Padding = new System.Windows.Forms.Padding(5, 2, 0, 2);
|
||
this.menuStrip.Size = new System.Drawing.Size(1072, 24);
|
||
this.menuStrip.TabIndex = 7;
|
||
this.menuStrip.Text = "Справочники";
|
||
//
|
||
// справочники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(180, 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(180, 22);
|
||
this.мороженоеToolStripMenuItem.Text = "Мороженое";
|
||
this.мороженоеToolStripMenuItem.Click += new System.EventHandler(this.мороженоеToolStripMenuItem_Click);
|
||
//
|
||
// FormMain
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(1072, 347);
|
||
this.Controls.Add(this.buttonUpdate);
|
||
this.Controls.Add(this.buttonSetToFinish);
|
||
this.Controls.Add(this.buttonSetToDone);
|
||
this.Controls.Add(this.buttonSetToWork);
|
||
this.Controls.Add(this.buttonCreateOrder);
|
||
this.Controls.Add(this.dataGridView);
|
||
this.Controls.Add(this.menuStrip);
|
||
this.Name = "FormMain";
|
||
this.Text = "Магазин мороженого";
|
||
this.Load += new System.EventHandler(this.FormMain_Load);
|
||
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
||
this.menuStrip.ResumeLayout(false);
|
||
this.menuStrip.PerformLayout();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private Button buttonUpdate;
|
||
private Button buttonSetToFinish;
|
||
private Button buttonSetToDone;
|
||
private Button buttonSetToWork;
|
||
private Button buttonCreateOrder;
|
||
private DataGridView dataGridView;
|
||
private MenuStrip menuStrip;
|
||
private ToolStripMenuItem справочникиToolStripMenuItem;
|
||
private ToolStripMenuItem компонентыToolStripMenuItem;
|
||
private ToolStripMenuItem мороженоеToolStripMenuItem;
|
||
}
|
||
} |