0

我想根据 c# windows 应用程序中的值更改背景数据网格单元格。例如,如果单元格值为 3 单元格背景颜色设置为蓝色,如果单元格值等于 2 单元格背景颜色更改为红色。

4

2 回答 2

5

您可以使用 CellFormatting 事件:

private void dataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
    if (e.ColumnIndex == 1)
        {
            if ((int)e.Value == 3)
                e.CellStyle.BackColor = Color.Blue;
            if ((int)e.Value == 2)
                e.CellStyle.BackColor = Color.Red;
        }
}
于 2012-10-02T08:13:46.440 回答
1

你想要这样的东西

foreach (DataGridViewRow row in dataGridView1.Rows)
{
    if (row.Cells[someColumnIndex].Value == 3)
        row.Cells[someColumnIndex].Style.BackColor = System.Drawing.Color.Blue;
    else if (row.Cells[someColumnIndex].Value == 2)
        row.Cells[someColumnIndex].Style.BackColor = System.Drawing.Color.Red;
}

我希望这有帮助。

于 2012-10-02T08:14:44.697 回答