2024-05-12 04:39:38 +04:00

172 lines
5.5 KiB
C#

namespace PrecastConcretePlantView
{
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()
{
buttonCancel = new Button();
buttonSave = new Button();
numericUpDownQualification = new NumericUpDown();
labelQualification = new Label();
numericUpDownWorkExperience = new NumericUpDown();
labelWorkExperience = new Label();
textBoxPassword = new TextBox();
labelPassword = new Label();
textBoxFIO = new TextBox();
labelFIO = new Label();
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).BeginInit();
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExperience).BeginInit();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(369, 152);
buttonCancel.Margin = new Padding(3, 2, 3, 2);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(119, 30);
buttonCancel.TabIndex = 22;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(249, 152);
buttonSave.Margin = new Padding(3, 2, 3, 2);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(114, 30);
buttonSave.TabIndex = 21;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// numericUpDownQualification
//
numericUpDownQualification.Location = new Point(137, 106);
numericUpDownQualification.Margin = new Padding(3, 2, 3, 2);
numericUpDownQualification.Name = "numericUpDownQualification";
numericUpDownQualification.Size = new Size(108, 23);
numericUpDownQualification.TabIndex = 20;
//
// labelQualification
//
labelQualification.AutoSize = true;
labelQualification.Location = new Point(10, 108);
labelQualification.Name = "labelQualification";
labelQualification.Size = new Size(91, 15);
labelQualification.TabIndex = 19;
labelQualification.Text = "Квалификация:";
//
// numericUpDownWorkExperience
//
numericUpDownWorkExperience.Location = new Point(137, 73);
numericUpDownWorkExperience.Margin = new Padding(3, 2, 3, 2);
numericUpDownWorkExperience.Name = "numericUpDownWorkExperience";
numericUpDownWorkExperience.Size = new Size(108, 23);
numericUpDownWorkExperience.TabIndex = 18;
//
// labelWorkExperience
//
labelWorkExperience.AutoSize = true;
labelWorkExperience.Location = new Point(10, 74);
labelWorkExperience.Name = "labelWorkExperience";
labelWorkExperience.Size = new Size(84, 15);
labelWorkExperience.TabIndex = 17;
labelWorkExperience.Text = "Опыт работы:";
//
// textBoxPassword
//
textBoxPassword.Location = new Point(137, 38);
textBoxPassword.Margin = new Padding(3, 2, 3, 2);
textBoxPassword.Name = "textBoxPassword";
textBoxPassword.Size = new Size(180, 23);
textBoxPassword.TabIndex = 16;
//
// labelPassword
//
labelPassword.AutoSize = true;
labelPassword.Location = new Point(10, 40);
labelPassword.Name = "labelPassword";
labelPassword.Size = new Size(52, 15);
labelPassword.TabIndex = 15;
labelPassword.Text = "Пароль:";
//
// textBoxFIO
//
textBoxFIO.Location = new Point(137, 9);
textBoxFIO.Margin = new Padding(3, 2, 3, 2);
textBoxFIO.Name = "textBoxFIO";
textBoxFIO.Size = new Size(350, 23);
textBoxFIO.TabIndex = 14;
//
// labelFIO
//
labelFIO.AutoSize = true;
labelFIO.Location = new Point(10, 11);
labelFIO.Name = "labelFIO";
labelFIO.Size = new Size(112, 15);
labelFIO.TabIndex = 13;
labelFIO.Text = "ФИО исполнителя:";
//
// FormImplementer
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(499, 191);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(numericUpDownQualification);
Controls.Add(labelQualification);
Controls.Add(numericUpDownWorkExperience);
Controls.Add(labelWorkExperience);
Controls.Add(textBoxPassword);
Controls.Add(labelPassword);
Controls.Add(textBoxFIO);
Controls.Add(labelFIO);
Name = "FormImplementer";
Text = "Исполнитель";
Load += FormImplementer_Load;
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).EndInit();
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExperience).EndInit();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private NumericUpDown numericUpDownQualification;
private Label labelQualification;
private NumericUpDown numericUpDownWorkExperience;
private Label labelWorkExperience;
private TextBox textBoxPassword;
private Label labelPassword;
private TextBox textBoxFIO;
private Label labelFIO;
}
}