SUBD_Aleikin/Restaurant/RestaurantView/FormMain.Designer.cs

165 lines
7.8 KiB
C#

namespace RestaurantView
{
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.dataGridView = new System.Windows.Forms.DataGridView();
this.buttonAdd = new System.Windows.Forms.Button();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.ClientsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ProvidersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ComponentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ProductsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.backUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.buttonUpd = new System.Windows.Forms.Button();
this.TestsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// dataGridView
//
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Location = new System.Drawing.Point(0, 63);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowTemplate.Height = 25;
this.dataGridView.Size = new System.Drawing.Size(1162, 559);
this.dataGridView.TabIndex = 0;
//
// buttonAdd
//
this.buttonAdd.Location = new System.Drawing.Point(977, 12);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(174, 45);
this.buttonAdd.TabIndex = 1;
this.buttonAdd.Text = "Создать заказ";
this.buttonAdd.UseVisualStyleBackColor = true;
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ClientsToolStripMenuItem,
this.ProvidersToolStripMenuItem,
this.ComponentsToolStripMenuItem,
this.ProductsToolStripMenuItem,
this.backUpToolStripMenuItem,
this.TestsToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(1163, 24);
this.menuStrip1.TabIndex = 2;
this.menuStrip1.Text = "menuStrip1";
//
// ClientsToolStripMenuItem
//
this.ClientsToolStripMenuItem.Name = "ClientsToolStripMenuItem";
this.ClientsToolStripMenuItem.Size = new System.Drawing.Size(67, 20);
this.ClientsToolStripMenuItem.Text = "Клиенты";
this.ClientsToolStripMenuItem.Click += new System.EventHandler(this.ClientsToolStripMenuItem_Click);
//
// ProvidersToolStripMenuItem
//
this.ProvidersToolStripMenuItem.Name = "ProvidersToolStripMenuItem";
this.ProvidersToolStripMenuItem.Size = new System.Drawing.Size(89, 20);
this.ProvidersToolStripMenuItem.Text = "Поставщики";
this.ProvidersToolStripMenuItem.Click += new System.EventHandler(this.ProvidersToolStripMenuItem_Click);
//
// ComponentsToolStripMenuItem
//
this.ComponentsToolStripMenuItem.Name = "ComponentsToolStripMenuItem";
this.ComponentsToolStripMenuItem.Size = new System.Drawing.Size(90, 20);
this.ComponentsToolStripMenuItem.Text = "Компоненты";
this.ComponentsToolStripMenuItem.Click += new System.EventHandler(this.ComponentsToolStripMenuItem_Click);
//
// ProductsToolStripMenuItem
//
this.ProductsToolStripMenuItem.Name = "ProductsToolStripMenuItem";
this.ProductsToolStripMenuItem.Size = new System.Drawing.Size(74, 20);
this.ProductsToolStripMenuItem.Text = "Продукты";
this.ProductsToolStripMenuItem.Click += new System.EventHandler(this.ProductsToolStripMenuItem_Click);
//
// backUpToolStripMenuItem
//
this.backUpToolStripMenuItem.Name = "backUpToolStripMenuItem";
this.backUpToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.backUpToolStripMenuItem.Text = "Бэкап";
this.backUpToolStripMenuItem.Click += new System.EventHandler(this.backUpToolStripMenuItem_Click);
//
// buttonUpd
//
this.buttonUpd.Location = new System.Drawing.Point(785, 12);
this.buttonUpd.Name = "buttonUpd";
this.buttonUpd.Size = new System.Drawing.Size(152, 45);
this.buttonUpd.TabIndex = 3;
this.buttonUpd.Text = "Обновить";
this.buttonUpd.UseVisualStyleBackColor = true;
this.buttonUpd.Click += new System.EventHandler(this.buttonUpd_Click);
//
// TestsToolStripMenuItem
//
this.TestsToolStripMenuItem.Name = "TestsToolStripMenuItem";
this.TestsToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.TestsToolStripMenuItem.Text = "Тесты";
this.TestsToolStripMenuItem.Click += new System.EventHandler(this.TestsToolStripMenuItem_Click);
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1163, 634);
this.Controls.Add(this.buttonUpd);
this.Controls.Add(this.buttonAdd);
this.Controls.Add(this.dataGridView);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "FormMain";
this.Text = "Заказы";
this.Load += new System.EventHandler(this.FormMain_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DataGridView dataGridView;
private Button buttonAdd;
private MenuStrip menuStrip1;
private ToolStripMenuItem ClientsToolStripMenuItem;
private ToolStripMenuItem ProvidersToolStripMenuItem;
private ToolStripMenuItem ComponentsToolStripMenuItem;
private ToolStripMenuItem ProductsToolStripMenuItem;
private Button buttonUpd;
private ToolStripMenuItem backUpToolStripMenuItem;
private ToolStripMenuItem TestsToolStripMenuItem;
}
}