I have a ScatterView
which consist of 2 items: an Image
and a RichTextBox
. RichTextBox has AllowDrop
set to true.
When I drag the Image to the RichTextBox, the image disappears completely but RichTextBox's DragEnter
and Drop
event did not fire at all. Neither did PreviewDragEnter
nor PreviewDrop
.
I tried setting RichTextBox's AllowDrop
to false, and the Image landed on top of the RichTextBox as expected.
How do I get the DragEnter
and Drop
event of RichTextBox to fire? The only thing that fires is the ScatterView
's Drop event.