Im having a bit of trouble trying to get the position of an item in a ListView when its tapped.
Heres my code:
public MainPage() { InitializeComp
In SelectedItem event try this:
var index = (myListView.ItemsSource as List).IndexOf (e.SelectedItem as MyObject);