我正在按照教程将组合框绑定到枚举 并得出以下 XML 代码:
<ComboBox
DisplayMemberPath="Key"
SelectedValuePath="Value"
ItemsSource="{Binding VolumeLevelList}"
SelectedValue="{Binding SelectedVolumeLevel, ValidatesOnDataErrors=True, Mode=TwoWay}"
Height="23" HorizontalAlignment="Left" Margin="189,70,0,0"
VerticalAlignment="Top" Width="120" />
我正在寻找一种选择默认选项的方法,例如
选定索引=“0”
但这不起作用..