SYBD_2024/viewmodel/FormTeam.Designer.cs

162 lines
5.5 KiB
C#

namespace viewmodel
{
partial class FormTeam
{
/// <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();
textBoxNameLeader = new TextBox();
textBoxExpirience = new TextBox();
textBoxNameTeam = new TextBox();
label3 = new Label();
label2 = new Label();
label1 = new Label();
textBoxType = new TextBox();
label4 = new Label();
SuspendLayout();
//
// buttonCancel
//
buttonCancel.Location = new Point(240, 138);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(77, 30);
buttonCancel.TabIndex = 15;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(157, 138);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(83, 30);
buttonSave.TabIndex = 14;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// textBoxNameLeader
//
textBoxNameLeader.Location = new Point(131, 46);
textBoxNameLeader.Name = "textBoxNameLeader";
textBoxNameLeader.Size = new Size(218, 23);
textBoxNameLeader.TabIndex = 13;
//
// textBoxExpirience
//
textBoxExpirience.Location = new Point(131, 74);
textBoxExpirience.Name = "textBoxExpirience";
textBoxExpirience.Size = new Size(218, 23);
textBoxExpirience.TabIndex = 12;
//
// textBoxNameTeam
//
textBoxNameTeam.Location = new Point(131, 16);
textBoxNameTeam.Name = "textBoxNameTeam";
textBoxNameTeam.Size = new Size(218, 23);
textBoxNameTeam.TabIndex = 11;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(16, 49);
label3.Name = "label3";
label3.Size = new Size(81, 15);
label3.TabIndex = 9;
label3.Text = "Имя прораба";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(16, 77);
label2.Name = "label2";
label2.Size = new Size(37, 15);
label2.TabIndex = 10;
label2.Text = "Опыт";
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(16, 19);
label1.Name = "label1";
label1.Size = new Size(109, 15);
label1.TabIndex = 8;
label1.Text = "Название бригады";
//
// textBoxType
//
textBoxType.Location = new Point(131, 103);
textBoxType.Name = "textBoxType";
textBoxType.Size = new Size(218, 23);
textBoxType.TabIndex = 17;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(16, 111);
label4.Name = "label4";
label4.Size = new Size(77, 15);
label4.TabIndex = 16;
label4.Text = "Тип бригады";
//
// FormTeam
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(380, 181);
Controls.Add(textBoxType);
Controls.Add(label4);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(textBoxNameLeader);
Controls.Add(textBoxExpirience);
Controls.Add(textBoxNameTeam);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormTeam";
Text = "FormTeam";
Load += FormMenu_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonCancel;
private Button buttonSave;
private TextBox textBoxNameLeader;
private TextBox textBoxExpirience;
private TextBox textBoxNameTeam;
private Label label3;
private Label label2;
private Label label1;
private TextBox textBoxType;
private Label label4;
}
}