Click here to Skip to main content
15,903,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am doing code on TreeView1_SelectedNodeChanged.
When first time click on node its show popup perfectly.
But when click on second time on same node popup does not show and also that event not fired.
Posted

Try this:
C#
TreeView1.SelectedNode.Selected = false;
 
Share this answer
 
v2
 
Share this answer
 
v3
Write this on SelectedNodeChanged event..
TreeView1.SelectedNode.Selected = false;
 
Share this answer
 
v2
Comments
Deepu S Nair 19-Mar-15 5:02am    
You are answering a question that is nearly 3 years old.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900