0

我的代码适用于更改行中的颜色,但我需要做出正确的 if 语句。在单元格 [0] 中,我有日期值“2013.03.20”。此日期是指产品的过期日期。

foreach (DataGridViewRow row in dataGridView1.Rows)
{
  if (row.Cells[0](dont know how write))
  {
   row.DefaultCellStyle.BackColor = Color.Red;
  }
}

例子:

  • 今天是 2013.03.10
  • 产品有效期为 2013.03.20。
  • 产品到期的最后 7 天将呈现黄色。(即13日至20日)
  • 当产品过期时,我想将其显示为红色。
4

4 回答 4

4

像这样的东西(在我没有 Visual Studio 的情况下,请原谅任何小的语法错误)。您可能需要更强大的 DateTime 转换来处理空值、无效日期等。您可以调整条件以匹配您的确切要求:

 foreach (DataGridViewRow row in dataGridView1.Rows)
                switch (Convert.ToDatetime(row.Cells[0].ToString()))
                {
                   case > DateTime.Today:
                      row.DefaultCellStyle.BackColor = SomeColor;  
                      break;
                   case == DateTime.Today:
                      row.DefaultCellStyle.BackColor = SomeColor;  
                      break;
                    case else:
                      row.DefaultCellStyle.BackColor = SomeColor;  
                      break;
                }
于 2013-03-22T14:19:21.977 回答
3

正如西蒙所说,您还应该为 DateTime 处理不正确的日期格式。

foreach (DataGridViewRow row in dataGridView1.Rows)
        {
            var now = DateTime.Now;
            var expirationDate =  DateTime.Parse(row.Cells[0].Value.ToString());
            var sevenDayBefore = expirationDate.AddDays(-7);

            if (now > sevenDayBefore && now < expirationDate)
            {
                row.DefaultCellStyle.BackColor = Color.Yellow;
            }
            else if (now > expirationDate)
            {
                row.DefaultCellStyle.BackColor = Color.Red;    
            }
        }
于 2013-03-22T14:38:10.623 回答
0

您可以使用RowDataBound事件处理程序而不是使用 foreach。我认为使用 RowDataBound 事件处理程序是为了这些事情。

public void dataGridView1_RowDataBound(Object sender, GridViewRowEventArgs e)  
{
    if(e.Row.RowType == DataControlRowType.DataRow)
    {
        Product currentProduct = e.Item.DataItem as Product;

        TimeSpan diffDate = DateTime.Now - currentProduct.ExpireDate;

        if (dateDiff < TimeSpan.FromDays(0))
        {
            row.DefaultCellStyle.BackColor = Color.Yellow;
        }
        else if (dateDiff < TimeSpan.FromDays(7))
        {
            row.DefaultCellStyle.BackColor = Color.Red;
        }
    }  

}
于 2013-03-22T14:31:35.650 回答
0

试试这个例子。

DateTime currentToday = (DateTime)this.dataGridView1.Rows[e.RowIndex].Cells["Date"].Value;

if (currentToday <= DateTime.Now.Date)
{
      e.CellStyle.ForeColor = Color.Red; //Font Color
      e.CellStyle.SelectionForeColor = Color.Red; //Selection Font color
}
于 2017-06-23T01:28:11.350 回答