How can I add specifically add a node(cild or sibling) in UltraTreeView?
It seems that ThisUltraTreeView.Nodes.Add(ThisValue) is only adding a node as another parent Node.
Im trying to add a sibling and child node?
How can I do this?
When you add a node to ThisUltraTreeView.Nodes, parent node is created. To add child for a parent node, add child node to the parent node, not to the tree control.
ThisUltraTreeView.Nodes[0].Nodes.Add(ThisValue) - will add child node to 0th node of the tree control.
Hope this help you.