vote up 0 vote down star

Is it possible to have a WPF window/element detect the drag'n'dropping of a file from windows explorer in C# .Net 3.5? I've found solutions for WinForms, but none for WPF.

flag

67% accept rate

4 Answers

vote up 1 vote down check

Unfortunately, TextBox, RichTextBox, and FlowDocument viewers always mark drag-and-drop events as handled, which prevents them from bubbling up to your handlers. You can restore drag-and-drop events being intercepted by these controls by force-handling the drag-and-drop events (use UIElement.AddHandler and set handledEventsToo to true) and setting e.Handled to false in your handler.

link|flag
Cheers! Your idea is also discussed here: social.msdn.microsoft.com/forums/en-US/… – NoizWaves Dec 3 '08 at 11:26
vote up 1 vote down

Hi,

I noticed that drag&drop in WPF is not as easy as it could be. So I wrote a short article about this topic: http://www.wpftutorial.net/DragAndDrop.html

link|flag
vote up 0 vote down

http://stackoverflow.com/questions/316900/dragndrop-one-or-more-mails-from-outlook-to-c-wpf-application

link|flag
Thanks for the link, but I already tried that one – NoizWaves Dec 2 '08 at 2:57
Didn't have more time to summarise but thought it might get you started. Glad to see you got it sorted. – Donnelle Dec 2 '08 at 17:52
vote up 0 vote down

Turns out I couldn't drop onto my TextBox for some reason, but dropping onto buttons works fine. Got it working by adding 'AllowDrop="True"' to my window and adding drop event handler to button consisting of:

private void btnFindType_Drop(object sender, DragEventArgs e)
{
  if (e.Data is System.Windows.DataObject &&
    ((System.Windows.DataObject)e.Data).ContainsFileDropList())
  {
    foreach (string filePath in ((System.Windows.DataObject)e.Data).GetFileDropList())
    {
      // Processing here
    }
  }            
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.