Merge branch 'lab1_base' into lab1_hard
This commit is contained in:
commit
fa8f02736c
@ -63,6 +63,7 @@
|
|||||||
this.ButtonDel.TabIndex = 7;
|
this.ButtonDel.TabIndex = 7;
|
||||||
this.ButtonDel.Text = "Удалить";
|
this.ButtonDel.Text = "Удалить";
|
||||||
this.ButtonDel.UseVisualStyleBackColor = true;
|
this.ButtonDel.UseVisualStyleBackColor = true;
|
||||||
|
this.ButtonDel.Click += new System.EventHandler(this.ButtonDel_Click);
|
||||||
//
|
//
|
||||||
// ButtonUpd
|
// ButtonUpd
|
||||||
//
|
//
|
||||||
@ -72,6 +73,7 @@
|
|||||||
this.ButtonUpd.TabIndex = 8;
|
this.ButtonUpd.TabIndex = 8;
|
||||||
this.ButtonUpd.Text = "Изменить";
|
this.ButtonUpd.Text = "Изменить";
|
||||||
this.ButtonUpd.UseVisualStyleBackColor = true;
|
this.ButtonUpd.UseVisualStyleBackColor = true;
|
||||||
|
this.ButtonUpd.Click += new System.EventHandler(this.ButtonUpd_Click);
|
||||||
//
|
//
|
||||||
// ButtonRef
|
// ButtonRef
|
||||||
//
|
//
|
||||||
@ -81,6 +83,7 @@
|
|||||||
this.ButtonRef.TabIndex = 9;
|
this.ButtonRef.TabIndex = 9;
|
||||||
this.ButtonRef.Text = "Обновить";
|
this.ButtonRef.Text = "Обновить";
|
||||||
this.ButtonRef.UseVisualStyleBackColor = true;
|
this.ButtonRef.UseVisualStyleBackColor = true;
|
||||||
|
this.ButtonRef.Click += new System.EventHandler(this.ButtonRef_Click);
|
||||||
//
|
//
|
||||||
// FormFurnitures
|
// FormFurnitures
|
||||||
//
|
//
|
||||||
|
@ -39,7 +39,8 @@ namespace FurnitureAssembly
|
|||||||
dataGridView.DataSource = list;
|
dataGridView.DataSource = list;
|
||||||
dataGridView.Columns["Id"].Visible = false;
|
dataGridView.Columns["Id"].Visible = false;
|
||||||
dataGridView.Columns["FurnitureName"].AutoSizeMode =
|
dataGridView.Columns["FurnitureName"].AutoSizeMode =
|
||||||
DataGridViewAutoSizeColumnMode.Fill;
|
DataGridViewAutoSizeColumnMode.Fill;
|
||||||
|
dataGridView.Columns["FurnitureComponents"].Visible = false;
|
||||||
}
|
}
|
||||||
_logger.LogInformation("Загрузка изделий");
|
_logger.LogInformation("Загрузка изделий");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user