So I have a LongListSelector that will soon be bound to a list of object.
What I want is when one of the LongListSelectorItems is tapped that I get the specific object tapped, and have the ability to pass that object to another screen so I can show full information about the object
private void PeopleList_Tap_1(object sender, System.Windows.Input.GestureEventArgs e)
{
MessageBox.Show("SUCCESS");
}
My Tap is working, I just don’t know how to get the object that was selected, or how to pass it to another page using NavigationService
You can use
SelectionChangedevent andLongListSelector.SelectedItemproperty to get selected item.