2024-02-27 23:28:34 +04:00
|
|
|
|
namespace AircraftPlantView
|
|
|
|
|
{
|
|
|
|
|
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.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.ButtonRef = new System.Windows.Forms.Button();
|
|
|
|
|
this.menuStrip1 = 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();
|
2024-03-13 11:16:22 +04:00
|
|
|
|
this.магазиныToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2024-03-24 22:42:16 +04:00
|
|
|
|
this.buttonAddPlane = new System.Windows.Forms.Button();
|
2024-02-27 23:28:34 +04:00
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
|
|
|
this.menuStrip1.SuspendLayout();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dataGridView
|
|
|
|
|
//
|
|
|
|
|
this.dataGridView.AllowUserToAddRows = false;
|
|
|
|
|
this.dataGridView.AllowUserToDeleteRows = false;
|
|
|
|
|
this.dataGridView.BackgroundColor = System.Drawing.Color.White;
|
|
|
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
|
|
|
this.dataGridView.Dock = System.Windows.Forms.DockStyle.Left;
|
|
|
|
|
this.dataGridView.GridColor = System.Drawing.Color.White;
|
|
|
|
|
this.dataGridView.Location = new System.Drawing.Point(0, 24);
|
|
|
|
|
this.dataGridView.MultiSelect = false;
|
|
|
|
|
this.dataGridView.Name = "dataGridView";
|
|
|
|
|
this.dataGridView.ReadOnly = true;
|
|
|
|
|
this.dataGridView.RowHeadersVisible = false;
|
|
|
|
|
this.dataGridView.RowTemplate.Height = 25;
|
|
|
|
|
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|
|
|
|
this.dataGridView.Size = new System.Drawing.Size(780, 377);
|
|
|
|
|
this.dataGridView.TabIndex = 0;
|
|
|
|
|
//
|
|
|
|
|
// ButtonCreateOrder
|
|
|
|
|
//
|
|
|
|
|
this.ButtonCreateOrder.Location = new System.Drawing.Point(804, 42);
|
|
|
|
|
this.ButtonCreateOrder.Name = "ButtonCreateOrder";
|
|
|
|
|
this.ButtonCreateOrder.Size = new System.Drawing.Size(153, 23);
|
|
|
|
|
this.ButtonCreateOrder.TabIndex = 1;
|
|
|
|
|
this.ButtonCreateOrder.Text = "Создать заказ";
|
|
|
|
|
this.ButtonCreateOrder.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ButtonCreateOrder.Click += new System.EventHandler(this.ButtonCreateOrder_Click);
|
|
|
|
|
//
|
|
|
|
|
// ButtonTakeOrderInWork
|
|
|
|
|
//
|
|
|
|
|
this.ButtonTakeOrderInWork.Location = new System.Drawing.Point(804, 89);
|
|
|
|
|
this.ButtonTakeOrderInWork.Name = "ButtonTakeOrderInWork";
|
|
|
|
|
this.ButtonTakeOrderInWork.Size = new System.Drawing.Size(153, 23);
|
|
|
|
|
this.ButtonTakeOrderInWork.TabIndex = 2;
|
|
|
|
|
this.ButtonTakeOrderInWork.Text = "Отдать на выполнение";
|
|
|
|
|
this.ButtonTakeOrderInWork.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ButtonTakeOrderInWork.Click += new System.EventHandler(this.ButtonTakeOrderInWork_Click);
|
|
|
|
|
//
|
|
|
|
|
// ButtonOrderReady
|
|
|
|
|
//
|
|
|
|
|
this.ButtonOrderReady.Location = new System.Drawing.Point(804, 139);
|
|
|
|
|
this.ButtonOrderReady.Name = "ButtonOrderReady";
|
|
|
|
|
this.ButtonOrderReady.Size = new System.Drawing.Size(153, 23);
|
|
|
|
|
this.ButtonOrderReady.TabIndex = 3;
|
|
|
|
|
this.ButtonOrderReady.Text = "Заказ готов";
|
|
|
|
|
this.ButtonOrderReady.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ButtonOrderReady.Click += new System.EventHandler(this.ButtonOrderReady_Click);
|
|
|
|
|
//
|
|
|
|
|
// ButtonIssuedOrder
|
|
|
|
|
//
|
|
|
|
|
this.ButtonIssuedOrder.Location = new System.Drawing.Point(804, 187);
|
|
|
|
|
this.ButtonIssuedOrder.Name = "ButtonIssuedOrder";
|
|
|
|
|
this.ButtonIssuedOrder.Size = new System.Drawing.Size(153, 23);
|
|
|
|
|
this.ButtonIssuedOrder.TabIndex = 4;
|
|
|
|
|
this.ButtonIssuedOrder.Text = "Заказ выдан";
|
|
|
|
|
this.ButtonIssuedOrder.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ButtonIssuedOrder.Click += new System.EventHandler(this.ButtonIssuedOrder_Click);
|
|
|
|
|
//
|
|
|
|
|
// ButtonRef
|
|
|
|
|
//
|
|
|
|
|
this.ButtonRef.Location = new System.Drawing.Point(804, 236);
|
|
|
|
|
this.ButtonRef.Name = "ButtonRef";
|
|
|
|
|
this.ButtonRef.Size = new System.Drawing.Size(153, 23);
|
|
|
|
|
this.ButtonRef.TabIndex = 5;
|
|
|
|
|
this.ButtonRef.Text = "Обновить список";
|
|
|
|
|
this.ButtonRef.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ButtonRef.Click += new System.EventHandler(this.ButtonRef_Click);
|
|
|
|
|
//
|
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
|
|
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.справочникиToolStripMenuItem});
|
|
|
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.menuStrip1.Name = "menuStrip1";
|
|
|
|
|
this.menuStrip1.Size = new System.Drawing.Size(977, 24);
|
|
|
|
|
this.menuStrip1.TabIndex = 6;
|
|
|
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// справочникиToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.справочникиToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.компонентыToolStripMenuItem,
|
2024-03-13 11:16:22 +04:00
|
|
|
|
this.изделияToolStripMenuItem,
|
|
|
|
|
this.магазиныToolStripMenuItem});
|
2024-02-27 23:28:34 +04:00
|
|
|
|
this.справочникиToolStripMenuItem.Name = "справочникиToolStripMenuItem";
|
|
|
|
|
this.справочникиToolStripMenuItem.Size = new System.Drawing.Size(94, 20);
|
|
|
|
|
this.справочникиToolStripMenuItem.Text = "Справочники";
|
|
|
|
|
//
|
|
|
|
|
// компонентыToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.компонентыToolStripMenuItem.Name = "компонентыToolStripMenuItem";
|
2024-03-13 11:16:22 +04:00
|
|
|
|
this.компонентыToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
2024-02-27 23:28:34 +04:00
|
|
|
|
this.компонентыToolStripMenuItem.Text = "Компоненты";
|
|
|
|
|
this.компонентыToolStripMenuItem.Click += new System.EventHandler(this.КомпонентыToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// изделияToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.изделияToolStripMenuItem.Name = "изделияToolStripMenuItem";
|
2024-03-13 11:16:22 +04:00
|
|
|
|
this.изделияToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
2024-02-27 23:28:34 +04:00
|
|
|
|
this.изделияToolStripMenuItem.Text = "Изделия";
|
|
|
|
|
this.изделияToolStripMenuItem.Click += new System.EventHandler(this.ИзделияToolStripMenuItem_Click);
|
|
|
|
|
//
|
2024-03-13 11:16:22 +04:00
|
|
|
|
// магазиныToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.магазиныToolStripMenuItem.Name = "магазиныToolStripMenuItem";
|
|
|
|
|
this.магазиныToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
|
|
|
this.магазиныToolStripMenuItem.Text = "Магазины";
|
2024-03-24 22:42:16 +04:00
|
|
|
|
this.магазиныToolStripMenuItem.Click += new System.EventHandler(this.МагазиныToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// buttonAddPlane
|
|
|
|
|
//
|
|
|
|
|
this.buttonAddPlane.Location = new System.Drawing.Point(811, 280);
|
|
|
|
|
this.buttonAddPlane.Name = "buttonAddPlane";
|
|
|
|
|
this.buttonAddPlane.Size = new System.Drawing.Size(146, 23);
|
|
|
|
|
this.buttonAddPlane.TabIndex = 7;
|
|
|
|
|
this.buttonAddPlane.Text = "Пополнение магазина";
|
|
|
|
|
this.buttonAddPlane.UseVisualStyleBackColor = true;
|
|
|
|
|
this.buttonAddPlane.Click += new System.EventHandler(this.buttonAddPlane_Click);
|
2024-03-13 11:16:22 +04:00
|
|
|
|
//
|
2024-02-27 23:28:34 +04:00
|
|
|
|
// FormMain
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.ClientSize = new System.Drawing.Size(977, 401);
|
2024-03-24 22:42:16 +04:00
|
|
|
|
this.Controls.Add(this.buttonAddPlane);
|
2024-02-27 23:28:34 +04:00
|
|
|
|
this.Controls.Add(this.ButtonRef);
|
|
|
|
|
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.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 ButtonCreateOrder;
|
|
|
|
|
private Button ButtonTakeOrderInWork;
|
|
|
|
|
private Button ButtonOrderReady;
|
|
|
|
|
private Button ButtonIssuedOrder;
|
|
|
|
|
private Button ButtonRef;
|
|
|
|
|
private MenuStrip menuStrip1;
|
|
|
|
|
private ToolStripMenuItem справочникиToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem компонентыToolStripMenuItem;
|
|
|
|
|
private ToolStripMenuItem изделияToolStripMenuItem;
|
2024-03-13 11:16:22 +04:00
|
|
|
|
private ToolStripMenuItem магазиныToolStripMenuItem;
|
2024-03-24 22:42:16 +04:00
|
|
|
|
private Button buttonAddPlane;
|
2024-02-27 23:28:34 +04:00
|
|
|
|
}
|
|
|
|
|
}
|