Given a dictionary of , how would you bind the dictionary.Values to a WPF ListBox, so that the items use the .Name
dictionary.Values
.Name
ListBox.DisplayMemberPath = "Name";
That will tell the listbox to use the 'Name' property of the DataContext