解决 CompositeCollection 中缺乏分组的问题
当我尝试将 GroupDescriptor 添加到 CompositeCollection 时,出现异常,通知我 CompositeCollection 不支持分组。
我想知道是否有人找到了解决此限制的好方法。我有两个集合,我将它们“压缩”在一起并尝试分组。如果有任何帮助的话,我对在集合之间进行分组不感兴趣,只是对集合本身感兴趣。
When I try to add a GroupDescriptor to my CompositeCollection I get an exception informing me that the CompositeCollection does not supporting grouping.
I would like to know if anyone has found a good work around for this limitation. I have two collections which I am "zipping" together and trying to group. If it is any help, I am not interested in grouping between the collections, just with in the collections them selves.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
CompositeCollection
上使用CollectionViewSource
,请查看 如何使用 CollectionView 功能处理 CompositeCollection?。Use
CollectionViewSource
on yourCompositeCollection
, please take a look at How to handle a CompositeCollection with CollectionView features?.