设置datagridview 单个单元格的背景色

方法一:

private void dataGridView1_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e)
{
DataGridViewRow dgr = dataGridView1.Rows[e.RowIndex]; 
try
{
if (dgr.Cells["onduty1"].Value.ToString() == "" || dgr.Cells["onduty1"].Value.ToString() == null)
{
dgr.Cells["onduty1"].Style.BackColor = Color.Red;
}
 
}
catch (Exception ex)
{

 MessageBox.Show(ex.Message); 
}
}

 

方法二:

dataGridView1.Rows[index].Cells["测试结果"].Style.BackColor = Color.White;

 

posted @ 2019-12-15 14:20  清语堂  阅读(3141)  评论(0编辑  收藏  举报