tags:

views:

141

answers:

1

Hi,

I have a GUI that has a treeview on left side and a panel on the right side. The panel contains components like dropdown, radio buttons, textboxes,etc and I need to populate those according to the node selected on the tree.

Works fine till here. Howeer when I click on a button or any component on the panel, the node that was previously highlighted in the tree loses its focus. I mean that node does not remain highlighted any more. I want to keep that node highlighted when editing the components related to that node in the tree. How do I do that? Any help please?

Thanks.

+9  A: 

Have you tried setting the TreeView's HideSelection property to false?

JeffH
Ya Jeff. Thats exactly what I did and it works fine now. Thanks anyways.
VP