SUBD_SportCompetitions/SportCompetitionsView/FormTeam.Designer.cs

118 lines
3.0 KiB
C#

namespace SportCompetitionsView
{
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()
{
label1 = new Label();
label2 = new Label();
textBoxName = new TextBox();
textBoxCountry = new TextBox();
buttonCancel = new Button();
buttonSave = new Button();
SuspendLayout();
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(25, 21);
label1.Name = "label1";
label1.Size = new Size(59, 15);
label1.TabIndex = 0;
label1.Text = "Название";
//
// label2
//
label2.AutoSize = true;
label2.Location = new Point(25, 49);
label2.Name = "label2";
label2.Size = new Size(46, 15);
label2.TabIndex = 1;
label2.Text = "Страна";
//
// textBoxName
//
textBoxName.Location = new Point(112, 18);
textBoxName.Name = "textBoxName";
textBoxName.Size = new Size(165, 23);
textBoxName.TabIndex = 2;
//
// textBoxCountry
//
textBoxCountry.Location = new Point(112, 49);
textBoxCountry.Name = "textBoxCountry";
textBoxCountry.Size = new Size(165, 23);
textBoxCountry.TabIndex = 3;
//
// buttonCancel
//
buttonCancel.Location = new Point(193, 90);
buttonCancel.Name = "buttonCancel";
buttonCancel.Size = new Size(84, 35);
buttonCancel.TabIndex = 4;
buttonCancel.Text = "Отмена";
buttonCancel.UseVisualStyleBackColor = true;
buttonCancel.Click += buttonCancel_Click;
//
// buttonSave
//
buttonSave.Location = new Point(97, 90);
buttonSave.Name = "buttonSave";
buttonSave.Size = new Size(90, 35);
buttonSave.TabIndex = 5;
buttonSave.Text = "Сохранить";
buttonSave.UseVisualStyleBackColor = true;
buttonSave.Click += buttonSave_Click;
//
// FormTeam
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(303, 137);
Controls.Add(buttonSave);
Controls.Add(buttonCancel);
Controls.Add(textBoxCountry);
Controls.Add(textBoxName);
Controls.Add(label2);
Controls.Add(label1);
Name = "FormTeam";
Text = "Команда";
Load += FormTeam_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label label1;
private Label label2;
private TextBox textBoxName;
private TextBox textBoxCountry;
private Button buttonCancel;
private Button buttonSave;
}
}