Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9118911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:16:05+00:00 2026-06-17T05:16:05+00:00

I am using LongListSelector control on Windows Phone 8 and can’t figure out the

  • 0

I am using LongListSelector control on Windows Phone 8 and can’t figure out the best way to handle a tap on an item.
The few examples I’ve found rely on the SelectionChanged event. However, this solution is buggy because if I tap an item that opens a new page, hit back, and then tap the same item again, it won’t work because this item is already selected, so SelectionChanged is not triggered.

I tried to register to the tap event and use the current selected item as the tapped one, but some times the current selected item is not the one I expect.

I could wrap my ItemTemplate in a button and handle the tap for each item but I need to reskin the button to make it look like a simple list item.

Finally, I don’t understand why it is so complicated to achieve such a basic thing. Is there a simple and standard way I missed?

My second wish is to get an effect on the item when it is tapped. Is there any standard way to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T05:16:07+00:00Added an answer on June 17, 2026 at 5:16 am

    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 null
      LLS.SelectedItem = null;
    }
    

    You’ll fire the SelectionChanged event twice, but nothing’s going to happen the second time round and you should get the behaviour that you’re looking for – (i.e Setting SelectedItem to null will trigger a new SelectionChanged event, but this second event gets caught in the if-statement)

    As for the second part of your question, you might be better posting a new question.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using the new Windows Phone 8 LongListSelector control, which has its ItemsControl assigned
I'm developing a Windows Phone 7 (WP7) app and I'm using a LongListSelector control
Windows Phone 7.1: How to add/delete items from LongListSelector control? I am using a
I am using the LongListSelector from the Silverlight for Windows Phone Toolkit. For each
I am using LongListSelector control with ItemRealized Event and its working fine but when
Using Tsql, how can I find out when MS SQL server was installed?
How i can get the first and last visible element of windows phone listbox.My
Using R, what is the best way to read a symmetric matrix from a
using this http://bl.ocks.org/950642 we can see how to add images to nodes, the question
Using SQL Server 2008 R2 we are looking for a way to select the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.