我定义Dictionary
包含 int 作为 key 和 string 作为 value Dictionary<int, string >
。ComboBoxItem
我在和这个之间做了绑定Dictionary
:
<ComboBox ItemsSource="{Binding myDictionary}" >
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Key}" Tag="{Binding Value}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>
现在,我想在项目选定标签之间进行绑定。我该怎么做 ?我知道该怎么做,以防我想要组合的 SelectedValue(在组合中选择文本)==> 但我需要标签而不是文本...... :(