0

I am developing UWP application. In one scenario, I am having multiple ListView on a canvas and I want to perform Drag and Drop between ListViews. While performing Drag-Drop scroller doesn't moves.

I tried to implement Behaviour defined in this Link. But it is not working as PreviewDragOver event is not available in UWP.

Is there any way to implement it ?

Martin Zikmund
  • 38,440
  • 7
  • 70
  • 91
Mohit Bora
  • 113
  • 1
  • 10

1 Answers1

0

While PreviewDragOver is not available in UWP, the DragOver event definitely is. It seems it should be possible to use this event in the attached behavior instead.

Martin Zikmund
  • 38,440
  • 7
  • 70
  • 91