在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
关于DataGridView行和列的背景色-前景色设置 1.设定DataGridView全部单元格的Style
DataGridView1.DefaultCellStyle.BackColor = Color.Yellow; //包含Header所有的单元格的前景色为黄色 DataGridView1.DefaultCellStyle.ForeColor= Color.Yellow; //前景色设置,只需要将BackColor改为ForeColor即可
2.DataGridView.DefaultCellStyle属性可以对包含Header所有单元格的Style进行变更设定,对除 Header以外所 有单元格的Style进行变更,可以使用DataGridView.RowsDefaultCellStyle属性实现
DataGridView1.RowsDefaultCellStyle.BackColor = Color.Yellow;
3.变更某一个单元格的Style
DataGridView1[0, 0].Style.BackColor = Color.Pink
4.变更被指定的列、行的单元格的Style
DataGridView1.Columns[0].DefaultCellStyle.BackColor = Color.Aqua; //索引0行的单元格的背景色为淡灰色 DataGridView1.Rows[0].DefaultCellStyle.BackColor = Color.LightGray;
5.变更奇数行的单元格Style
DataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.GreenYellow;
6.变更列Header、行Header的单元格Style
DataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Ivory; //行Header的背景色为橙色 DataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Lime; 补充:每个Header单元格的单元格Style,可以使用这一些的方法取得,和一般的单元格一样,可以使用Style 属性变更,简而言之,就是个可以对每个单元格进行个性化设置。 关于优先顺序
设定单元格Style的属性有优先顺序的。顺序从高到低如下所示。 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论