获取 RadTreeView 中选定节点的父节点?
我有一个 RadTreeView 和这个树视图中的很多节点。我想要做的是,当单击一个节点时,我想要获取顶部父节点。我该怎么做?结构是这样的:
- Parent
- 孩子
3.孩子的孩子
4.选定节点
3.孩子的孩子
3.孩子的孩子
- 孩子
当我选择“4.selected node”时,我希望能够获取顶部父节点,而不是通过调用该方法三次。
I have a RadTreeView and a lot of nodes in this treeview. what i want to do is, when a node clicked i want to get the top parent node. How can i do this? the structure is like this :
- Parent
- Child
3.Child's child
4.selected node
3.Child's child
3.Child's child
- Child
when i select the "4.selected node" i want to be able to get the top parent node not by calling the method three times.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为整个事件的最后一行主要是您所需要的,有关此的更多信息可以找到 此处。然而,这是针对 radtreeview 的 WPF 版本。
Mainly the last line of this entire event would be what you need I reckon, more information regarding this can be found here. However this is for WPF version of the radtreeview.
我刚刚为你写了这个方法,因为我现在正在使用 Rad Controls 进行大型项目:
希望你喜欢它,兄弟,编码时永不放弃
I just wrote this method for you ,as Im now working on huge project with Rad Controls :
Hope u like it bro, never give up when coding
@King A.Majid:我认为你的逻辑不正确。那么参数“RadTreeNode n”呢?
我的方法很简单,如下:
您应该检查节点(即找到顶级父级)以确保它不是最高级别。
例如,我们想要找到 selectedNode 的顶级父级:
@King A.Majid: I don't think your logic is correct. What about the parameter "RadTreeNode n"?
My method is just simple as follow:
You should check the node (which is to find the top parent) to make sure it is not the highest level.
Eg, we want to find the top parent for selectedNode: