问题描述
- wpf datagrid 设置行颜色
-
** 我是这样设置颜色,主要是验证一数据根据条件给行设置颜色。但是一滚动颜色设置就不对了,行颜色来回跑**
DataGridRow row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
if (rowContainer == null)
{
dataGrid.UpdateLayout();
dataGrid.ScrollIntoView(dataGrid.Items[rowIndex]);
row = (DataGridRow)dataGrid.ItemContainerGenerator.ContainerFromIndex(rowIndex);
}row.Background = new SolidColorBrush(Colors.Red);
解决方案
解决方案二:
dataGrid中动态设置行颜色
WPF DataGrid 实现行颜色改变
Flex修改DataGrid行颜色以及按行值设置行颜色
时间: 2025-01-26 19:20:53