Merge branch 'LabWork04_Base' into LabWork05_Base
This commit is contained in:
commit
9348e3a207
11
AutomobilePlant/AutomobilePlant/FormCar.Designer.cs
generated
11
AutomobilePlant/AutomobilePlant/FormCar.Designer.cs
generated
@ -38,6 +38,7 @@
|
|||||||
this.buttonEdit = new System.Windows.Forms.Button();
|
this.buttonEdit = new System.Windows.Forms.Button();
|
||||||
this.buttonAdd = new System.Windows.Forms.Button();
|
this.buttonAdd = new System.Windows.Forms.Button();
|
||||||
this.dataGridView = new System.Windows.Forms.DataGridView();
|
this.dataGridView = new System.Windows.Forms.DataGridView();
|
||||||
|
this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||||
this.ColumnComponentName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ColumnComponentName = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||||
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||||
this.buttonSave = new System.Windows.Forms.Button();
|
this.buttonSave = new System.Windows.Forms.Button();
|
||||||
@ -136,6 +137,7 @@
|
|||||||
//
|
//
|
||||||
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||||
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||||
|
this.ID,
|
||||||
this.ColumnComponentName,
|
this.ColumnComponentName,
|
||||||
this.ColumnCount});
|
this.ColumnCount});
|
||||||
this.dataGridView.Location = new System.Drawing.Point(6, 26);
|
this.dataGridView.Location = new System.Drawing.Point(6, 26);
|
||||||
@ -145,6 +147,14 @@
|
|||||||
this.dataGridView.Size = new System.Drawing.Size(490, 243);
|
this.dataGridView.Size = new System.Drawing.Size(490, 243);
|
||||||
this.dataGridView.TabIndex = 0;
|
this.dataGridView.TabIndex = 0;
|
||||||
//
|
//
|
||||||
|
// ID
|
||||||
|
//
|
||||||
|
this.ID.HeaderText = "ID";
|
||||||
|
this.ID.MinimumWidth = 6;
|
||||||
|
this.ID.Name = "ID";
|
||||||
|
this.ID.Visible = false;
|
||||||
|
this.ID.Width = 125;
|
||||||
|
//
|
||||||
// ColumnComponentName
|
// ColumnComponentName
|
||||||
//
|
//
|
||||||
this.ColumnComponentName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
this.ColumnComponentName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
|
||||||
@ -209,6 +219,7 @@
|
|||||||
private TextBox textBoxPrice;
|
private TextBox textBoxPrice;
|
||||||
private GroupBox groupBoxComponents;
|
private GroupBox groupBoxComponents;
|
||||||
private DataGridView dataGridView;
|
private DataGridView dataGridView;
|
||||||
|
private DataGridViewTextBoxColumn ID;
|
||||||
private DataGridViewTextBoxColumn ColumnComponentName;
|
private DataGridViewTextBoxColumn ColumnComponentName;
|
||||||
private DataGridViewTextBoxColumn ColumnCount;
|
private DataGridViewTextBoxColumn ColumnCount;
|
||||||
private Button buttonUpdate;
|
private Button buttonUpdate;
|
||||||
|
Loading…
Reference in New Issue
Block a user