我有一个绑定到BindingSource的DataGridView。每行有三个字段: Name、StartDate、EndDate。在我的表单的其他地方,我有一个DateTimePicker控件。
当DateTimePicker的日期介于一行的开始日期和结束日期之间时,我希望突出显示该行。但我想不出该怎么做。有人能给我一个起点吗?
发布于 2009-12-21 19:16:59
是否要突出显示符合条件的所有行?
每次更改DTP值时,您都可以逐行查看哪些行满足条件。
然后,对于这些行中的每个单元格,按照您希望突出显示这些行的方式更改DataGridViewCell.Style。对于不满足约束的行中的每个单元格,将DataGridViewCell.Style设置为默认值。
发布于 2013-09-09 23:03:25
如果需要突出显示整个行,则可能需要在ForEach循环中对每个行使用DefaultCellStyle
属性,也可以使用CellFormatting
事件,如下所示:
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (this.dataGridView1.Columns[e.ColumnIndex].Name == "Error")
{
if (e.Value != null && e.Value.ToString() == "1")
{
dataGridView1.Rows[e.RowIndex].DefaultCellStyle.ForeColor = Color.Red;
}
}
}
https://stackoverflow.com/questions/1941713
复制相似问题