Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using LongListSelector control on Windows phone 8 and can't figure out the best way to hangle click on an item. The few examples I've found rely on the SelectionChanged event. But this solution is buggy beacause if I click an Item (open a new page), hit back and then click 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 clicked one. but some times the current selected is not the one I expect.

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

Finaly, I don't anderstand why it is so complicated to acheive such a basic. Is there a simple and standard way I missed ??

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

share|improve this question
1  
Thanks man for posting such good problem..:) – Mohit May 14 at 6:10

2 Answers

up vote 7 down vote accepted

You could null your LongListSelector 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 and you should get the behaviour that you're looking for.

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

share|improve this answer
Yes, that's what I finaly did. But it seams like a hack for a very usual taks. Don't you think ? – Tom Esterez Jan 9 at 10:54
Thanks man for reply...:) – Mohit May 14 at 6:10

I done it with the Tap event handling.

I prefer not to use Selected property, but get tapped item this way (and I haven't noticed any bugs):

MyListItemClass item= ((FrameworkElement)e.OriginalSource).DataContext as MyListItemClass;

Also, you could get the original item ContentPresenter simple by navigating up through VisualTree from e.OriginalSource. That way:

ContentPresenter itemPresenter=SomeHelperClass.FindParent<ContentPresenter>(e.OriginalSource,"");

Where FindParent is similar to find child in this question: WPF ways to find controls

ContentPresenter is that object what you need to manually change the item template if you want to (to set "selected" state for example).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.