92 lines
3.5 KiB
C#
92 lines
3.5 KiB
C#
namespace AircraftPlantView
|
|
{
|
|
partial class FormClients
|
|
{
|
|
/// <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()
|
|
{
|
|
dataGridViewClients = new DataGridView();
|
|
buttonDelete = new Button();
|
|
buttonRefresh = new Button();
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// dataGridViewClients
|
|
//
|
|
dataGridViewClients.BackgroundColor = SystemColors.ControlLightLight;
|
|
dataGridViewClients.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
dataGridViewClients.Location = new Point(0, 0);
|
|
dataGridViewClients.Name = "dataGridViewClients";
|
|
dataGridViewClients.RowHeadersWidth = 51;
|
|
dataGridViewClients.RowTemplate.Height = 29;
|
|
dataGridViewClients.Size = new Size(485, 449);
|
|
dataGridViewClients.TabIndex = 0;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
buttonDelete.BackColor = SystemColors.ControlLightLight;
|
|
buttonDelete.Location = new Point(528, 25);
|
|
buttonDelete.Name = "buttonDelete";
|
|
buttonDelete.Size = new Size(94, 29);
|
|
buttonDelete.TabIndex = 1;
|
|
buttonDelete.Text = "Удалить";
|
|
buttonDelete.UseVisualStyleBackColor = false;
|
|
buttonDelete.Click += buttonDelete_Click;
|
|
//
|
|
// buttonRefresh
|
|
//
|
|
buttonRefresh.BackColor = SystemColors.ControlLightLight;
|
|
buttonRefresh.Location = new Point(528, 81);
|
|
buttonRefresh.Name = "buttonRefresh";
|
|
buttonRefresh.Size = new Size(94, 29);
|
|
buttonRefresh.TabIndex = 2;
|
|
buttonRefresh.Text = "Обновить";
|
|
buttonRefresh.UseVisualStyleBackColor = false;
|
|
buttonRefresh.Click += buttonRefresh_Click;
|
|
//
|
|
// FormClients
|
|
//
|
|
AutoScaleDimensions = new SizeF(8F, 20F);
|
|
AutoScaleMode = AutoScaleMode.Font;
|
|
BackColor = SystemColors.Control;
|
|
ClientSize = new Size(666, 450);
|
|
Controls.Add(buttonRefresh);
|
|
Controls.Add(buttonDelete);
|
|
Controls.Add(dataGridViewClients);
|
|
Name = "FormClients";
|
|
Text = "Клиенты";
|
|
Load += FormClients_Load;
|
|
((System.ComponentModel.ISupportInitialize)dataGridViewClients).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
private DataGridView dataGridViewClients;
|
|
private Button buttonDelete;
|
|
private Button buttonRefresh;
|
|
}
|
|
} |