SUBD_SportCompetitions/SportCompetitionsView/FormCompetition.Designer.cs

140 lines
3.6 KiB
C#
Raw Normal View History

2024-04-23 22:13:09 +04:00
namespace SportCompetitionsView
{
partial class FormCompetition
{
/// <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();
label2 = new Label();
label3 = new Label();
textBoxName = new TextBox();
textBoxCity = new TextBox();
dateTimePicker1 = new DateTimePicker();
buttonSave = new Button();
buttonCancel = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(22, 22);
label1.Name = "label1";
label1.Size = new Size(59, 15);
label1.TabIndex = 0;
label1.Text = "Название";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(22, 47);
label2.Name = "label2";
label2.Size = new Size(100, 15);
label2.TabIndex = 1;
label2.Text = "Дата проведения";
//
// label3
//
label3.AutoSize = true;
label3.Location = new Point(22, 75);
label3.Name = "label3";
label3.Size = new Size(40, 15);
label3.TabIndex = 2;
label3.Text = "Город";
//
// textBoxName
//
textBoxName.Location = new Point(140, 19);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(149, 23);
textBoxName.TabIndex = 3;
//
// textBoxCity
//
textBoxCity.Location = new Point(140, 75);
textBoxCity.Name = "textBoxCity";
textBoxCity.Size = new Size(149, 23);
textBoxCity.TabIndex = 4;
//
// dateTimePicker1
//
dateTimePicker1.Location = new Point(140, 46);
dateTimePicker1.Name = "dateTimePicker1";
dateTimePicker1.Size = new Size(149, 23);
dateTimePicker1.TabIndex = 5;
//
// buttonSave
//
buttonSave.Location = new Point(133, 123);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(75, 23);
buttonSave.TabIndex = 6;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// buttonCancel
//
buttonCancel.Location = new Point(214, 123);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(75, 23);
buttonCancel.TabIndex = 7;
buttonCancel.Text = "Отменить";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// FormCompetition
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(320, 158);
Controls.Add(buttonCancel);
Controls.Add(buttonSave);
Controls.Add(dateTimePicker1);
Controls.Add(textBoxCity);
Controls.Add(textBoxName);
Controls.Add(label3);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormCompetition";
Text = "Соревнование";
Load += FormCompetition_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private Label label3;
private TextBox textBoxName;
private TextBox textBoxCity;
private DateTimePicker dateTimePicker1;
private Button buttonSave;
private Button buttonCancel;
}
}