166 lines
6.1 KiB
C#
166 lines
6.1 KiB
C#
namespace CarRepairShopView
|
|
{
|
|
partial class FormImplementer
|
|
{
|
|
/// <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()
|
|
{
|
|
textBoxFIO = new TextBox();
|
|
label1 = new Label();
|
|
label2 = new Label();
|
|
label3 = new Label();
|
|
label4 = new Label();
|
|
textBoxPassword = new TextBox();
|
|
numericUpDownWorkExpirience = new NumericUpDown();
|
|
numericUpDownQualification = new NumericUpDown();
|
|
buttonSave = new Button();
|
|
buttonClose = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExpirience).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxFIO
|
|
//
|
|
textBoxFIO.Location = new Point(103, 5);
|
|
textBoxFIO.Name = "textBoxFIO";
|
|
textBoxFIO.Size = new Size(181, 23);
|
|
textBoxFIO.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(60, 9);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(37, 15);
|
|
label1.TabIndex = 1;
|
|
label1.Text = "ФИО:";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(45, 45);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(52, 15);
|
|
label2.TabIndex = 2;
|
|
label2.Text = "Пароль:";
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(13, 85);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(84, 15);
|
|
label3.TabIndex = 3;
|
|
label3.Text = "Опыт работы:";
|
|
//
|
|
// label4
|
|
//
|
|
label4.AutoSize = true;
|
|
label4.Location = new Point(6, 128);
|
|
label4.Name = "label4";
|
|
label4.Size = new Size(91, 15);
|
|
label4.TabIndex = 4;
|
|
label4.Text = "Квалификация:";
|
|
//
|
|
// textBoxPassword
|
|
//
|
|
textBoxPassword.Location = new Point(103, 41);
|
|
textBoxPassword.Name = "textBoxPassword";
|
|
textBoxPassword.Size = new Size(181, 23);
|
|
textBoxPassword.TabIndex = 5;
|
|
//
|
|
// numericUpDownWorkExpirience
|
|
//
|
|
numericUpDownWorkExpirience.Location = new Point(103, 82);
|
|
numericUpDownWorkExpirience.Name = "numericUpDownWorkExpirience";
|
|
numericUpDownWorkExpirience.Size = new Size(122, 23);
|
|
numericUpDownWorkExpirience.TabIndex = 6;
|
|
//
|
|
// numericUpDownQualification
|
|
//
|
|
numericUpDownQualification.Location = new Point(103, 125);
|
|
numericUpDownQualification.Name = "numericUpDownQualification";
|
|
numericUpDownQualification.Size = new Size(122, 23);
|
|
numericUpDownQualification.TabIndex = 7;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(220, 154);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(94, 35);
|
|
buttonSave.TabIndex = 8;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonClose
|
|
//
|
|
buttonClose.Location = new Point(120, 154);
|
|
buttonClose.Name = "buttonClose";
|
|
buttonClose.Size = new Size(94, 35);
|
|
buttonClose.TabIndex = 9;
|
|
buttonClose.Text = "Отмена";
|
|
buttonClose.UseVisualStyleBackColor = true;
|
|
buttonClose.Click += buttonClose_Click;
|
|
//
|
|
// FormImplementer
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(320, 196);
|
|
Controls.Add(buttonClose);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(numericUpDownQualification);
|
|
Controls.Add(numericUpDownWorkExpirience);
|
|
Controls.Add(textBoxPassword);
|
|
Controls.Add(label4);
|
|
Controls.Add(label3);
|
|
Controls.Add(label2);
|
|
Controls.Add(label1);
|
|
Controls.Add(textBoxFIO);
|
|
Name = "FormImplementer";
|
|
Text = "Создание исполнителя";
|
|
Load += FormImplementer_Load;
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExpirience).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxFIO;
|
|
private Label label1;
|
|
private Label label2;
|
|
private Label label3;
|
|
private Label label4;
|
|
private TextBox textBoxPassword;
|
|
private NumericUpDown numericUpDownWorkExpirience;
|
|
private NumericUpDown numericUpDownQualification;
|
|
private Button buttonSave;
|
|
private Button buttonClose;
|
|
}
|
|
} |