166 lines
5.0 KiB
C#
166 lines
5.0 KiB
C#
namespace ConfectioneryView
|
|
{
|
|
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()
|
|
{
|
|
labelName = new Label();
|
|
labelPassword = new Label();
|
|
labelWorkExp = new Label();
|
|
labelQualif = new Label();
|
|
textBoxFIO = new TextBox();
|
|
textBoxPassword = new TextBox();
|
|
numericUpDownWorkExperience = new NumericUpDown();
|
|
numericUpDownQualification = new NumericUpDown();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExperience).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// labelName
|
|
//
|
|
labelName.AutoSize = true;
|
|
labelName.Location = new Point(91, 87);
|
|
labelName.Name = "labelName";
|
|
labelName.Size = new Size(56, 25);
|
|
labelName.TabIndex = 0;
|
|
labelName.Text = "ФИО:";
|
|
//
|
|
// labelPassword
|
|
//
|
|
labelPassword.AutoSize = true;
|
|
labelPassword.Location = new Point(69, 147);
|
|
labelPassword.Name = "labelPassword";
|
|
labelPassword.Size = new Size(78, 25);
|
|
labelPassword.TabIndex = 1;
|
|
labelPassword.Text = "Пароль:";
|
|
//
|
|
// labelWorkExp
|
|
//
|
|
labelWorkExp.AutoSize = true;
|
|
labelWorkExp.Location = new Point(37, 213);
|
|
labelWorkExp.Name = "labelWorkExp";
|
|
labelWorkExp.Size = new Size(122, 25);
|
|
labelWorkExp.TabIndex = 2;
|
|
labelWorkExp.Text = "Стаж работы:";
|
|
//
|
|
// labelQualif
|
|
//
|
|
labelQualif.AutoSize = true;
|
|
labelQualif.Location = new Point(25, 282);
|
|
labelQualif.Name = "labelQualif";
|
|
labelQualif.Size = new Size(134, 25);
|
|
labelQualif.TabIndex = 3;
|
|
labelQualif.Text = "Квалификация:";
|
|
//
|
|
// textBoxFIO
|
|
//
|
|
textBoxFIO.Location = new Point(196, 84);
|
|
textBoxFIO.Name = "textBoxFIO";
|
|
textBoxFIO.Size = new Size(510, 31);
|
|
textBoxFIO.TabIndex = 4;
|
|
//
|
|
// textBoxPassword
|
|
//
|
|
textBoxPassword.Location = new Point(196, 144);
|
|
textBoxPassword.Name = "textBoxPassword";
|
|
textBoxPassword.Size = new Size(510, 31);
|
|
textBoxPassword.TabIndex = 5;
|
|
//
|
|
// numericUpDownWorkExperience
|
|
//
|
|
numericUpDownWorkExperience.Location = new Point(199, 215);
|
|
numericUpDownWorkExperience.Name = "numericUpDownWorkExperience";
|
|
numericUpDownWorkExperience.Size = new Size(189, 31);
|
|
numericUpDownWorkExperience.TabIndex = 6;
|
|
//
|
|
// numericUpDownQualification
|
|
//
|
|
numericUpDownQualification.Location = new Point(196, 287);
|
|
numericUpDownQualification.Name = "numericUpDownQualification";
|
|
numericUpDownQualification.Size = new Size(192, 31);
|
|
numericUpDownQualification.TabIndex = 7;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(460, 344);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(169, 61);
|
|
buttonSave.TabIndex = 8;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(691, 344);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(169, 61);
|
|
buttonCancel.TabIndex = 9;
|
|
buttonCancel.Text = "Отмена";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// FormImplementer
|
|
//
|
|
AutoScaleDimensions = new SizeF(10F, 25F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(929, 450);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(numericUpDownQualification);
|
|
Controls.Add(numericUpDownWorkExperience);
|
|
Controls.Add(textBoxPassword);
|
|
Controls.Add(textBoxFIO);
|
|
Controls.Add(labelQualif);
|
|
Controls.Add(labelWorkExp);
|
|
Controls.Add(labelPassword);
|
|
Controls.Add(labelName);
|
|
Name = "FormImplementer";
|
|
Text = "Исполнитель";
|
|
Load += FormImplementer_Load;
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExperience).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).EndInit();
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private Label labelName;
|
|
private Label labelPassword;
|
|
private Label labelWorkExp;
|
|
private Label labelQualif;
|
|
private TextBox textBoxFIO;
|
|
private TextBox textBoxPassword;
|
|
private NumericUpDown numericUpDownWorkExperience;
|
|
private NumericUpDown numericUpDownQualification;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |