Tree nodes being highlighted

  • Thread starter Thread starter Tony
  • Start date Start date
T

Tony

I am building drag and drop in to my treeview and wish for the tree nodes to
appear selected as the cursor is passed over them.
How can I achieve this?

Tony
 
Hi,

You could probably subscribe to the DragOver event, use GetNodeAt to obtain
a node under the mouse pointer and then set the tree's SelectedNode property
to the node located?
 
Back
Top