ListPicker shows object name instead of property
问题 In my model I have class: public class Heaviness { public int ID {get; set;} public string NameToDisplay {get; set;} } in my view model I have a property HeavinessList: public ObservableCollection<Heaviness> HeavinessList {get;set;} In my xaml I added ListPicker with items source binded to HeavinessList; its data template for item is binded to NameToDisplay property of Heaviness object. <StackPanel x:Name="HeavinessGroup" Width="220" HorizontalAlignment="Left"> <TextBlock x:Name=