我使用DataGrid
并需要更改一行的背景颜色。
DataGrid
使用滚动,当我尝试此代码时,背景也会滚动。
DataGridRow row = (DataGridRow)gg.ItemContainerGenerator.ContainerFromIndex(i);
row.Background = Brushes.Red;
答案 0 :(得分:0)
有一个名为“LoadingRow”的事件,当Row加载到gridView时调用,你可以在那里放置你的条件,例如:
private void table_LoadingRow(object sender, DataGridRowEventArgs e)
{
if (((MyData)e.Row.DataContext).Module.Trim().Equals("SomeText"))
{
e.Row.Foreground = new SolidColorBrush(Colors.Red);
}
}