163 lines
6.1 KiB
C#
163 lines
6.1 KiB
C#
namespace ProjectOptika.Scripts.Forms
|
|
{
|
|
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()
|
|
{
|
|
checkedListBoxPositionEmployee = new CheckedListBox();
|
|
labelFirstName = new Label();
|
|
textBoxFirstName = new TextBox();
|
|
textBoxSecondName = new TextBox();
|
|
labelSecondName = new Label();
|
|
textBoxSurname = new TextBox();
|
|
labelSurname = new Label();
|
|
labelPositionEmployee = new Label();
|
|
buttonCancel = new Button();
|
|
buttonSave = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// checkedListBoxPositionEmployee
|
|
//
|
|
checkedListBoxPositionEmployee.FormattingEnabled = true;
|
|
checkedListBoxPositionEmployee.Location = new Point(298, 45);
|
|
checkedListBoxPositionEmployee.Name = "checkedListBoxPositionEmployee";
|
|
checkedListBoxPositionEmployee.Size = new Size(225, 180);
|
|
checkedListBoxPositionEmployee.TabIndex = 0;
|
|
//
|
|
// labelFirstName
|
|
//
|
|
labelFirstName.AutoSize = true;
|
|
labelFirstName.Location = new Point(12, 9);
|
|
labelFirstName.Name = "labelFirstName";
|
|
labelFirstName.Size = new Size(39, 20);
|
|
labelFirstName.TabIndex = 1;
|
|
labelFirstName.Text = "Имя";
|
|
//
|
|
// textBoxFirstName
|
|
//
|
|
textBoxFirstName.Location = new Point(109, 6);
|
|
textBoxFirstName.Name = "textBoxFirstName";
|
|
textBoxFirstName.Size = new Size(125, 27);
|
|
textBoxFirstName.TabIndex = 2;
|
|
//
|
|
// textBoxSecondName
|
|
//
|
|
textBoxSecondName.Location = new Point(109, 54);
|
|
textBoxSecondName.Name = "textBoxSecondName";
|
|
textBoxSecondName.Size = new Size(125, 27);
|
|
textBoxSecondName.TabIndex = 4;
|
|
//
|
|
// labelSecondName
|
|
//
|
|
labelSecondName.AutoSize = true;
|
|
labelSecondName.Location = new Point(12, 57);
|
|
labelSecondName.Name = "labelSecondName";
|
|
labelSecondName.Size = new Size(72, 20);
|
|
labelSecondName.TabIndex = 3;
|
|
labelSecondName.Text = "Отчество";
|
|
//
|
|
// textBoxSurname
|
|
//
|
|
textBoxSurname.Location = new Point(109, 105);
|
|
textBoxSurname.Name = "textBoxSurname";
|
|
textBoxSurname.Size = new Size(125, 27);
|
|
textBoxSurname.TabIndex = 6;
|
|
//
|
|
// labelSurname
|
|
//
|
|
labelSurname.AutoSize = true;
|
|
labelSurname.Location = new Point(12, 108);
|
|
labelSurname.Name = "labelSurname";
|
|
labelSurname.Size = new Size(74, 20);
|
|
labelSurname.TabIndex = 5;
|
|
labelSurname.Text = "Фимилия";
|
|
//
|
|
// labelPositionEmployee
|
|
//
|
|
labelPositionEmployee.AutoSize = true;
|
|
labelPositionEmployee.Location = new Point(298, 13);
|
|
labelPositionEmployee.Name = "labelPositionEmployee";
|
|
labelPositionEmployee.Size = new Size(86, 20);
|
|
labelPositionEmployee.TabIndex = 7;
|
|
labelPositionEmployee.Text = "Должность";
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(151, 196);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(94, 29);
|
|
buttonCancel.TabIndex = 15;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += ButtonCancel_Click;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(12, 196);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(94, 29);
|
|
buttonSave.TabIndex = 14;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += ButtonSave_Click;
|
|
//
|
|
// FormEmployee
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(537, 255);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(labelPositionEmployee);
|
|
Controls.Add(textBoxSurname);
|
|
Controls.Add(labelSurname);
|
|
Controls.Add(textBoxSecondName);
|
|
Controls.Add(labelSecondName);
|
|
Controls.Add(textBoxFirstName);
|
|
Controls.Add(labelFirstName);
|
|
Controls.Add(checkedListBoxPositionEmployee);
|
|
Name = "FormEmployee";
|
|
StartPosition = FormStartPosition.CenterParent;
|
|
Text = "Сотрудник";
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private CheckedListBox checkedListBoxPositionEmployee;
|
|
private Label labelFirstName;
|
|
private TextBox textBoxFirstName;
|
|
private TextBox textBoxSecondName;
|
|
private Label labelSecondName;
|
|
private TextBox textBoxSurname;
|
|
private Label labelSurname;
|
|
private Label labelPositionEmployee;
|
|
private Button buttonCancel;
|
|
private Button buttonSave;
|
|
}
|
|
} |