Drag Drop within TreeView Question...

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.
 
J

Jeff Gaines

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top