C#:DataGridView边框线、标题、单元格的各种颜色

//包含Header所有的单元格的背景色
DataGridView1.DefaultCellStyle.BackColor
 
//包含Header所有的单元格的前景色
DataGridView1.DefaultCellStyle.ForeColor

//包含Header所有的单元格的背景色
DataGridView1.DefaultCellStyle.BackColor

// Header以外所有的单元格的背景色
DataGridView1.RowsDefaultCellStyle.BackColor

//奇数行的单元格的背景色
DataGridView1.AlternatingRowsDefaultCellStyle.BackColor

//列Header的背景色
DataGridView1.ColumnHeadersDefaultCellStyle.BackColor
 
//行Header的背景色
DataGridView1.RowHeadersDefaultCellStyle.BackColor

//边框线的颜色
DataGridView1.GridColor

//如果想让标题的边框线和颜色生效还需要如下设置
DataGridView1.EnableHeadersVisualStyles=false;

 

你可能感兴趣的:(C#,DataGridView,边框线,颜色,标题,单元格)