81 lines
3.4 KiB
C#
81 lines
3.4 KiB
C#
namespace ConstructionCompanyView
|
|
{
|
|
partial class FormEmployeeOrders
|
|
{
|
|
/// <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.buttonCreate = new System.Windows.Forms.Button();
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonCreate
|
|
//
|
|
this.buttonCreate.Location = new System.Drawing.Point(604, 12);
|
|
this.buttonCreate.Name = "buttonCreate";
|
|
this.buttonCreate.Size = new System.Drawing.Size(141, 75);
|
|
this.buttonCreate.TabIndex = 14;
|
|
this.buttonCreate.Text = "Отправить сотрудника на заказ";
|
|
this.buttonCreate.UseVisualStyleBackColor = true;
|
|
this.buttonCreate.Click += new System.EventHandler(this.buttonCreate_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(543, 450);
|
|
this.dataGridView.TabIndex = 13;
|
|
//
|
|
// FormEmployeeOrders
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(768, 450);
|
|
this.Controls.Add(this.buttonCreate);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormEmployeeOrders";
|
|
this.Text = "Назначение сотрудников";
|
|
this.Load += new System.EventHandler(this.FormEmployeeOrders_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonCreate;
|
|
private DataGridView dataGridView;
|
|
}
|
|
} |