PIbd-22_Kamcharova_K.A_Reno.../RenovationWork/FormImplementer.Designer.cs

162 lines
5.9 KiB
C#
Raw Normal View History

2024-05-25 21:25:00 +04:00
namespace RenovationWorkView
{
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()
{
textBoxFIO = new TextBox();
textBoxPassword = new TextBox();
textBoxQualification = new TextBox();
textBoxWorkExperience = new TextBox();
buttonSave = new Button();
buttonCancel = new Button();
labelFio = new Label();
labelPassword = new Label();
labelQualification = new Label();
labelExperience = new Label();
SuspendLayout();
//
// textBoxFIO
//
textBoxFIO.Location = new Point(107, 6);
textBoxFIO.Name = "textBoxFIO";
textBoxFIO.Size = new Size(384, 23);
textBoxFIO.TabIndex = 0;
//
// textBoxPassword
//
textBoxPassword.Location = new Point(107, 35);
textBoxPassword.Name = "textBoxPassword";
textBoxPassword.Size = new Size(384, 23);
textBoxPassword.TabIndex = 1;
//
// textBoxQualification
//
textBoxQualification.Location = new Point(107, 64);
textBoxQualification.Name = "textBoxQualification";
textBoxQualification.Size = new Size(384, 23);
textBoxQualification.TabIndex = 2;
//
// textBoxWorkExperience
//
textBoxWorkExperience.Location = new Point(107, 93);
textBoxWorkExperience.Name = "textBoxWorkExperience";
textBoxWorkExperience.Size = new Size(384, 23);
textBoxWorkExperience.TabIndex = 3;
//
// buttonSave
//
buttonSave.Location = new Point(308, 124);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 4;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(389, 124);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 5;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// labelFio
//
labelFio.AutoSize = true;
labelFio.Location = new Point(12, 6);
labelFio.Name = "labelFio";
labelFio.Size = new Size(37, 15);
labelFio.TabIndex = 6;
labelFio.Text = "ФИО:";
//
// labelPassword
//
labelPassword.AutoSize = true;
labelPassword.Location = new Point(12, 35);
labelPassword.Name = "labelPassword";
labelPassword.Size = new Size(52, 15);
labelPassword.TabIndex = 7;
labelPassword.Text = "Пароль:";
//
// labelQualification
//
labelQualification.AutoSize = true;
labelQualification.Location = new Point(10, 64);
labelQualification.Name = "labelQualification";
labelQualification.Size = new Size(91, 15);
labelQualification.TabIndex = 8;
labelQualification.Text = "Квалификация:";
//
// labelExperience
//
labelExperience.AutoSize = true;
labelExperience.Location = new Point(12, 93);
labelExperience.Name = "labelExperience";
labelExperience.Size = new Size(82, 15);
labelExperience.TabIndex = 9;
labelExperience.Text = "Стаж работы:";
//
// FormImplementer
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(500, 155);
Controls.Add(labelExperience);
Controls.Add(labelQualification);
Controls.Add(labelPassword);
Controls.Add(labelFio);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxWorkExperience);
Controls.Add(textBoxQualification);
Controls.Add(textBoxPassword);
Controls.Add(textBoxFIO);
Name = "FormImplementer";
Text = "Исполнитель";
Load += FormImplementer_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox textBoxFIO;
private TextBox textBoxPassword;
private TextBox textBoxQualification;
private TextBox textBoxWorkExperience;
private Button buttonSave;
private Button buttonCancel;
private Label labelFio;
private Label labelPassword;
private Label labelQualification;
private Label labelExperience;
}
}