gpt4 book ai didi

c# - 更改 WPF 数据网格行颜色

转载 作者:太空狗 更新时间:2023-10-29 20:53:12 28 4
gpt4 key购买 nike

我有一个 WPF 数据网格,其中填充了一个 ObserverableCollection。

现在我想根据程序启动时的行内容以及运行时是否发生变化来为行着色。

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 属性并分别更改该属性。

关于c# - 更改 WPF 数据网格行颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10056657/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com