PIbd-23-Lisov-N.A-SewingDre.../SewingDresses/FormMain.Designer.cs

175 lines
8.5 KiB
C#

namespace SewingDresses
{
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.directoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dataGridView = new System.Windows.Forms.DataGridView();
this.createOrderButton = new System.Windows.Forms.Button();
this.processOrderButton = new System.Windows.Forms.Button();
this.readyOrderButton = new System.Windows.Forms.Button();
this.givenOrderButton = new System.Windows.Forms.Button();
this.refreshOrdersButton = new System.Windows.Forms.Button();
this.materialsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dressesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
this.SuspendLayout();
//
// menuStrip
//
this.menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.directoriesToolStripMenuItem});
this.menuStrip.Location = new System.Drawing.Point(0, 0);
this.menuStrip.Name = "menuStrip";
this.menuStrip.Size = new System.Drawing.Size(800, 24);
this.menuStrip.TabIndex = 0;
this.menuStrip.Text = "menuStrip1";
//
// directoriesToolStripMenuItem
//
this.directoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.materialsToolStripMenuItem,
this.dressesToolStripMenuItem});
this.directoriesToolStripMenuItem.Name = "directoriesToolStripMenuItem";
this.directoriesToolStripMenuItem.Size = new System.Drawing.Size(75, 20);
this.directoriesToolStripMenuItem.Text = "Directories";
//
// dataGridView
//
this.dataGridView.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView.Location = new System.Drawing.Point(2, 27);
this.dataGridView.Name = "dataGridView";
this.dataGridView.RowTemplate.Height = 25;
this.dataGridView.Size = new System.Drawing.Size(631, 420);
this.dataGridView.TabIndex = 1;
//
// createOrderButton
//
this.createOrderButton.Location = new System.Drawing.Point(652, 89);
this.createOrderButton.Name = "createOrderButton";
this.createOrderButton.Size = new System.Drawing.Size(117, 34);
this.createOrderButton.TabIndex = 2;
this.createOrderButton.Text = "Create order";
this.createOrderButton.UseVisualStyleBackColor = true;
this.createOrderButton.Click += new System.EventHandler(this.ButtonCreateOrder_Click);
//
// processOrderButton
//
this.processOrderButton.Location = new System.Drawing.Point(652, 145);
this.processOrderButton.Name = "processOrderButton";
this.processOrderButton.Size = new System.Drawing.Size(117, 34);
this.processOrderButton.TabIndex = 3;
this.processOrderButton.Text = "Order\'s in process";
this.processOrderButton.UseVisualStyleBackColor = true;
this.processOrderButton.Click += new System.EventHandler(this.ButtonTakeOrderInWork_Click);
//
// readyOrderButton
//
this.readyOrderButton.Location = new System.Drawing.Point(652, 203);
this.readyOrderButton.Name = "readyOrderButton";
this.readyOrderButton.Size = new System.Drawing.Size(117, 34);
this.readyOrderButton.TabIndex = 4;
this.readyOrderButton.Text = "Order\'s ready";
this.readyOrderButton.UseVisualStyleBackColor = true;
this.readyOrderButton.Click += new System.EventHandler(this.ButtonOrderReady_Click);
//
// givenOrderButton
//
this.givenOrderButton.Location = new System.Drawing.Point(652, 259);
this.givenOrderButton.Name = "givenOrderButton";
this.givenOrderButton.Size = new System.Drawing.Size(117, 34);
this.givenOrderButton.TabIndex = 5;
this.givenOrderButton.Text = "Order\'s given";
this.givenOrderButton.UseVisualStyleBackColor = true;
this.givenOrderButton.Click += new System.EventHandler(this.ButtonIssuedOrder_Click);
//
// refreshOrdersButton
//
this.refreshOrdersButton.Location = new System.Drawing.Point(652, 321);
this.refreshOrdersButton.Name = "refreshOrdersButton";
this.refreshOrdersButton.Size = new System.Drawing.Size(117, 34);
this.refreshOrdersButton.TabIndex = 6;
this.refreshOrdersButton.Text = "Refresh list";
this.refreshOrdersButton.UseVisualStyleBackColor = true;
this.refreshOrdersButton.Click += new System.EventHandler(this.ButtonRef_Click);
//
// materialsToolStripMenuItem
//
this.materialsToolStripMenuItem.Name = "materialsToolStripMenuItem";
this.materialsToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.materialsToolStripMenuItem.Text = "Materials";
this.materialsToolStripMenuItem.Click += new System.EventHandler(this.materialsToolStripMenuItem_Click);
//
// dressesToolStripMenuItem
//
this.dressesToolStripMenuItem.Name = "dressesToolStripMenuItem";
this.dressesToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.dressesToolStripMenuItem.Text = "Dresses";
this.dressesToolStripMenuItem.Click += new System.EventHandler(this.dressesToolStripMenuItem_Click);
//
// FormMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.refreshOrdersButton);
this.Controls.Add(this.givenOrderButton);
this.Controls.Add(this.readyOrderButton);
this.Controls.Add(this.processOrderButton);
this.Controls.Add(this.createOrderButton);
this.Controls.Add(this.dataGridView);
this.Controls.Add(this.menuStrip);
this.MainMenuStrip = this.menuStrip;
this.Name = "FormMain";
this.Text = "FormMain";
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 directoriesToolStripMenuItem;
private DataGridView dataGridView;
private Button createOrderButton;
private Button processOrderButton;
private Button readyOrderButton;
private Button givenOrderButton;
private Button refreshOrdersButton;
private ToolStripMenuItem materialsToolStripMenuItem;
private ToolStripMenuItem dressesToolStripMenuItem;
}
}