219 lines
8.3 KiB
C#

namespace DeviceAdmin
{
partial class FormStaff
{
/// <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()
{
dataGridView = new DataGridView();
buttonAdd = new Button();
buttonEdit = new Button();
buttonDelete = new Button();
buttonRefresh = new Button();
textBoxPatronymic = new TextBox();
label1 = new Label();
label2 = new Label();
textBoxDepartment = new TextBox();
textBoxName = new TextBox();
textBoxSurname = new TextBox();
label3 = new Label();
label4 = new Label();
((System.ComponentModel.ISupportInitialize)dataGridView).BeginInit();
SuspendLayout();
//
// dataGridView
//
dataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
dataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView.Dock = DockStyle.Left;
dataGridView.Location = new Point(0, 0);
dataGridView.Margin = new Padding(5, 6, 5, 6);
dataGridView.Name = "dataGridView";
dataGridView.ReadOnly = true;
dataGridView.RowHeadersWidth = 62;
dataGridView.Size = new Size(764, 482);
dataGridView.TabIndex = 0;
//
// buttonAdd
//
buttonAdd.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point, 204);
buttonAdd.Location = new Point(780, 87);
buttonAdd.Margin = new Padding(5, 6, 5, 6);
buttonAdd.Name = "buttonAdd";
buttonAdd.Size = new Size(266, 60);
buttonAdd.TabIndex = 2;
buttonAdd.Text = "Добавить";
buttonAdd.UseVisualStyleBackColor = true;
buttonAdd.Click += ButtonAdd_Click;
//
// buttonEdit
//
buttonEdit.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point, 204);
buttonEdit.Location = new Point(780, 335);
buttonEdit.Margin = new Padding(5, 6, 5, 6);
buttonEdit.Name = "buttonEdit";
buttonEdit.Size = new Size(266, 60);
buttonEdit.TabIndex = 7;
buttonEdit.Text = "Изменить";
buttonEdit.UseVisualStyleBackColor = true;
buttonEdit.Click += ButtonEdit_Click;
//
// buttonDelete
//
buttonDelete.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point, 204);
buttonDelete.Location = new Point(780, 407);
buttonDelete.Margin = new Padding(5, 6, 5, 6);
buttonDelete.Name = "buttonDelete";
buttonDelete.Size = new Size(266, 60);
buttonDelete.TabIndex = 8;
buttonDelete.Text = "Удалить";
buttonDelete.UseVisualStyleBackColor = true;
buttonDelete.Click += ButtonDelete_Click;
//
// buttonRefresh
//
buttonRefresh.Font = new Font("Segoe UI", 14F, FontStyle.Regular, GraphicsUnit.Point, 204);
buttonRefresh.Location = new Point(780, 15);
buttonRefresh.Margin = new Padding(5, 6, 5, 6);
buttonRefresh.Name = "buttonRefresh";
buttonRefresh.Size = new Size(266, 60);
buttonRefresh.TabIndex = 1;
buttonRefresh.Text = "Обновить";
buttonRefresh.UseVisualStyleBackColor = true;
buttonRefresh.Click += ButtonRefresh_Click;
//
// textBoxPatronymic
//
textBoxPatronymic.Location = new Point(879, 250);
textBoxPatronymic.Margin = new Padding(5, 6, 5, 6);
textBoxPatronymic.Name = "textBoxPatronymic";
textBoxPatronymic.Size = new Size(167, 31);
textBoxPatronymic.TabIndex = 5;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(780, 253);
label1.Name = "label1";
label1.Size = new Size(92, 25);
label1.TabIndex = 11;
label1.Text = "Отчество:";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(780, 294);
label2.Name = "label2";
label2.Size = new Size(65, 25);
label2.TabIndex = 12;
label2.Text = "Отдел:";
//
// textBoxDepartment
//
textBoxDepartment.Location = new Point(879, 291);
textBoxDepartment.Margin = new Padding(5, 6, 5, 6);
textBoxDepartment.Name = "textBoxDepartment";
textBoxDepartment.Size = new Size(167, 31);
textBoxDepartment.TabIndex = 6;
//
// textBoxName
//
textBoxName.Location = new Point(879, 207);
textBoxName.Margin = new Padding(5, 6, 5, 6);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(167, 31);
textBoxName.TabIndex = 4;
//
// textBoxSurname
//
textBoxSurname.Location = new Point(879, 164);
textBoxSurname.Margin = new Padding(5, 6, 5, 6);
textBoxSurname.Name = "textBoxSurname";
textBoxSurname.Size = new Size(167, 31);
textBoxSurname.TabIndex = 3;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(780, 210);
label3.Name = "label3";
label3.Size = new Size(51, 25);
label3.TabIndex = 16;
label3.Text = "Имя:";
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(780, 170);
label4.Name = "label4";
label4.Size = new Size(89, 25);
label4.TabIndex = 17;
label4.Text = "Фамилия:";
//
// FormStaff
//
AutoScaleDimensions = new SizeF(10F, 25F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1060, 482);
Controls.Add(label4);
Controls.Add(label3);
Controls.Add(textBoxSurname);
Controls.Add(textBoxName);
Controls.Add(textBoxDepartment);
Controls.Add(label2);
Controls.Add(label1);
Controls.Add(textBoxPatronymic);
Controls.Add(buttonRefresh);
Controls.Add(buttonDelete);
Controls.Add(buttonEdit);
Controls.Add(buttonAdd);
Controls.Add(dataGridView);
Margin = new Padding(5, 6, 5, 6);
Name = "FormStaff";
Text = "Персонал";
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private DataGridView dataGridView;
private Button buttonAdd;
private Button buttonEdit;
private Button buttonDelete;
private Button buttonRefresh;
private TextBox roomTextBox;
private TextBox textBoxPatronymic;
private Label label1;
private Label label2;
private TextBox textBoxDepartment;
private TextBox textBoxName;
private TextBox textBoxSurname;
private Label label3;
private Label label4;
}
}