How do you show this in DisplayMemberPath so let's say I have the property
public IEnumerable<KeyValuePair<string, string>> Defaults{ get { return defaults; } }
in the class QuestionsFile and I want to put this in the following ListBox
<ListBox ItemsSource="QuestionsFile.Defaults" DisplayMemberPath="?"/>