Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drag Drop from .NET application to Explorer

I'm looking to provide users with ability to drag&drop files from grids and other controls in my application into Explorer. Any good samples/articles for that?

like image 396
SharpAffair Avatar asked Aug 03 '10 17:08

SharpAffair


2 Answers

Here is a sample application but it cannot handle large files: Transferring Virtual Files to Windows Explorer in C#

like image 32
Giorgi Avatar answered Nov 13 '22 12:11

Giorgi


It's pretty straight-forward, just call DoDragDrop in a MouseDown event. You'll need actual files on disk for this to work.

private void Form1_MouseDown(object sender, MouseEventArgs e) { 
   string[] files = new string[] { @"c:\temp\test.txt" };
   this.DoDragDrop(new DataObject(DataFormats.FileDrop, files), DragDropEffects.Copy); 
}
like image 161
Hans Passant Avatar answered Nov 13 '22 12:11

Hans Passant