1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
private void InitGrid()
{
var _with = this.GrdImage;
_with.RowCount = 1;
_with.ColumnCount = 6;
_with.RowsDefaultCellStyle.BackColor = Color.White;
_with.AlternatingRowsDefaultCellStyle.BackColor = Color.AliceBlue;
_with.BackgroundColor = Color.White;
_with.MultiSelect = false;
_with.EditMode = DataGridViewEditMode.EditProgrammatically;
_with.ColumnHeadersDefaultCellStyle.BackColor = Color.Blue;
_with.ColumnHeadersDefaultCellStyle.ForeColor = Color.Blue;
_with.ColumnHeadersDefaultCellStyle.Font = new Font(_with.Font, FontStyle.Bold);
_with.Columns[0].Name = "CodeImage";
_with.Columns[1].Name = "NomImg";
_with.Columns[2].Name = "--";
_with.Columns[3].Name = "--";
_with.Columns[4].Name = "--";
_with.Columns[5].Name = "Image";
_with.RowHeadersVisible = true;
_with.Columns[0].Width = 80;
_with.Columns[1].Width = 100;
_with.Columns[2].Width = 100;
_with.Columns[3].Width = 150;
_with.Columns[4].Width = 200;
_with.Columns[5].Width = 200;
} |
Partager