1

My question is why mouse events aren't raised on window when I drag some text using drag and drop from another window?

I have a window where I listen to MouseEnter event which is not raised when I try to drag and drop something into it.

How to figure this one out?

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
serine
  • 1,338
  • 14
  • 24
  • to clarify: events dont get raised when i use my drag and drop implementation also. but I dont mean dnd specific events, that works fine, I mean other mouse events such as MouseEnter, when dragging some stuff onto the window. I cannot find any detailed information why this doesn't work. – serine Dec 14 '10 at 21:37

1 Answers1

1

This is a known issue:

Drag and Drop in WPF not working for DataFormats.FileDrop

C# Drag drop does not work on windows 7

Community
  • 1
  • 1
decyclone
  • 30,394
  • 6
  • 63
  • 80
  • well I have drag and drop working between windows of my own application, but I still need to have mouse events when moving inside the target window. the problem is not so simple. – serine Dec 14 '10 at 17:39