通过单击文本来展开/折叠树视图中的组
如何才能通过单击文本(而不是单击左侧的箭头)来展开/折叠 TreeView 中的组。
How do I do so that it is possible to expand/collaps groups in the TreeView simply by clicking on the text, instead of clicking the arrow to the left.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用下一个设置器为您的 Tree Item 创建样式:
然后向您的组视图数据类添加名为 IsExpanded 的可观察属性:
然后拦截超链接单击事件并将 IsExpanded 设置为 true:
当然,最好的方法是使用命令而不是单击处理程序,但我不知道您的演示模型的组成,因此无法提供正确的解决方案。我必须说,在我们具有类似需求的项目中,我们成功地避免了任何隐藏的视图代码。上帝保佑WPF!
You should create style for your Tree Item with next setter:
Then add to you group view data class observable property named IsExpanded:
Then intercept hyper link click event and set IsExpanded as true:
Of course, the best way is to use commands instead of click handlers, but I don't know composition of your presentation model so can't provide proper solution. I just must say that in our projects with alike requirements we successfully avoid any view code behind. God bless WPF!