0

我正在使用从 excel 文件源填充的 datagridview。

我有一栏“时间”。我想更改“时间”列中单元格的颜色,以便过期时间(单元格)为灰色,下一个可用时间(单元格)为绿色等。

我觉得它比我想象的要复杂,因为在 Excel 中输入的时间也代表一个日期,尽管目前它只输入为 hh:mm AM/PM 格式。DateTime.Now 还会显示系统日期 + 时间。

例子:

现在是晚上 11 点(当前时间,在此之前的任何时间都已过期)。“时间”列中的单元格的值早于和晚于当前时间。晚上 10:52 及之前的时间现在都已过期,晚上 11:50 及之后的时间段都是可用的时间段。

   public Form1()
    {
        InitializeComponent();
        dataGridView1.CellPainting += dataGridView1_CellPainting;
    }

//////////////////////////////

   private void loadListBox4()
    {
        System.Data.OleDb.OleDbConnection MyConnection;
        System.Data.DataSet DtSet;
        System.Data.OleDb.OleDbDataAdapter MyCommand;
        MyConnection = new System.Data.OleDb.OleDbConnection(@"provider=Microsoft.Jet.OLEDB.4.0;Data Source= C:\Users\Dell\Documents\BusTimingExcel.xls;Extended Properties=Excel 8.0;");
        MyCommand = new System.Data.OleDb.OleDbDataAdapter("select * from [Sheet1$]", MyConnection);
        //MyCommand.TableMappings.Add("Route", "Location");
        DtSet = new System.Data.DataSet();
        MyCommand.Fill(DtSet);
        dataGridView1.DataSource = DtSet.Tables[0];
        MyConnection.Close();

        dataGridView1.Columns["Time"].DefaultCellStyle.Format = "t";
        dataGridView1.AllowUserToAddRows = false;
        dataGridView1.AllowUserToDeleteRows = false;
        dataGridView1.AllowUserToOrderColumns = true;
        dataGridView1.ReadOnly = true; ;

        DataView dv;
        dv = new DataView(DtSet.Tables[0], "Station = 'Poets Estate, The Dove'", "Time", DataViewRowState.CurrentRows);
        dataGridView1.DataSource = dv;

    }
}
4

3 回答 3

2

您可以尝试将代码添加到CellPainting事件处理程序并在Cell BackColor那里更新:

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e){
  if(e.Value == null||
     e.ColumnIndex < 0 || e.RowIndex < 0 ||
     dataGridView1.Columns[e.ColumnIndex].Name!="Time") return;
  e.CellStyle.BackColor = ((DateTime)e.Value).TimeOfDay < DateTime.Now.TimeOfDay ?
                          Color.Gray : Color.Green;
}
//To register the event handler for CellPainting, you can use this code
dataGridView1.CellPainting += dataGridView1_CellPainting;//Place this in your form constructor

更新

为防止闪烁,请尝试以下代码(放置在表单构造函数中):

typeof(Control).GetProperty("DoubleBuffered", System.Reflection.BindingFlags.NonPublic |
             System.Reflection.BindingFlags.Instance).SetValue(dataGridView1, true, null);
于 2013-10-15T02:41:21.873 回答
0

如果您需要进一步的帮助,请告诉我,此代码可以以任何方式工作!

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
        {

            if (((System.Windows.Forms.DataGridView)(sender)).Columns.Contains("Time"))
            {
                int Column_index = ((System.Windows.Forms.DataGridView)(sender)).Columns["Time"].Index;
                if ((e.ColumnIndex == Column_index) && (e.RowIndex != -1))
                {
                    DateTime Grid_Time = (DateTime)e.Value;
                    if (Grid_Time.TimeOfDay < DateTime.Now.TimeOfDay )
                    {
                        e.CellStyle.BackColor = Color.Gray;
                    }
                    else
                    {
                        e.CellStyle.BackColor = Color.Green;
                    }
                }
            }
        }
于 2013-10-15T05:18:45.503 回答
0

您在这里并没有给我们太多帮助,但是可以像这样实现在 gridview 中更改单元格的颜色:

dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Style.ForeColor = Color.Red;

现在弄清楚如何检查您的条件(“过期”,“可用”)并调用上面的代码。

希望有帮助,

克里斯

于 2013-10-15T02:11:43.650 回答