142 lines
3.8 KiB
C#
142 lines
3.8 KiB
C#
namespace PersonnelDepartmentView
|
|
{
|
|
partial class FormEmployee
|
|
{
|
|
/// <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()
|
|
{
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
label1 = new Label();
|
|
textBoxFirstName = new TextBox();
|
|
label2 = new Label();
|
|
textBoxLastName = new TextBox();
|
|
label3 = new Label();
|
|
textBoxPatronymic = new TextBox();
|
|
SuspendLayout();
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(276, 99);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(75, 23);
|
|
buttonCancel.TabIndex = 11;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(195, 99);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(75, 23);
|
|
buttonSave.TabIndex = 10;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(16, 15);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(100, 15);
|
|
label1.TabIndex = 9;
|
|
label1.Text = "Имя сотрудника:";
|
|
//
|
|
// textBoxFirstName
|
|
//
|
|
textBoxFirstName.Location = new Point(149, 12);
|
|
textBoxFirstName.Name = "textBoxFirstName";
|
|
textBoxFirstName.Size = new Size(202, 23);
|
|
textBoxFirstName.TabIndex = 8;
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(16, 44);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(127, 15);
|
|
label2.TabIndex = 13;
|
|
label2.Text = "Фамилия сотрудника:";
|
|
//
|
|
// textBoxLastName
|
|
//
|
|
textBoxLastName.Location = new Point(149, 41);
|
|
textBoxLastName.Name = "textBoxLastName";
|
|
textBoxLastName.Size = new Size(202, 23);
|
|
textBoxLastName.TabIndex = 12;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(16, 73);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(127, 15);
|
|
label3.TabIndex = 15;
|
|
label3.Text = "Отчество сотрудника:";
|
|
//
|
|
// textBoxPatronymic
|
|
//
|
|
textBoxPatronymic.Location = new Point(149, 70);
|
|
textBoxPatronymic.Name = "textBoxPatronymic";
|
|
textBoxPatronymic.Size = new Size(202, 23);
|
|
textBoxPatronymic.TabIndex = 14;
|
|
//
|
|
// FormEmployee
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(369, 136);
|
|
Controls.Add(label3);
|
|
Controls.Add(textBoxPatronymic);
|
|
Controls.Add(label2);
|
|
Controls.Add(textBoxLastName);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(label1);
|
|
Controls.Add(textBoxFirstName);
|
|
FormBorderStyle = FormBorderStyle.FixedSingle;
|
|
Name = "FormEmployee";
|
|
StartPosition = FormStartPosition.CenterScreen;
|
|
Text = "Сотрудник";
|
|
Load += FormEmployee_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
private Label label1;
|
|
private TextBox textBoxFirstName;
|
|
private Label label2;
|
|
private TextBox textBoxLastName;
|
|
private Label label3;
|
|
private TextBox textBoxPatronymic;
|
|
}
|
|
} |