如何在WPF中获取当前展开的treeviewitem
我无法获取,只能获取已扩展的当前项目。当我尝试获取展开的项目时,我从树视图中获取所有展开的项目,但我不想要这样,我需要获取单击的展开的项目。
I am not able to get , only the current item which is expanded . When I am trying to get the expanded item , i am getting all the expanded items from the treeview, but I don't want that , I need to get the clicked expanded item.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要回复 AfterExpand 事件。
通过限制点击,您将键盘用户拒之门外。
编辑
抱歉,这是 WinForms。这是WPF的解决方案:
You'll need to respond to the AfterExpand event.
By restricting to the click you are shutting out keyboard users.
EDIT
Sorry, that's WinForms. Here is the WPF solution:
请
在您的
treeViewItem.Expanded
事件处理程序中使用。这样,它只会针对展开的实际项目触发,而不是到父树视图项目的冒泡路由。Please use
in your
treeViewItem.Expanded
event handler. That way it will only fire for the actual item expanded and not bubble route to the parent tree view items.