セルの色を変更する必要があります-これは日付に依存します-セルの色を変更できますここでは問題ありません
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の画像を添付しました