119 lines
5.2 KiB
C#
119 lines
5.2 KiB
C#
|
namespace ConstructionCompanyView
|
|||
|
{
|
|||
|
partial class FormOrders
|
|||
|
{
|
|||
|
/// <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.buttonRef = new System.Windows.Forms.Button();
|
|||
|
this.buttonDone = new System.Windows.Forms.Button();
|
|||
|
this.buttonTakeInWork = new System.Windows.Forms.Button();
|
|||
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonRef
|
|||
|
//
|
|||
|
this.buttonRef.Location = new System.Drawing.Point(1236, 207);
|
|||
|
this.buttonRef.Name = "buttonRef";
|
|||
|
this.buttonRef.Size = new System.Drawing.Size(157, 29);
|
|||
|
this.buttonRef.TabIndex = 14;
|
|||
|
this.buttonRef.Text = "Обновить";
|
|||
|
this.buttonRef.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// buttonDone
|
|||
|
//
|
|||
|
this.buttonDone.Location = new System.Drawing.Point(1236, 138);
|
|||
|
this.buttonDone.Name = "buttonDone";
|
|||
|
this.buttonDone.Size = new System.Drawing.Size(157, 29);
|
|||
|
this.buttonDone.TabIndex = 13;
|
|||
|
this.buttonDone.Text = "Заказ готов ";
|
|||
|
this.buttonDone.UseVisualStyleBackColor = true;
|
|||
|
this.buttonDone.Click += new System.EventHandler(this.buttonDone_Click);
|
|||
|
//
|
|||
|
// buttonTakeInWork
|
|||
|
//
|
|||
|
this.buttonTakeInWork.Location = new System.Drawing.Point(1236, 73);
|
|||
|
this.buttonTakeInWork.Name = "buttonTakeInWork";
|
|||
|
this.buttonTakeInWork.Size = new System.Drawing.Size(157, 30);
|
|||
|
this.buttonTakeInWork.TabIndex = 12;
|
|||
|
this.buttonTakeInWork.Text = "Перевести в работу";
|
|||
|
this.buttonTakeInWork.UseVisualStyleBackColor = true;
|
|||
|
this.buttonTakeInWork.Click += new System.EventHandler(this.buttonTakeInWork_Click);
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
this.buttonAdd.Location = new System.Drawing.Point(1236, 11);
|
|||
|
this.buttonAdd.Name = "buttonAdd";
|
|||
|
this.buttonAdd.Size = new System.Drawing.Size(157, 29);
|
|||
|
this.buttonAdd.TabIndex = 11;
|
|||
|
this.buttonAdd.Text = "Принять заказ";
|
|||
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
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.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.dataGridView.MultiSelect = false;
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowHeadersVisible = false;
|
|||
|
this.dataGridView.RowHeadersWidth = 51;
|
|||
|
this.dataGridView.RowTemplate.Height = 29;
|
|||
|
this.dataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(1193, 450);
|
|||
|
this.dataGridView.TabIndex = 10;
|
|||
|
//
|
|||
|
// FormOrders
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(1405, 450);
|
|||
|
this.Controls.Add(this.buttonRef);
|
|||
|
this.Controls.Add(this.buttonDone);
|
|||
|
this.Controls.Add(this.buttonTakeInWork);
|
|||
|
this.Controls.Add(this.buttonAdd);
|
|||
|
this.Controls.Add(this.dataGridView);
|
|||
|
this.Name = "FormOrders";
|
|||
|
this.Text = "Заказы";
|
|||
|
this.Load += new System.EventHandler(this.FormOrders_Load);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonRef;
|
|||
|
private Button buttonDone;
|
|||
|
private Button buttonTakeInWork;
|
|||
|
private Button buttonAdd;
|
|||
|
private DataGridView dataGridView;
|
|||
|
}
|
|||
|
}
|