宣言されたComboBox.Itemsリストを持つComboBoxがあります(つまり、ItemsSourceを介して動的にバインドされていません)。以下に示すように、表示名にはComboBoxItem.Contentを使用し、対応するIDにはComboBoxItem.Tagを使用します。
コンテンツではなく、選択したアイテムのタグを返すにはどうすればよいですか?試しSelectedItemValuePath="Tag"
ましたが、うまくいきません。
<ComboBox Visibility="{Binding Path=ShowOutpatientFields, Converter=
{StaticResource
boolTovisConverter}}" Grid.Row="5" Grid.Column="2" Margin="0,2,0,2"
Text="{Binding Path=NewCase.ServiceType, ValidatesOnDataErrors=true,
NotifyOnValidationError=true}" SelectedValuePath="Tag">
<ComboBox.Items>
<ComboBoxItem Content="Hospice" Tag="33" />
<ComboBoxItem Content="Hospital Outpatient" Tag="36" />
<ComboBoxItem Content="Hospital Inpatient Extension" Tag="128" />
<ComboBoxItem Content="Maternity" Tag="52" />
</ComboBox.Items>
</ComboBox>