I Have a ComboBox and I would like to bind to two different properties, one in the ComboBox and one in the ListBox. The properties are named Summary and Description. How can I accomplish this?
I Currently have this
<ComboBox x:Name="comboBox"
ItemsSource="{Binding}"
DisplayMemberPath="Summary"
DisplayListMemberPath="???"
Thanks for any help