114 lines
4.0 KiB
C#
114 lines
4.0 KiB
C#
|
namespace CarRent
|
|||
|
{
|
|||
|
partial class FormCars
|
|||
|
{
|
|||
|
/// <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.buttonUpdate = new System.Windows.Forms.Button();
|
|||
|
this.buttonDelete = new System.Windows.Forms.Button();
|
|||
|
this.buttonChange = new System.Windows.Forms.Button();
|
|||
|
this.buttonAdd = new System.Windows.Forms.Button();
|
|||
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// buttonUpdate
|
|||
|
//
|
|||
|
this.buttonUpdate.Location = new System.Drawing.Point(592, 99);
|
|||
|
this.buttonUpdate.Name = "buttonUpdate";
|
|||
|
this.buttonUpdate.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonUpdate.TabIndex = 9;
|
|||
|
this.buttonUpdate.Text = "Обновить";
|
|||
|
this.buttonUpdate.UseVisualStyleBackColor = true;
|
|||
|
this.buttonUpdate.Click += new System.EventHandler(this.buttonUpdate_Click);
|
|||
|
//
|
|||
|
// buttonDelete
|
|||
|
//
|
|||
|
this.buttonDelete.Location = new System.Drawing.Point(592, 70);
|
|||
|
this.buttonDelete.Name = "buttonDelete";
|
|||
|
this.buttonDelete.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonDelete.TabIndex = 8;
|
|||
|
this.buttonDelete.Text = "Удалить";
|
|||
|
this.buttonDelete.UseVisualStyleBackColor = true;
|
|||
|
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
|
|||
|
//
|
|||
|
// buttonChange
|
|||
|
//
|
|||
|
this.buttonChange.Location = new System.Drawing.Point(592, 41);
|
|||
|
this.buttonChange.Name = "buttonChange";
|
|||
|
this.buttonChange.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonChange.TabIndex = 7;
|
|||
|
this.buttonChange.Text = "Изменить";
|
|||
|
this.buttonChange.UseVisualStyleBackColor = true;
|
|||
|
this.buttonChange.Click += new System.EventHandler(this.buttonChange_Click);
|
|||
|
//
|
|||
|
// buttonAdd
|
|||
|
//
|
|||
|
this.buttonAdd.Location = new System.Drawing.Point(592, 12);
|
|||
|
this.buttonAdd.Name = "buttonAdd";
|
|||
|
this.buttonAdd.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.buttonAdd.TabIndex = 6;
|
|||
|
this.buttonAdd.Text = "Создать";
|
|||
|
this.buttonAdd.UseVisualStyleBackColor = true;
|
|||
|
this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
|
|||
|
//
|
|||
|
// dataGridView
|
|||
|
//
|
|||
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|||
|
this.dataGridView.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.dataGridView.Name = "dataGridView";
|
|||
|
this.dataGridView.RowTemplate.Height = 25;
|
|||
|
this.dataGridView.Size = new System.Drawing.Size(574, 426);
|
|||
|
this.dataGridView.TabIndex = 5;
|
|||
|
//
|
|||
|
// FormCars
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(676, 450);
|
|||
|
this.Controls.Add(this.buttonUpdate);
|
|||
|
this.Controls.Add(this.buttonDelete);
|
|||
|
this.Controls.Add(this.buttonChange);
|
|||
|
this.Controls.Add(this.buttonAdd);
|
|||
|
this.Controls.Add(this.dataGridView);
|
|||
|
this.Name = "FormCars";
|
|||
|
this.Text = "Список автомобилей";
|
|||
|
this.Load += new System.EventHandler(this.FormCars_Load);
|
|||
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private Button buttonUpdate;
|
|||
|
private Button buttonDelete;
|
|||
|
private Button buttonChange;
|
|||
|
private Button buttonAdd;
|
|||
|
private DataGridView dataGridView;
|
|||
|
}
|
|||
|
}
|