假设我有一个如下所示的 WinForms Treeview:
Parent1
Child1
Sub-Child1
DeepestNode1
DeepestNode2
DeepestNode3
Sub-Child2
DeepestNode4
DeepestNode5
DeepestNode6
Child2
Sub-Child3
Sub-Child4
Sub-Child5
Sub-Child6
Child3
(no children)
我想按照以下方式创建一个函数:
Function GetDeepestChildren(MyNode as Treenode) as List(Of Treenode)
如果结果如下所示:
GetDeepestChildren(Parent1) = {DeepestNode1, DeepestNode2, DeepestNode3, DeepestNode4, DeepestNode5, DeepestNode6}
GetDeepestChildren(Sub-Child1) = {DeepestNode1, DeepestNode2, DeepestNode3}
GetDeepestChildren(Child2) = {Sub-Child3, Sub-Child4, Sub-Child5, Sub-Child6}
GetDeepestChildren(Child3) = Empty list
... 换句话说,始终从给定的节点转到最深的级别并返回子节点 - 即使它们在不同的父节点之间拆分(如 中的情况Parent1
)。
我创建了一个函数,它可以告诉我一个节点深入了多少层,如下所示:
Public Function GetDeepestChildNodeLevel(ByVal ParentNode As TreeNode) As Integer
Dim subLevel = ParentNode.Nodes.Cast(Of TreeNode).Select(Function(subNode) GetDeepestChildNodeLevel(subNode))
Return If(subLevel.Count = 0, 0, subLevel.Max() + 1)
End Function
所以我知道从什么级别得到孩子,我正在寻找的是一个可以做到这一点的功能 - Somethign 大致如下:
Function GetDeepestChildren(MyNode as Treenode) as List(Of Treenode)
Return All child nodes where level = GetDeepestChildNodeLevel(MyNode)
End function
我希望这是有道理的-谢谢!