169 lines
6.5 KiB
C#
169 lines
6.5 KiB
C#
|
namespace AutomobilePlantView
|
|||
|
{
|
|||
|
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();
|
|||
|
textBoxFIO = new TextBox();
|
|||
|
labelFIO = new Label();
|
|||
|
textBoxPassword = new TextBox();
|
|||
|
numericUpDownQualification = new NumericUpDown();
|
|||
|
numericUpDownWorkExpirience = new NumericUpDown();
|
|||
|
labelPassword = new Label();
|
|||
|
labelQualification = new Label();
|
|||
|
labelExpirience = new Label();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).BeginInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExpirience).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// buttonCancel
|
|||
|
//
|
|||
|
buttonCancel.Location = new Point(343, 125);
|
|||
|
buttonCancel.Name = "buttonCancel";
|
|||
|
buttonCancel.Size = new Size(75, 23);
|
|||
|
buttonCancel.TabIndex = 11;
|
|||
|
buttonCancel.Text = "Cancel";
|
|||
|
buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
buttonCancel.Click += buttonCancel_Click;
|
|||
|
//
|
|||
|
// buttonSave
|
|||
|
//
|
|||
|
buttonSave.Location = new Point(262, 125);
|
|||
|
buttonSave.Name = "buttonSave";
|
|||
|
buttonSave.Size = new Size(75, 23);
|
|||
|
buttonSave.TabIndex = 10;
|
|||
|
buttonSave.Text = "Save";
|
|||
|
buttonSave.UseVisualStyleBackColor = true;
|
|||
|
buttonSave.Click += buttonSave_Click;
|
|||
|
//
|
|||
|
// textBoxFIO
|
|||
|
//
|
|||
|
textBoxFIO.Location = new Point(96, 9);
|
|||
|
textBoxFIO.Name = "textBoxFIO";
|
|||
|
textBoxFIO.Size = new Size(322, 23);
|
|||
|
textBoxFIO.TabIndex = 8;
|
|||
|
//
|
|||
|
// labelFIO
|
|||
|
//
|
|||
|
labelFIO.AutoSize = true;
|
|||
|
labelFIO.Location = new Point(12, 12);
|
|||
|
labelFIO.Name = "labelFIO";
|
|||
|
labelFIO.Size = new Size(42, 15);
|
|||
|
labelFIO.TabIndex = 6;
|
|||
|
labelFIO.Text = "Name:";
|
|||
|
//
|
|||
|
// textBoxPassword
|
|||
|
//
|
|||
|
textBoxPassword.Location = new Point(96, 38);
|
|||
|
textBoxPassword.Name = "textBoxPassword";
|
|||
|
textBoxPassword.Size = new Size(322, 23);
|
|||
|
textBoxPassword.TabIndex = 12;
|
|||
|
//
|
|||
|
// numericUpDownQualification
|
|||
|
//
|
|||
|
numericUpDownQualification.Location = new Point(96, 67);
|
|||
|
numericUpDownQualification.Name = "numericUpDownQualification";
|
|||
|
numericUpDownQualification.Size = new Size(322, 23);
|
|||
|
numericUpDownQualification.TabIndex = 13;
|
|||
|
//
|
|||
|
// numericUpDownWorkExpirience
|
|||
|
//
|
|||
|
numericUpDownWorkExpirience.Location = new Point(96, 96);
|
|||
|
numericUpDownWorkExpirience.Name = "numericUpDownWorkExpirience";
|
|||
|
numericUpDownWorkExpirience.Size = new Size(322, 23);
|
|||
|
numericUpDownWorkExpirience.TabIndex = 14;
|
|||
|
//
|
|||
|
// labelPassword
|
|||
|
//
|
|||
|
labelPassword.AutoSize = true;
|
|||
|
labelPassword.Location = new Point(12, 41);
|
|||
|
labelPassword.Name = "labelPassword";
|
|||
|
labelPassword.Size = new Size(60, 15);
|
|||
|
labelPassword.TabIndex = 15;
|
|||
|
labelPassword.Text = "Password:";
|
|||
|
//
|
|||
|
// labelQualification
|
|||
|
//
|
|||
|
labelQualification.AutoSize = true;
|
|||
|
labelQualification.Location = new Point(12, 69);
|
|||
|
labelQualification.Name = "labelQualification";
|
|||
|
labelQualification.Size = new Size(78, 15);
|
|||
|
labelQualification.TabIndex = 16;
|
|||
|
labelQualification.Text = "Qualification:";
|
|||
|
labelQualification.TextAlign = ContentAlignment.TopRight;
|
|||
|
//
|
|||
|
// labelExpirience
|
|||
|
//
|
|||
|
labelExpirience.AutoSize = true;
|
|||
|
labelExpirience.Location = new Point(12, 98);
|
|||
|
labelExpirience.Name = "labelExpirience";
|
|||
|
labelExpirience.Size = new Size(64, 15);
|
|||
|
labelExpirience.TabIndex = 17;
|
|||
|
labelExpirience.Text = "Expirience:";
|
|||
|
//
|
|||
|
// FormImplementer
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(425, 156);
|
|||
|
Controls.Add(labelExpirience);
|
|||
|
Controls.Add(labelQualification);
|
|||
|
Controls.Add(labelPassword);
|
|||
|
Controls.Add(numericUpDownWorkExpirience);
|
|||
|
Controls.Add(numericUpDownQualification);
|
|||
|
Controls.Add(textBoxPassword);
|
|||
|
Controls.Add(buttonCancel);
|
|||
|
Controls.Add(buttonSave);
|
|||
|
Controls.Add(textBoxFIO);
|
|||
|
Controls.Add(labelFIO);
|
|||
|
Name = "FormImplementer";
|
|||
|
Text = "Implementer";
|
|||
|
Load += FormImplementer_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownQualification).EndInit();
|
|||
|
((System.ComponentModel.ISupportInitialize)numericUpDownWorkExpirience).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
PerformLayout();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonCancel;
|
|||
|
private Button buttonSave;
|
|||
|
private TextBox textBoxCost;
|
|||
|
private TextBox textBoxFIO;
|
|||
|
private Label labelCost;
|
|||
|
private Label labelFIO;
|
|||
|
private TextBox textBoxPassword;
|
|||
|
private NumericUpDown numericUpDownQualification;
|
|||
|
private NumericUpDown numericUpDownWorkExpirience;
|
|||
|
private Label labelPassword;
|
|||
|
private Label labelQualification;
|
|||
|
private Label labelExpirience;
|
|||
|
}
|
|||
|
}
|