LongListSelector: Item tap?
You could null your LongListSelector’s SelectedItem at the end of each SelectionChanged event. I.e. <phone:LongListSelector x:Name=”LLS” SelectionChanged=”LLS_SelectionChanged”> And the event handler: private void LLS_SelectionChanged(object sender, SelectionChangedEventArgs e) { // If selected item is null, do nothing if (LLS.SelectedItem == null) return; // Navigate to the next page NavigationService.Navigate(new Uri(“/nextpage.xaml”, UriKind.Relative)); // Reset selected item to … Read more