如何在WPF中获取当前展开的treeviewitem

发布于 2024-12-13 04:49:56 字数 77 浏览 0 评论 0原文

我无法获取,只能获取已扩展的当前项目。当我尝试获取展开的项目时,我从树视图中获取所有展开的项目,但我不想要这样,我需要获取单击的展开的项目。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野稚 2024-12-20 04:49:56

您需要回复 AfterExpand 事件。

通过限制点击,您将键盘用户拒之门外。

编辑

抱歉,这是 WinForms。这是WPF的解决方案:

<TreeView TreeViewItem.Expanded="TreeViewItem_Expanded" />

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:

<TreeView TreeViewItem.Expanded="TreeViewItem_Expanded" />
Bonjour°[大白 2024-12-20 04:49:56

 e.Handled=true; 

在您的 treeViewItem.Expanded 事件处理程序中使用。这样,它只会针对展开的实际项目触发,而不是到父树视图项目的冒泡路由。

Please use

 e.Handled=true; 

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文