How do I drag and drop files into C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T03:39:14Z http://stackoverflow.com/feeds/question/68598 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c 7 How do I drag and drop files into C#? Samuel Paul 2008-09-16T01:38:27Z 2008-11-18T21:21:16Z <p>I've seen this done in Borland's Turbo C++ environment, but I'm not sure how to go about it for a C# app I'm working on. Are there best practices or gotchas to look out for?</p> http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c/68722#68722 4 Answer by Judah Himango for How do I drag and drop files into C#? Judah Himango 2008-09-16T01:58:30Z 2008-09-16T01:58:30Z <p>In Windows Forms, set the control's AcceptDrop property, then listen for DragEnter event and DragDrop event.</p> <p>When the DragEnter event fires, set the argument's AllowedEffect to something other than none (e.g. e.Effect = DragDropEffects.Move).</p> <p>When the DragDrop event fires, you'll get a list of strings. Each string is the full path to the file being dropped.</p> http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c/68808#68808 4 Answer by Phil Wright for How do I drag and drop files into C#? Phil Wright 2008-09-16T02:11:28Z 2008-09-16T02:11:28Z <p>In addition to need to be aware of a gotcha. Any class that you pass around as the DataObject in the drag/drop operation has to be Serializable. So if you try and pass an object and it is not working ensure it can be serialized as that is almost certainly the problem. This has caught me out a couple of times!</p> http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c/68922#68922 2 Answer by Craig Eddy for How do I drag and drop files into C#? Craig Eddy 2008-09-16T02:32:48Z 2008-09-16T02:32:48Z <p>Another common gotcha is thinking you can ignore the Form DragOver (or DragEnter) events. I typically use the Form's DragOver event to set the AllowedEffect, and then a specific control's DragDrop event to handle the dropped data.</p> http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c/89470#89470 7 Answer by nobugz for How do I drag and drop files into C#? nobugz 2008-09-18T02:26:35Z 2008-09-18T02:26:35Z <p>Some sample code:</p> <pre><code> public partial class Form1 : Form { public Form1() { InitializeComponent(); this.AllowDrop = true; this.DragEnter += new DragEventHandler(Form1_DragEnter); this.DragDrop += new DragEventHandler(Form1_DragDrop); } void Form1_DragEnter(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.FileDrop)) e.Effect = DragDropEffects.Copy; } void Form1_DragDrop(object sender, DragEventArgs e) { string[] files = (string[])e.Data.GetData(DataFormats.FileDrop); foreach (string file in files) Console.WriteLine(file); } } </code></pre> http://stackoverflow.com/questions/68598/how-do-i-drag-and-drop-files-into-c/300182#300182 2 Answer by Guge for How do I drag and drop files into C#? Guge 2008-11-18T21:21:16Z 2008-11-18T21:21:16Z <p>Yet another gotcha:</p> <p>The framework code that calls the Drag-events swallow all exceptions. You might think your event code is running smoothly, while it is gushing exceptions all over the place. You can't see them because the framework steals them.</p> <p>That's why I always put a try/catch in these event handlers, just so I know if they throw any exceptions. I usually put a Debugger.Break(); in the catch part.</p> <p>Before release, after testing, if everything seems to behave, I remove or replace these with real exception handling.</p>