I'm an iOS developer who uses an Android device who has recently started Windows Phone 8 development. I have a LongListSelector
in a Pivot
control, and I want to give users the ability to delete items from the LongListSelector
.
What type of gestures and other controls do Windows Phone 8 apps usually use to delete items?
On iOS it's typical to swipe to remove an item from a list (not applicable in this situation due to the Pivot
) and on Android it's typical to long-press to show a delete button in a context menu (in addition to the swipe-to-remove also used in iOS).
Are there equivalent gestures or conventions used in Windows Phone 8 apps?
Context menu:
http://msdn.microsoft.com/library/windows/apps/BR208693
Selection:
Alternative: Button in application bar for selection mode / show selection checkboxes
http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff431813(v=vs.105).aspx
What else?