我需要为我的行设置颜色datagrid
,我使用loadingrow
事件:
DataRowView item = e.Row.Item as DataRowView;
if (item != null)
{
DataRow row = item.Row;
var colValue = row[3];
if (colValue > DATETIME_NOW-10_MINUTES)
{
e.Row.Background = (Brush)new BrushConverter().ConvertFrom("#FCD2CD");
}
}
colValue
是类型datetime
是 sql 表。如何设置最后十分钟的颜色行?