Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The following code does not run as rootNode is null when retrieved by name "RootNode"

 treeView1.Nodes.Add(new TreeNode("RootNode"));

 ...
 //get the rootNode by its name
 TreeView1 rootNode = treeView1.Nodes["RootNode"]

 //rootNode is null so following line throws an error
 rootNode.Nodes.Add(new TreeNode("ChildNode"));

What am I missing here? How can I get a particular node by it's name??

share|improve this question

1 Answer

up vote 6 down vote accepted

The TreeNode constructor does not accept a key / name parameter. The indexer is based on the tree node's name, not its text. Therefore you either need to set the tree node's name or use a different add method like this:

treeView1.Nodes.Add("RootNode", "Root Node");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.