我有一个充满ObserverableCollection的WPF数据网格。

现在,我想根据程序启动时的行内容以及运行时是否发生更改来对行进行着色。

System.Windows.Controls.DataGrid areaDataGrid = ...;
ObservableCollection<Area> areas;
//adding items to areas collection
areaDataGrid.ItemsSource = areas;

areaDataGrid.Rows  <-- Property not available. how to access rows here?

CollectionView myCollectionView = (CollectionView)CollectionViewSource.GetDefaultView(areaDataGrid.Items);
((INotifyCollectionChanged)myCollectionView).CollectionChanged += new NotifyCollectionChangedEventHandler(areaDataGrid_Changed);
...

void areaDataGrid_Changed(object sender, NotifyCollectionChangedEventArgs e)
{
    //how to access changed row here?
}

如何在启动和运行时访问行?

最佳答案

使用 RowStyle 。您可以使用 Triggers 有条件地更改颜色,也可以将其绑定(bind)到商品的Brush属性并分别更改该属性。

09-28 01:07