If I have a ribbon combobox, such as:
<ribbon:ComboBox Width="200" Label="Something:" KeyTipAccessText="F1">
<ribbon:ComboBox.Content>
<ComboBox>
<ComboBoxItem>Item 1</ComboBoxItem>
<ComboBoxItem>Item 2</ComboBoxItem>
</ComboBox>
</ribbon:ComboBox.Content>
</ribbon:ComboBox>
Is there a way to set it so the first item in the combo box is selected?
<ribbon:ComboBox Width="200" Label="Something:" KeyTipAccessText="F1">
<ribbon:ComboBox.Content>
<ComboBox>
<ComboBoxItem>Item 1</ComboBoxItem>
<ComboBoxItem>Item 2</ComboBoxItem>
</ComboBox>
</ribbon:ComboBox.Content>
</ribbon:ComboBox>
Is there a way to set it so the first item in the combo box is selected?