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 ?