<ComboBox SelectedValue="{Binding Path=Theme, Mode=TwoWay}" SelectedValuePath="Tag"> <ComboBoxItem Tag="Light" Content="{LocalizedBinding Light}" /> <ComboBoxItem Tag="Dark" Content="{LocalizedBinding Dark}" /></ComboBox>
<ComboBox SelectedValue="{Binding Theme, Mode=TwoWay}"> <ComboBox.Items> <x:String>Light</x:String> <x:String>Dark</x:String> </ComboBox.Items></ComboBox>