I have a tree view that contains 3 roots and each root contains 3 children. I am wanting to add a node to one of the children. How do i do this using the node "name" instead of the user selecting a node (without the SelectedNode method).
For example:
The user will basically select which child to insert the node at by specifying the name of the node in a text box. After the user specifies inserting "foobar" into the node "g", the tree view would look like the following:
Thanks!
I figured it out.
TreeView.Nodes["root3"].Nodes["g"].Nodes.Add(node);