162 lines
4.1 KiB
C#
162 lines
4.1 KiB
C#
namespace SewingDressesView
|
|
{
|
|
partial class ImplementForm
|
|
{
|
|
/// <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();
|
|
textBoxPassword = new TextBox();
|
|
label3 = new Label();
|
|
textBoxQual = new TextBox();
|
|
label4 = new Label();
|
|
textBoxExp = new TextBox();
|
|
buttonSave = new Button();
|
|
buttonCancel = new Button();
|
|
SuspendLayout();
|
|
//
|
|
// textBoxFIO
|
|
//
|
|
textBoxFIO.Location = new Point(153, 34);
|
|
textBoxFIO.Name = "textBoxFIO";
|
|
textBoxFIO.Size = new Size(125, 27);
|
|
textBoxFIO.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
label1.AutoSize = true;
|
|
label1.Location = new Point(32, 37);
|
|
label1.Name = "label1";
|
|
label1.Size = new Size(39, 20);
|
|
label1.TabIndex = 1;
|
|
label1.Text = "Имя";
|
|
//
|
|
// label2
|
|
//
|
|
label2.AutoSize = true;
|
|
label2.Location = new Point(32, 89);
|
|
label2.Name = "label2";
|
|
label2.Size = new Size(62, 20);
|
|
label2.TabIndex = 3;
|
|
label2.Text = "Пароль";
|
|
//
|
|
// textBoxPassword
|
|
//
|
|
textBoxPassword.Location = new Point(153, 86);
|
|
textBoxPassword.Name = "textBoxPassword";
|
|
textBoxPassword.Size = new Size(125, 27);
|
|
textBoxPassword.TabIndex = 2;
|
|
//
|
|
// label3
|
|
//
|
|
label3.AutoSize = true;
|
|
label3.Location = new Point(32, 144);
|
|
label3.Name = "label3";
|
|
label3.Size = new Size(111, 20);
|
|
label3.TabIndex = 5;
|
|
label3.Text = "Квалификация";
|
|
//
|
|
// textBoxQual
|
|
//
|
|
textBoxQual.Location = new Point(153, 141);
|
|
textBoxQual.Name = "textBoxQual";
|
|
textBoxQual.Size = new Size(125, 27);
|
|
textBoxQual.TabIndex = 4;
|
|
//
|
|
// label4
|
|
//
|
|
label4.AutoSize = true;
|
|
label4.Location = new Point(32, 197);
|
|
label4.Name = "label4";
|
|
label4.Size = new Size(46, 20);
|
|
label4.TabIndex = 7;
|
|
label4.Text = "Опыт";
|
|
//
|
|
// textBoxExp
|
|
//
|
|
textBoxExp.Location = new Point(153, 194);
|
|
textBoxExp.Name = "textBoxExp";
|
|
textBoxExp.Size = new Size(125, 27);
|
|
textBoxExp.TabIndex = 6;
|
|
//
|
|
// buttonSave
|
|
//
|
|
buttonSave.Location = new Point(334, 32);
|
|
buttonSave.Name = "buttonSave";
|
|
buttonSave.Size = new Size(94, 29);
|
|
buttonSave.TabIndex = 8;
|
|
buttonSave.Text = "Сохранить";
|
|
buttonSave.UseVisualStyleBackColor = true;
|
|
buttonSave.Click += buttonSave_Click;
|
|
//
|
|
// buttonCancel
|
|
//
|
|
buttonCancel.Location = new Point(334, 84);
|
|
buttonCancel.Name = "buttonCancel";
|
|
buttonCancel.Size = new Size(94, 29);
|
|
buttonCancel.TabIndex = 9;
|
|
buttonCancel.Text = "Отменить";
|
|
buttonCancel.UseVisualStyleBackColor = true;
|
|
buttonCancel.Click += buttonCancel_Click;
|
|
//
|
|
// ImplementForm
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(451, 237);
|
|
Controls.Add(buttonCancel);
|
|
Controls.Add(buttonSave);
|
|
Controls.Add(label4);
|
|
Controls.Add(textBoxExp);
|
|
Controls.Add(label3);
|
|
Controls.Add(textBoxQual);
|
|
Controls.Add(label2);
|
|
Controls.Add(textBoxPassword);
|
|
Controls.Add(label1);
|
|
Controls.Add(textBoxFIO);
|
|
Name = "ImplementForm";
|
|
Text = "Исполнитель форма";
|
|
Load += ImplementForm_Load;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
}
|
|
|
|
#endregion
|
|
|
|
private TextBox textBoxFIO;
|
|
private Label label1;
|
|
private Label label2;
|
|
private TextBox textBoxPassword;
|
|
private Label label3;
|
|
private TextBox textBoxQual;
|
|
private Label label4;
|
|
private TextBox textBoxExp;
|
|
private Button buttonSave;
|
|
private Button buttonCancel;
|
|
}
|
|
} |