我有一个绑定到字典的ComboBox,它可以正常工作并使用Key返回一个customerName,但是我想添加另一条数据以显示为Combobox的一部分。
当前,“值”返回一个customerName。我想在名称旁边添加一个customerNumber。像这样:
John Smith-Cust100
我对DataTempate很熟悉,但是不确定当词典是源时如何使用它。
<ComboBox x:Name="CoordinatorIDComboBox"
ItemsSource="{Binding CustomerIDComboBoxDictionary, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
SelectedValue="{Binding objActiveJobClass.CustomerID, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
DisplayMemberPath="Value"
SelectedValuePath="Key">
</ComboBox>