我正在尝试使用以下代码更改Background
包含 WPF 中单元格的一些错误数据:DataGrid
DataGridRow gridRow = dgInventory.ItemContainerGenerator.ContainerFromIndex(0) as DataGridRow;
DataGridCell cell = dgInventory.Columns[1].GetCellContent(gridRow).Parent as DataGridCell;
cell.Background = Brushes.Gray;
gridRow.IsSelected = true;
gridRow.Focus();
但是,在执行此操作时,当我向下滚动DataGrid
. 它仅用于修改Background
单行的。有人可以解决这个问题吗?提前致谢。