user274139
user274139

Reputation: 91

find parent node in treeview

Im using treeview in asp.net

how can i check if parent contains childnodes in treeview selected node changed event.

Upvotes: 1

Views: 4656

Answers (2)

Nikos Steiakakis
Nikos Steiakakis

Reputation: 5745

In case you want to look if the parent of the selected node contains other children nodes, it is safe to say

bool ContainsOtherChildren = treeView1.SelectedNode.Parnet.ChildNodes.Count > 1;

since you know that it already has at least one child node (the selected one)

I would however make another check if there is indeed a parent such as

if(treeView1.SelectedNode.Parent != null)
{
   ContainsOtherChildren = treeView1.SelectedNode.Parnet.ChildNodes.Count > 1;
}

Upvotes: 1

Pavunkumar
Pavunkumar

Reputation: 5345

Check All the child pointer values, whether is it NULL or not.

If all child pointer value is NULL , you can ensure that the parent does not have any child.

Upvotes: 0

Related Questions