If I have a TreeView (myTreeview),how can I obtain a list of all the nodes that are parent nodes? i.e. nodes that have children
feedback
|
|
myTreeview.Nodes will give you a list of root nodes as defined by MS which basically means nodes on the root branch of the tree. This code will build a list of root nodes with children:
Update: and if you wanted all nodes in the TreeView that had a child regardless of how deep into the tree then use a bit of recursion, e.g.
Update 2: Recursion method with only 1 foreach loop:
| |||||
|
feedback
|
| |||
|
feedback
|
|
Traverse the tree and build a list of the leaf nodes. The nodes you asked for are everything except the leaf nodes. | |||
|
feedback
|