我在 datagrid 上的行加载事件中附加了以下代码:
private void myGrid_LoadingRow(object sender, DataGridRowEventArgs e)
{
MyObject o = e.Row.DataContext as MyObject;
string highlightColour = ...;
if (o.Source == "...")
e.Row.Background = ...;
else
e.Row.Background = null;
}
问题是我需要突出显示行中的某些单元格而不是其他单元格而不是整行,我该如何实现呢?