我的DataGrid
应用程序中有几列。在某些特定字段内容的情况下,我需要使用不同的行前景色。LoadingRow
我对事件使用以下回调:
void userGrid_LoadingRow(object sender, DataGridRowEventArgs e){
if (e.Row.Item != null){
// check some row's field value
...
// modify row forecolor
e.Row.Foreground = new SolidColorBrush(Colors.Red);
...
}
}
但是如何通过名称或索引获取某些行的字段的值?