2

I have a treeview that shows the current file system. I want to add functionality to enable dropping files into windows explorer. If I drag any of the node of my treeview and drop it on any of the window of Windows explorer then the file will be copied to that location. How can I accomplish this?

Bryan Anderson
  • 15,969
  • 8
  • 68
  • 83
Bhagyesh
  • 21
  • 2
  • 1
    possible duplicate of [C# / WPF / .NET - Drag and drop to Desktop / Explorer](http://stackoverflow.com/questions/3040415/c-wpf-net-drag-and-drop-to-desktop-explorer) – ChrisF Jul 02 '10 at 13:09

1 Answers1

1

First read this about how to implement drag and drop in WPF.

The read this for some information about what explorer expects when you drop in it.

Then ask new questions if you still have any.

Donnie
  • 45,732
  • 10
  • 64
  • 86