List<CLASS> list = new List<CLASS>();
list = (from query in doc.Descendants("row")
select new CLASS
{
Id = Convert.ToInt64(query.Element("Id").Value),
Name = query.Element("Name").Value,
title = query.Element("title").Value
}).ToList();
listPicker2.DataContext = list;
How do I display list picker selected item in list picker in windows phone, I have binded list picker in page load event, but every time I select item of list picker items, within an second it automatically selects the first item, how to solve this?