SUBD_SportCompetitions/SportCompetitionsView/FormMember.Designer.cs

163 lines
4.1 KiB
C#
Raw Normal View History

2024-04-23 22:13:09 +04:00
namespace SportCompetitionsView
{
partial class FormMember
{
/// <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()
{
label1 = new Label();
textBoxFCs = new TextBox();
dateTimePicker1 = new DateTimePicker();
label2 = new Label();
textBoxGender = new TextBox();
label3 = new Label();
comboBoxTeam = new ComboBox();
label4 = new Label();
button1 = new Button();
buttonCanc = new Button();
2024-04-23 22:13:09 +04:00
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(12, 25);
label1.Name = "label1";
label1.Size = new Size(37, 15);
label1.TabIndex = 0;
label1.Text = "ФИО:";
//
// textBoxFCs
//
textBoxFCs.Location = new Point(108, 22);
textBoxFCs.Name = "textBoxFCs";
textBoxFCs.Size = new Size(200, 23);
textBoxFCs.TabIndex = 1;
//
// dateTimePicker1
//
dateTimePicker1.Location = new Point(108, 57);
dateTimePicker1.Name = "dateTimePicker1";
dateTimePicker1.Size = new Size(200, 23);
dateTimePicker1.TabIndex = 2;
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(9, 63);
label2.Name = "label2";
label2.Size = new Size(93, 15);
label2.TabIndex = 3;
label2.Text = "Дата рождения:";
//
// textBoxGender
//
textBoxGender.Location = new Point(108, 95);
textBoxGender.Name = "textBoxGender";
textBoxGender.Size = new Size(200, 23);
textBoxGender.TabIndex = 4;
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(12, 98);
label3.Name = "label3";
label3.Size = new Size(45, 15);
label3.TabIndex = 5;
label3.Text = "Гендер";
//
// comboBoxTeam
//
comboBoxTeam.FormattingEnabled = true;
comboBoxTeam.Location = new Point(108, 135);
comboBoxTeam.Name = "comboBoxTeam";
comboBoxTeam.Size = new Size(200, 23);
comboBoxTeam.TabIndex = 6;
//
// label4
//
label4.AutoSize = true;
label4.Location = new Point(12, 138);
label4.Name = "label4";
label4.Size = new Size(55, 15);
label4.TabIndex = 7;
label4.Text = "Команда";
//
// button1
//
button1.Location = new Point(108, 167);
button1.Name = "button1";
button1.Size = new Size(100, 40);
button1.TabIndex = 8;
button1.Text = "Сохранить";
button1.UseVisualStyleBackColor = true;
button1.Click += buttonSave_Click;
//
// buttonCanc
//
buttonCanc.Location = new Point(214, 167);
buttonCanc.Name = "buttonCanc";
buttonCanc.Size = new Size(94, 40);
buttonCanc.TabIndex = 9;
buttonCanc.Text = "Отмена";
buttonCanc.UseVisualStyleBackColor = true;
buttonCanc.Click += buttonCancel_Click;
//
2024-04-23 22:13:09 +04:00
// FormMember
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(345, 219);
Controls.Add(buttonCanc);
Controls.Add(button1);
Controls.Add(label4);
Controls.Add(comboBoxTeam);
2024-04-23 22:13:09 +04:00
Controls.Add(label3);
Controls.Add(textBoxGender);
Controls.Add(label2);
Controls.Add(dateTimePicker1);
Controls.Add(textBoxFCs);
Controls.Add(label1);
Name = "FormMember";
Text = "Пользователь";
Load += FormMember_Load;
2024-04-23 22:13:09 +04:00
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private TextBox textBoxFCs;
private DateTimePicker dateTimePicker1;
private Label label2;
private TextBox textBoxGender;
private Label label3;
private ComboBox comboBoxTeam;
private Label label4;
private Button button1;
private Button buttonCanc;
2024-04-23 22:13:09 +04:00
}
}