197 lines
10 KiB
C#
197 lines
10 KiB
C#
namespace PrecastConcretePlantView
|
||
{
|
||
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.магазиныToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||
this.DataGridView = new System.Windows.Forms.DataGridView();
|
||
this.CreateOrderButton = new System.Windows.Forms.Button();
|
||
this.TakeOrderInWorkButton = new System.Windows.Forms.Button();
|
||
this.OrderReadyButton = new System.Windows.Forms.Button();
|
||
this.IssuedOrderButton = new System.Windows.Forms.Button();
|
||
this.UpdateListButton = new System.Windows.Forms.Button();
|
||
this.AddShopButton = 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(953, 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});
|
||
this.СправочникиToolStripMenuItem.Name = "СправочникиToolStripMenuItem";
|
||
this.СправочникиToolStripMenuItem.Size = new System.Drawing.Size(94, 20);
|
||
this.СправочникиToolStripMenuItem.Text = "Cправочники";
|
||
//
|
||
// Изделия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);
|
||
//
|
||
// магазины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);
|
||
//
|
||
// DataGridView
|
||
//
|
||
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(805, 421);
|
||
this.DataGridView.TabIndex = 1;
|
||
//
|
||
// CreateOrderButton
|
||
//
|
||
this.CreateOrderButton.Location = new System.Drawing.Point(825, 27);
|
||
this.CreateOrderButton.Name = "CreateOrderButton";
|
||
this.CreateOrderButton.Size = new System.Drawing.Size(104, 33);
|
||
this.CreateOrderButton.TabIndex = 2;
|
||
this.CreateOrderButton.Text = "Создать заказ";
|
||
this.CreateOrderButton.UseVisualStyleBackColor = true;
|
||
this.CreateOrderButton.Click += new System.EventHandler(this.CreateOrderButton_Click);
|
||
//
|
||
// TakeOrderInWorkButton
|
||
//
|
||
this.TakeOrderInWorkButton.Location = new System.Drawing.Point(825, 66);
|
||
this.TakeOrderInWorkButton.Name = "TakeOrderInWorkButton";
|
||
this.TakeOrderInWorkButton.Size = new System.Drawing.Size(104, 39);
|
||
this.TakeOrderInWorkButton.TabIndex = 3;
|
||
this.TakeOrderInWorkButton.Text = "Отдать на выполнение";
|
||
this.TakeOrderInWorkButton.UseVisualStyleBackColor = true;
|
||
this.TakeOrderInWorkButton.Click += new System.EventHandler(this.TakeOrderInWorkButton_Click);
|
||
//
|
||
// OrderReadyButton
|
||
//
|
||
this.OrderReadyButton.Location = new System.Drawing.Point(825, 111);
|
||
this.OrderReadyButton.Name = "OrderReadyButton";
|
||
this.OrderReadyButton.Size = new System.Drawing.Size(104, 33);
|
||
this.OrderReadyButton.TabIndex = 4;
|
||
this.OrderReadyButton.Text = "Заказ готов";
|
||
this.OrderReadyButton.UseVisualStyleBackColor = true;
|
||
this.OrderReadyButton.Click += new System.EventHandler(this.OrderReadyButton_Click);
|
||
//
|
||
// IssuedOrderButton
|
||
//
|
||
this.IssuedOrderButton.Location = new System.Drawing.Point(825, 150);
|
||
this.IssuedOrderButton.Name = "IssuedOrderButton";
|
||
this.IssuedOrderButton.Size = new System.Drawing.Size(104, 33);
|
||
this.IssuedOrderButton.TabIndex = 5;
|
||
this.IssuedOrderButton.Text = "Заказ выдан";
|
||
this.IssuedOrderButton.UseVisualStyleBackColor = true;
|
||
this.IssuedOrderButton.Click += new System.EventHandler(this.IssuedOrderButton_Click);
|
||
//
|
||
// UpdateListButton
|
||
//
|
||
this.UpdateListButton.Location = new System.Drawing.Point(825, 189);
|
||
this.UpdateListButton.Name = "UpdateListButton";
|
||
this.UpdateListButton.Size = new System.Drawing.Size(104, 33);
|
||
this.UpdateListButton.TabIndex = 6;
|
||
this.UpdateListButton.Text = "Обновить список";
|
||
this.UpdateListButton.UseVisualStyleBackColor = true;
|
||
this.UpdateListButton.Click += new System.EventHandler(this.UpdateListButton_Click);
|
||
//
|
||
// AddShopButton
|
||
//
|
||
this.AddShopButton.Location = new System.Drawing.Point(825, 228);
|
||
this.AddShopButton.Name = "AddShopButton";
|
||
this.AddShopButton.Size = new System.Drawing.Size(104, 38);
|
||
this.AddShopButton.TabIndex = 7;
|
||
this.AddShopButton.Text = "Добавить в магазин";
|
||
this.AddShopButton.UseVisualStyleBackColor = true;
|
||
this.AddShopButton.Click += new System.EventHandler(this.AddShopButton_Click);
|
||
//
|
||
// FormMain
|
||
//
|
||
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||
this.ClientSize = new System.Drawing.Size(953, 450);
|
||
this.Controls.Add(this.AddShopButton);
|
||
this.Controls.Add(this.UpdateListButton);
|
||
this.Controls.Add(this.IssuedOrderButton);
|
||
this.Controls.Add(this.OrderReadyButton);
|
||
this.Controls.Add(this.TakeOrderInWorkButton);
|
||
this.Controls.Add(this.CreateOrderButton);
|
||
this.Controls.Add(this.DataGridView);
|
||
this.Controls.Add(this.MenuStrip);
|
||
this.MainMenuStrip = this.MenuStrip;
|
||
this.Name = "FormMain";
|
||
this.Text = "Завод ЖБИ";
|
||
this.Load += new System.EventHandler(this.FormMain_Load);
|
||
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 CreateOrderButton;
|
||
private Button TakeOrderInWorkButton;
|
||
private Button OrderReadyButton;
|
||
private Button IssuedOrderButton;
|
||
private Button UpdateListButton;
|
||
private ToolStripMenuItem магазиныToolStripMenuItem;
|
||
private Button AddShopButton;
|
||
}
|
||
} |