Drop Event does not properly bubble
alanebro82 opened this issue · 0 comments
alanebro82 commented
Drop events don't let you bubble the event to parent controls. DragOver events do.
DragDrop.cs:779
e.Handled = !dropInfo.NotHandled;
DragDrop.cs:798
e.Handled = true;
Why the difference? Seems like 798 should be the same as 779, unless I'm missing something.