F
fishware
I've got a treeview created by
TreeNode node = treeView1.Nodes.Add("one");
node.Nodes.Add("three");
looks like:
one
-> three
How do I insert "two" between one and three (one becomes the parent of
two, which becomes the parent of three, and the parent-child
relationship between one and three is broken).
one
-> two
-> three
thanks.
TreeNode node = treeView1.Nodes.Add("one");
node.Nodes.Add("three");
looks like:
one
-> three
How do I insert "two" between one and three (one becomes the parent of
two, which becomes the parent of three, and the parent-child
relationship between one and three is broken).
one
-> two
-> three
thanks.