Drag & Drop : DragOver event not raised #17238
-
When dragging, the DragOver event is not raised on controls that have AllowDrop==true and no background. Took me a long while to figure that out and I tend to think it is a bug... Thanks ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
By default, hit testing of (most?) controls fail when the |
Beta Was this translation helpful? Give feedback.
By default, hit testing of (most?) controls fail when the
Background
isnull
. No hit test success = no pointer events. You can set toTransparent
instead. Rationale should be WPF compatibility and performance.