I'm using this tutorial as a base for my first app. I'm trying to select a listbox item and view data from said item, but(my Android and iOS brain is having issues with this), how do I view the data binding behind that?
lstContact.ItemsSource = from contact in xmlContact.Descendants("contact")
select new ContactItem
{
ImageSource = contact.Element("Image").Value,
FName = contact.Element("FName").Value,
LName = contact.Element("LName").Value
Extension = contact.Element("Extension").Value,
Email = contact.Element("Email").Value,
ID = contact.Element("ID").Value
};
This is how I'm setting it up my data source, and it's pulling correctly. How would I go about going in and getting the email or extension from said listbox item?