Datagridview行改变颜色

时间:2014-02-05 06:51:40

标签: c# visual-studio-2010

我制作一个库存系统,如果它低于10,它每隔3秒检查单元格5中的行。然后我的问题是如何将颜色更改为红色到10以下的那些。

private void belowstock()
    {
        int row;
        int qty, qtyOnHand;

        for (row = 0; row < dataGridView1.RowCount; row++)
        {
            qty = int.Parse(dataGridView1.Rows[row].Cells[5].Value.ToString());

            qtyOnHand = 10;
            if (qty <= qtyOnHand)
            {

                   //red  
             }     

            else
                  //white
       }
    }

2 个答案:

答案 0 :(得分:3)

在循环中尝试以下代码:

row.DefaultCellStyle.BackColor = Color.Red;

答案 1 :(得分:3)

LINQ

这样做的方法

private void belowstock()
{
    dataGridView1.Rows.Cast<DataGridViewRow>().Where(w => (int)w.Cells[5].Value < 10).ToList().ForEach(f => f.DefaultCellStyle.BackColor = Color.Red);
    dataGridView1.Rows.Cast<DataGridViewRow>().Where(w => (int)w.Cells[5].Value > 10).ToList().ForEach(f => f.DefaultCellStyle.BackColor = Color.White);
}

只需输入此代码