如何在 WPF 中创建带有标题和排序的多列 TreeView?
我已经在 WPF 中的 Visual Studio 2008 C# 中创建了 TreeView
演示,但我想要一个标题,并且当单击标题时,让它对数据进行排序。 我想创建一个这样的演示:
header1………….header2……….header3
-parent1…………..parent2………..parent3
…-child1……………-child1………….child1
……child1……………-child1…………child1
-parent2…………..parent2………..parent2
…-child2……………-child2………….child2
……child……………-child2…………child2
parent3…………….parent3………..parent3
请建议任何链接或示例代码。
I have created TreeView
demo in Visual Studio 2008 C# in WPF, but I want to have a header, and when header is clicked, have it sort data. I want to create a demo like this:
header1………….header2……….header3
-parent1…………..parent2………..parent3
…-child1……………-child1………….child1
……child1……………-child1…………child1
-parent2…………..parent2………..parent2
…-child2……………-child2………….child2
……child……………-child2…………child2
parent3…………….parent3………..parent3
Please suggest any link or samples code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSDN 上有一个 示例
以及另一个实现 在 CodeProject
There's a sample on MSDN
And another implementation on CodeProject