次の構文があり、ComboboxItemのTagプロパティにデータバインディングを作成したいと思います。それは可能ですか?
<ComboBox Name="LanguageCombo" VerticalAlignment="Center"
SelectionChanged="ComboBox_SelectionChanged" Margin="5,1,0,1"
SelectedValue="{Binding Source={x:Static prop:ToolsOptionsSettings.Default},Path=ToolsOptionsLanguage, Mode=TwoWay}" >
<ComboBoxItem Tag="en-US" Content="{DynamicResource English}"></ComboBoxItem>
<ComboBoxItem Tag="de-DE" Content="{DynamicResource German}"></ComboBoxItem>
<ComboBoxItem Tag="ja-JP" Content="{DynamicResource Japanese}"></ComboBoxItem>
</ComboBox>
ToolsOptionsLanguage-たとえば、タグプロパティの値であるen-USのような文字列を返します。
ありがとうございました。