114 lines
3.3 KiB
C#
114 lines
3.3 KiB
C#
|
namespace View
|
|||
|
{
|
|||
|
partial class FormLocations
|
|||
|
{
|
|||
|
/// <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();
|
|||
|
buttonCreate = new Button();
|
|||
|
buttonUpdate = new Button();
|
|||
|
buttonDelete = new Button();
|
|||
|
buttonReload = new Button();
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
|
|||
|
SuspendLayout();
|
|||
|
//
|
|||
|
// dataGridView1
|
|||
|
//
|
|||
|
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
dataGridView1.Location = new Point(12, 12);
|
|||
|
dataGridView1.Name = "dataGridView1";
|
|||
|
dataGridView1.RowHeadersWidth = 51;
|
|||
|
dataGridView1.RowTemplate.Height = 29;
|
|||
|
dataGridView1.Size = new Size(637, 426);
|
|||
|
dataGridView1.TabIndex = 0;
|
|||
|
//
|
|||
|
// buttonCreate
|
|||
|
//
|
|||
|
buttonCreate.Location = new Point(683, 38);
|
|||
|
buttonCreate.Name = "buttonCreate";
|
|||
|
buttonCreate.Size = new Size(94, 29);
|
|||
|
buttonCreate.TabIndex = 1;
|
|||
|
buttonCreate.Text = "Создать";
|
|||
|
buttonCreate.UseVisualStyleBackColor = true;
|
|||
|
buttonCreate.Click += buttonCreate_Click;
|
|||
|
//
|
|||
|
// buttonUpdate
|
|||
|
//
|
|||
|
buttonUpdate.Location = new Point(683, 103);
|
|||
|
buttonUpdate.Name = "buttonUpdate";
|
|||
|
buttonUpdate.Size = new Size(94, 29);
|
|||
|
buttonUpdate.TabIndex = 2;
|
|||
|
buttonUpdate.Text = "Изменить";
|
|||
|
buttonUpdate.UseVisualStyleBackColor = true;
|
|||
|
buttonUpdate.Click += buttonUpdate_Click;
|
|||
|
//
|
|||
|
// buttonDelete
|
|||
|
//
|
|||
|
buttonDelete.Location = new Point(683, 171);
|
|||
|
buttonDelete.Name = "buttonDelete";
|
|||
|
buttonDelete.Size = new Size(94, 29);
|
|||
|
buttonDelete.TabIndex = 3;
|
|||
|
buttonDelete.Text = "Удалить";
|
|||
|
buttonDelete.UseVisualStyleBackColor = true;
|
|||
|
buttonDelete.Click += buttonDelete_Click;
|
|||
|
//
|
|||
|
// buttonReload
|
|||
|
//
|
|||
|
buttonReload.Location = new Point(683, 237);
|
|||
|
buttonReload.Name = "buttonReload";
|
|||
|
buttonReload.Size = new Size(94, 29);
|
|||
|
buttonReload.TabIndex = 4;
|
|||
|
buttonReload.Text = "Обновить";
|
|||
|
buttonReload.UseVisualStyleBackColor = true;
|
|||
|
buttonReload.Click += buttonReload_Click;
|
|||
|
//
|
|||
|
// FormLocations
|
|||
|
//
|
|||
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|||
|
AutoScaleMode = AutoScaleMode.Font;
|
|||
|
ClientSize = new Size(800, 450);
|
|||
|
Controls.Add(buttonReload);
|
|||
|
Controls.Add(buttonDelete);
|
|||
|
Controls.Add(buttonUpdate);
|
|||
|
Controls.Add(buttonCreate);
|
|||
|
Controls.Add(dataGridView1);
|
|||
|
Name = "FormLocations";
|
|||
|
Text = "FormLocations";
|
|||
|
Load += FormLocations_Load;
|
|||
|
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
|
|||
|
ResumeLayout(false);
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private DataGridView dataGridView1;
|
|||
|
private Button buttonCreate;
|
|||
|
private Button buttonUpdate;
|
|||
|
private Button buttonDelete;
|
|||
|
private Button buttonReload;
|
|||
|
}
|
|||
|
}
|