CollectionViewSource - 不均匀分组
我使用 WPF-Toolkit DataGrid 和 CollectionViewSource 作为源。使用 PropertyGroupDescriptions,我可以在网格中创建和显示组。我的问题是我无法创建“不均匀”的组,例如:
- A
- AA
- AB
- B
- 文学士
- BB
- 工商管理学士
- BBB
- C
- D
我想要一些比其他更深的组,还有一些只有元素(C 和 D)而没有组。我希望这是无法理解的...
有人有办法解决这个问题吗? 谢谢!
Im using the WPF-Toolkit DataGrid with an CollectionViewSource as Source. With PropertyGroupDescriptions I can create and display groups in the Grid. My problem is that i cannot create "uneven" groups, like:
- A
- A.A
- A.B
- B
- B.A
- B.B
- B.B.A
- B.B.B
- C
- D
I want some groups that are deeper than other, and some, that are only elements (C and D) and no groups. I hope it is undestandable...
Has someone an idea to solve this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您需要使用 TreeView 和 HierarchicalDataTemplate 吗?
Sounds like you need to use a TreeView and HierarchicalDataTemplate?