145 lines
5.4 KiB
C#

namespace SecuritySystemView.Implementer
{
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();
labelFIO = new Label();
labelWorkExp = new Label();
labelQualification = new Label();
textBoxFIO = new TextBox();
textBoxWorkExp = new TextBox();
textBoxQualification = new TextBox();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonCancel.Location = new Point(438, 141);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(122, 29);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += ButtonCancel_Click;
//
// buttonSave
//
buttonSave.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
buttonSave.Location = new Point(301, 141);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(115, 29);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += ButtonSave_Click;
//
// labelFIO
//
labelFIO.AutoSize = true;
labelFIO.Location = new Point(12, 15);
labelFIO.Name = "labelFIO";
labelFIO.Size = new Size(42, 20);
labelFIO.TabIndex = 6;
labelFIO.Text = "ФИО";
//
// labelWorkExp
//
labelWorkExp.AutoSize = true;
labelWorkExp.Location = new Point(12, 57);
labelWorkExp.Name = "labelWorkExp";
labelWorkExp.Size = new Size(105, 20);
labelWorkExp.TabIndex = 7;
labelWorkExp.Text = "Опыт работы:";
//
// labelQualification
//
labelQualification.AutoSize = true;
labelQualification.Location = new Point(12, 97);
labelQualification.Name = "labelQualification";
labelQualification.Size = new Size(114, 20);
labelQualification.TabIndex = 8;
labelQualification.Text = "Квалификация:";
//
// textBoxFIO
//
textBoxFIO.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBoxFIO.Location = new Point(60, 12);
textBoxFIO.Name = "textBoxFIO";
textBoxFIO.Size = new Size(500, 27);
textBoxFIO.TabIndex = 9;
//
// textBoxWorkExp
//
textBoxWorkExp.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBoxWorkExp.Location = new Point(157, 54);
textBoxWorkExp.Name = "textBoxWorkExp";
textBoxWorkExp.Size = new Size(180, 27);
textBoxWorkExp.TabIndex = 10;
//
// textBoxQualification
//
textBoxQualification.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
textBoxQualification.Location = new Point(157, 94);
textBoxQualification.Name = "textBoxQualification";
textBoxQualification.Size = new Size(180, 27);
textBoxQualification.TabIndex = 11;
//
// FormImplementer
//
AutoScaleDimensions = new SizeF(8F, 20F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(577, 182);
Controls.Add(textBoxQualification);
Controls.Add(textBoxWorkExp);
Controls.Add(textBoxFIO);
Controls.Add(labelQualification);
Controls.Add(labelWorkExp);
Controls.Add(labelFIO);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Name = "FormImplementer";
Text = "Исполнитель";
Load += Form_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private Label labelFIO;
private Label labelWorkExp;
private Label labelQualification;
private TextBox textBoxFIO;
private TextBox textBoxWorkExp;
private TextBox textBoxQualification;
}
}