DataGridView中的行如何根据不同的值显示不同的行背景色

时间:2022-07-24 18:03:01

在DataGridView的RowDataBound事件里判断并修改:

if(e.Row.Cells[n].Text=="0")

{

e.Row.Attributes.Add("bgColor", "red");

}

else if(e.Row.Cells[n].Text>"500")

{

e.Row.Attributes.Add("bgColor", "green");

}  

如果你是做财务软件,则是对单个单元格,e.Row.Cells[i].Attributes.Add("bgColor","green");

我查了一下,在winform里,DataGridView没有RowDataBound事件,如果在winform里,如下修改:

private void dataGridView1_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e)

{

if (e.RowIndex >= dataGridView1.Rows.Count - 1)

return;

DataGridViewRow dgr = dataGridView1.Rows[e.RowIndex];

try

{

if (dgr.Cells["列名"].Value.ToString() == "比较值")

{

dgr.DefaultCellStyle.ForeColor = 设置的颜色;

}

}

catch (Exception ex)

{

MessageBox.Show(ex.Message);

}

}  

ItemDataBound事件里

if (e.Item.Cells[性别列的索引值].Text == "男 ")

e.Item.BackColor = System.Drawing.Color.Red;

if (e.Item.Cells[性别列的索引值].Text == "女 ")

e.Item.BackColor = System.Drawing.Color.Blue;

你可以CellPainting处理这个事件,示例如下:

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)

{

if (e.Value== "男 ")

{

e.PaintBackground(e.CellBounds, true);

}

}

 

注意:

在winform里,DataGridView没有RowDataBound事件,如果在winform里,如下修改:
       调用DataGridView中的RowPrePaint事件

private void dataGridView1_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e) 

if (e.RowIndex >= dataGridView1.Rows.Count - 1) 
return; 
DataGridViewRow dgr = dataGridView1.Rows[e.RowIndex]; 
try 

if (dgr.Cells["列名"].Value.ToString() == "比较值") 

dgr.DefaultCellStyle.ForeColor = 设置的颜色; (如:Color.red)


catch (Exception ex) 

MessageBox.Show(ex.Message);