我正在使用从 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;
}
}