88 lines
3.6 KiB
C#
88 lines
3.6 KiB
C#
namespace AutomobilePlant
|
|
{
|
|
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()
|
|
{
|
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|
this.buttonDelete = new System.Windows.Forms.Button();
|
|
this.buttonUpdate = new System.Windows.Forms.Button();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dataGridView
|
|
//
|
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView.Location = new System.Drawing.Point(12, 55);
|
|
this.dataGridView.Name = "dataGridView";
|
|
this.dataGridView.RowHeadersWidth = 51;
|
|
this.dataGridView.RowTemplate.Height = 29;
|
|
this.dataGridView.Size = new System.Drawing.Size(610, 383);
|
|
this.dataGridView.TabIndex = 0;
|
|
//
|
|
// buttonDelete
|
|
//
|
|
this.buttonDelete.Location = new System.Drawing.Point(352, 12);
|
|
this.buttonDelete.Name = "buttonDelete";
|
|
this.buttonDelete.Size = new System.Drawing.Size(270, 29);
|
|
this.buttonDelete.TabIndex = 1;
|
|
this.buttonDelete.Text = "Удалить выбранного клиента";
|
|
this.buttonDelete.UseVisualStyleBackColor = true;
|
|
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
|
//
|
|
// buttonUpdate
|
|
//
|
|
this.buttonUpdate.Location = new System.Drawing.Point(228, 12);
|
|
this.buttonUpdate.Name = "buttonUpdate";
|
|
this.buttonUpdate.Size = new System.Drawing.Size(94, 29);
|
|
this.buttonUpdate.TabIndex = 2;
|
|
this.buttonUpdate.Text = "Обновить";
|
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
|
|
//
|
|
// FormClients
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(635, 450);
|
|
this.Controls.Add(this.buttonUpdate);
|
|
this.Controls.Add(this.buttonDelete);
|
|
this.Controls.Add(this.dataGridView);
|
|
this.Name = "FormClients";
|
|
this.Text = "Клиенты";
|
|
this.Load += new System.EventHandler(this.FormClients_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private DataGridView dataGridView;
|
|
private Button buttonDelete;
|
|
private Button buttonUpdate;
|
|
}
|
|
} |