如何在 XAML 代码中设置 ComboBox 的默认选择?这就是我的 ComboBox 的代码的样子:
<ComboBox Name="ComboBox1" Width="200" Height="30" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="10,10,0,0">
<ComboBoxItem>My first item</ComboBoxItem>
</ComboBox>
在我的 C# 代码中,我总是像这样设置 ComboBox 的默认值:
ComboBox1.SelectedIndex = 0;
是否可以在我的 XAML 代码中做同样的事情?