100 lines
2.8 KiB
C#
100 lines
2.8 KiB
C#
namespace SportCompetitionsView
|
|
{
|
|
partial class FormCompetitions
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridView1 = new DataGridView();
|
|
buttonAdd = new Button();
|
|
buttonEdit = new Button();
|
|
buttonDel = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridView1
|
|
//
|
|
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridView1.Location = new Point(12, 12);
|
|
dataGridView1.Name = "dataGridView1";
|
|
dataGridView1.RowTemplate.Height = 25;
|
|
dataGridView1.Size = new Size(510, 426);
|
|
dataGridView1.TabIndex = 0;
|
|
//
|
|
// buttonAdd
|
|
//
|
|
buttonAdd.Location = new Point(561, 12);
|
|
buttonAdd.Name = "buttonAdd";
|
|
buttonAdd.Size = new Size(128, 43);
|
|
buttonAdd.TabIndex = 1;
|
|
buttonAdd.Text = "Добавить";
|
|
buttonAdd.UseVisualStyleBackColor = true;
|
|
buttonAdd.Click += buttonAdd_Click;
|
|
//
|
|
// buttonEdit
|
|
//
|
|
buttonEdit.Location = new Point(561, 74);
|
|
buttonEdit.Name = "buttonEdit";
|
|
buttonEdit.Size = new Size(128, 44);
|
|
buttonEdit.TabIndex = 2;
|
|
buttonEdit.Text = "Изменить";
|
|
buttonEdit.UseVisualStyleBackColor = true;
|
|
buttonEdit.Click += buttonUpd_Click;
|
|
//
|
|
// buttonDel
|
|
//
|
|
buttonDel.Location = new Point(561, 137);
|
|
buttonDel.Name = "buttonDel";
|
|
buttonDel.Size = new Size(128, 42);
|
|
buttonDel.TabIndex = 3;
|
|
buttonDel.Text = "Удалить";
|
|
buttonDel.UseVisualStyleBackColor = true;
|
|
buttonDel.Click += buttonDel_Click;
|
|
//
|
|
// FormCompetitions
|
|
//
|
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
ClientSize = new Size(705, 450);
|
|
Controls.Add(buttonDel);
|
|
Controls.Add(buttonEdit);
|
|
Controls.Add(buttonAdd);
|
|
Controls.Add(dataGridView1);
|
|
Name = "FormCompetitions";
|
|
Text = "Соревнования";
|
|
Load += FormCompetitions_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridView1;
|
|
private Button buttonAdd;
|
|
private Button buttonEdit;
|
|
private Button buttonDel;
|
|
}
|
|
} |