Hi. I have implemented drag and drop between two ListBoxes using the framework and it works just fine with the mouse. However, it does not function with touch. Is there something special I need to do to allow dragging an item from one ListBox to another using touch screen?
Thanks,
Arthur
Hi and thank you for the update. It can be useful for other community members as well.
Thanks. I used StackPanel instead. It worked fine for my purposes.
Hello Arthur,
The default behavior of the ListBox on touch devices is to scroll which is why the drag and drop does not work as expected by default. I would suggest you to consider using the SurfaceListBox that is designed for touch devices or to disable the panning of the ListBox:<ListBox ScrollViewer.PanningMode="None"…>In case you need additional assistance, feel free to update the thread.