gpt4 book ai didi

WPF HierarchicalDataTemplate 不会在属性更改时更新 ItemsSource

转载 作者:行者123 更新时间:2023-12-04 17:05:07 29 4
gpt4 key购买 nike

这是一些 XAML

<HierarchicalDataTemplate DataType="{x:Type data:FolderEntity}" 
ItemsSource="{Binding Path=FolderEntities,UpdateSourceTrigger=PropertyChanged}">
<Label Content="{Binding FolderName}"/>
</HierarchicalDataTemplate>
<TreeView/>

data:FolderEntity 是一个 LINQ to SQL 数据类,它实现了 INotifyPropertyChanging 和 INotifyPropertyChanged 接口(interface)。

我的问题是,当我更改 FolderEntities 属性时,绑定(bind)不会更新。如果我更改 FolderName 属性,则与该项目对应的树节点将更改,但 FolderEntities 的集合不会。

我在想 WPF 检查集合引用是否已更改,或者 ItemsSource 对象是否必须是 ObservableCollection`1 才能工作?

非常感谢您对此事的任何意见。

最佳答案

是的,基础集合 (FolderEntities) 需要是 ObservableCollection<T>通知 HierarchicalDataTemplate 更改。或者是实现 INotifyCollectionChanged 的集合.

关于WPF HierarchicalDataTemplate 不会在属性更改时更新 ItemsSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/399101/

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