winform中改变DataGridView中符合条件的字体的颜色和列的颜色

只需要使用DataGridView的CellPainting事件。代码如下:

private void dgvUsers_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { if (e.RowIndex < 0) return; DataGridViewRow dgr = dgvUsers.Rows[e.RowIndex]; try { if (e.ColumnIndex == 3)//定位到第3列,如不定位到具体的哪列,则整行的颜色改变 { if (dgr.Cells["Column4"].Value.ToString() == "停用")//dgr.Cells["Column4"]为需要判断的列Name,而不是HeadText { e.CellStyle.ForeColor = Color.Red;//将前景色设置为红色,即字体颜色设置为红色 e.CellStyle.BackColor = Color.Green;//将背景色设置为绿色,即列的颜色设置为红色 } } } catch { } }  

 

效果图:

 winform中改变DataGridView中符合条件的字体的颜色和列的颜色_第1张图片

你可能感兴趣的:(C#)