I have a Windows Phone 8.1 ListView
. I want to reorder the items in the ListView
.I want to initiate the reorder mode on longpress, I can manage it by tapping in to the items Holding
event and change the ListView
s ReorderMode
to Enabled
. The ListView
looks like this
1. Is there a way to "select" and item as ready to be dragged? So the ListView
looks like this? I could not find any property or anything to make it "selected". It would be much better for the user to have the item he initiates the reorder on selected.
2. Is there a way to know the user dropped the item to another places (did the reorder)? I thought I could accomplish it by using the DragOver
or DragLeaving
events on the ListView, but they are fired when the reorder mode is disabled, not when the item is dropped to another position.
3. Is there a way to make the gaps between the items in reorder mode smaller? I found the ListViewItemReorderHintThemeOffset
resource but changing it (directly or editing a style for ListViewItem
) does not make any change.