Drag Drop within TreeView Question...

  • Thread starter Thread starter Doug Holland
  • Start date Start date
D

Doug Holland

I've found lots of examples of Drag and Drop between two TreeView controls
and I currently have Drag and Drop working between a TreeView and a
DataGridView control.

What I need to do now though is to do Drag and Drop between two TreeNodes
within the same TreeView control. Basically the same as Dragging a C# code
file from one project to another project within the same solution.

The DragDrag event fires but I don't enter the DragEnter event handler...

I'm sure there is an easy way to do this which I'm just missing here.
 
The DragDrag event fires but I don't enter the DragEnter event handler...

You are already in the control so I wouldn't expect to see drag enter,
work with DragOver and DragDrop.
 
Back
Top