diff --git a/AutomobilePlant/AutomobilePlant/FormCar.Designer.cs b/AutomobilePlant/AutomobilePlant/FormCar.Designer.cs index c29d71f..07d275a 100644 --- a/AutomobilePlant/AutomobilePlant/FormCar.Designer.cs +++ b/AutomobilePlant/AutomobilePlant/FormCar.Designer.cs @@ -38,6 +38,7 @@ this.buttonEdit = new System.Windows.Forms.Button(); this.buttonAdd = new System.Windows.Forms.Button(); this.dataGridView = new System.Windows.Forms.DataGridView(); + this.ID = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnComponentName = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColumnCount = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.buttonSave = new System.Windows.Forms.Button(); @@ -136,6 +137,7 @@ // this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.ID, this.ColumnComponentName, this.ColumnCount}); this.dataGridView.Location = new System.Drawing.Point(6, 26); @@ -145,6 +147,14 @@ this.dataGridView.Size = new System.Drawing.Size(490, 243); 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 // this.ColumnComponentName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; @@ -209,6 +219,7 @@ private TextBox textBoxPrice; private GroupBox groupBoxComponents; private DataGridView dataGridView; + private DataGridViewTextBoxColumn ID; private DataGridViewTextBoxColumn ColumnComponentName; private DataGridViewTextBoxColumn ColumnCount; private Button buttonUpdate;