175 lines
6.9 KiB
C#
175 lines
6.9 KiB
C#
|
namespace SushiBarView
|
|||
|
{
|
|||
|
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()
|
|||
|
{
|
|||
|
labelFIO = new Label();
|
|||
|
labelPassword = new Label();
|
|||
|
labelExperience = new Label();
|
|||
|
labelQualification = new Label();
|
|||
|
textBoxFIO = new TextBox();
|
|||
|
textBoxPassword = new TextBox();
|
|||
|
numericUpDownExperience = new NumericUpDown();
|
|||
|
numericUpDownQualification = new NumericUpDown();
|
|||
|
buttonSave = new Button();
|
|||
|
buttonCancel = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownExperience).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// labelFIO
|
|||
|
//
|
|||
|
labelFIO.AutoSize = true;
|
|||
|
labelFIO.Location = new Point(0, 8);
|
|||
|
labelFIO.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelFIO.Name = "labelFIO";
|
|||
|
labelFIO.Size = new Size(150, 22);
|
|||
|
labelFIO.TabIndex = 0;
|
|||
|
labelFIO.Text = "ФИО исполнителя";
|
|||
|
//
|
|||
|
// labelPassword
|
|||
|
//
|
|||
|
labelPassword.AutoSize = true;
|
|||
|
labelPassword.Location = new Point(0, 73);
|
|||
|
labelPassword.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelPassword.Name = "labelPassword";
|
|||
|
labelPassword.Size = new Size(67, 22);
|
|||
|
labelPassword.TabIndex = 1;
|
|||
|
labelPassword.Text = "Пароль";
|
|||
|
//
|
|||
|
// labelExperience
|
|||
|
//
|
|||
|
labelExperience.AutoSize = true;
|
|||
|
labelExperience.Location = new Point(0, 152);
|
|||
|
labelExperience.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelExperience.Name = "labelExperience";
|
|||
|
labelExperience.Size = new Size(114, 22);
|
|||
|
labelExperience.TabIndex = 2;
|
|||
|
labelExperience.Text = "Опыт работы";
|
|||
|
//
|
|||
|
// labelQualification
|
|||
|
//
|
|||
|
labelQualification.AutoSize = true;
|
|||
|
labelQualification.Location = new Point(0, 226);
|
|||
|
labelQualification.Margin = new Padding(4, 0, 4, 0);
|
|||
|
labelQualification.Name = "labelQualification";
|
|||
|
labelQualification.Size = new Size(127, 22);
|
|||
|
labelQualification.TabIndex = 3;
|
|||
|
labelQualification.Text = "Квалификация";
|
|||
|
//
|
|||
|
// textBoxFIO
|
|||
|
//
|
|||
|
textBoxFIO.Location = new Point(243, 5);
|
|||
|
textBoxFIO.Name = "textBoxFIO";
|
|||
|
textBoxFIO.Size = new Size(317, 29);
|
|||
|
textBoxFIO.TabIndex = 4;
|
|||
|
//
|
|||
|
// textBoxPassword
|
|||
|
//
|
|||
|
textBoxPassword.Location = new Point(243, 73);
|
|||
|
textBoxPassword.Name = "textBoxPassword";
|
|||
|
textBoxPassword.Size = new Size(317, 29);
|
|||
|
textBoxPassword.TabIndex = 5;
|
|||
|
//
|
|||
|
// numericUpDownExperience
|
|||
|
//
|
|||
|
numericUpDownExperience.Location = new Point(243, 145);
|
|||
|
numericUpDownExperience.Name = "numericUpDownExperience";
|
|||
|
numericUpDownExperience.Size = new Size(317, 29);
|
|||
|
numericUpDownExperience.TabIndex = 6;
|
|||
|
//
|
|||
|
// numericUpDownQualification
|
|||
|
//
|
|||
|
numericUpDownQualification.Location = new Point(243, 219);
|
|||
|
numericUpDownQualification.Name = "numericUpDownQualification";
|
|||
|
numericUpDownQualification.Size = new Size(317, 29);
|
|||
|
numericUpDownQualification.TabIndex = 7;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
|
|||
|
buttonSave.Location = new Point(10, 342);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(140, 53);
|
|||
|
buttonSave.TabIndex = 8;
|
|||
|
buttonSave.Text = "Сохранить";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
|
|||
|
buttonCancel.Location = new Point(427, 342);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(140, 53);
|
|||
|
buttonCancel.TabIndex = 9;
|
|||
|
buttonCancel.Text = "Отмена";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// FormImplementer
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(10F, 22F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
BackColor = SystemColors.GradientInactiveCaption;
|
|||
|
ClientSize = new Size(579, 407);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(numericUpDownQualification);
|
|||
|
Controls.Add(numericUpDownExperience);
|
|||
|
Controls.Add(textBoxPassword);
|
|||
|
Controls.Add(textBoxFIO);
|
|||
|
Controls.Add(labelQualification);
|
|||
|
Controls.Add(labelExperience);
|
|||
|
Controls.Add(labelPassword);
|
|||
|
Controls.Add(labelFIO);
|
|||
|
Font = new Font("Candara", 10.8F, FontStyle.Regular, GraphicsUnit.Point, 204);
|
|||
|
Margin = new Padding(4, 3, 4, 3);
|
|||
|
Name = "FormImplementer";
|
|||
|
Text = "Исполнитель";
|
|||
|
Load += FormImplementer_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownExperience).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Label labelFIO;
|
|||
|
private Label labelPassword;
|
|||
|
private Label labelExperience;
|
|||
|
private Label labelQualification;
|
|||
|
private TextBox textBoxFIO;
|
|||
|
private TextBox textBoxPassword;
|
|||
|
private NumericUpDown numericUpDownExperience;
|
|||
|
private NumericUpDown numericUpDownQualification;
|
|||
|
private Button buttonSave;
|
|||
|
private Button buttonCancel;
|
|||
|
}
|
|||
|
}
|