我需要更改单元格的颜色 - 这取决于日期 - 我可以更改单元格的颜色,这里没有问题
GridDataItem item = e.Item as GridDataItem;
**if ((item["run_Date"].Text > DateTime.Now))** //error is in this line of code
{
foreach (GridColumn col in radgrdResultDetail.MasterTableView.Columns)
{
item["run_Date"].BackColor = Color.FromArgb(255, 106, 106);
}
}
但是它试图访问“日期”-我遇到了我的错误,我附上了我的 e.item 的图像