WPF ComboBox自定义显示

时间:2018-08-31 22:11:12

标签: wpf combobox datatemplate

我有一个绑定到字典的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>

0 个答案:

没有答案