-1

我必须为大学课程编写一个 Windows 商店应用程序。我创建了一个 ComboBox 来选择年份。如果您选择 ComboBox,则会出现一个列表,其中包含从 2013 到 2100 的数字。但是当列表出现时,默认视图就在附近,是否有办法让列表出现在当前年份?或者至少让它看起来从第一个值开始。

在此先感谢,比杰

4

1 回答 1

0

这应该工作得很好(在 XAML 中):

<ComboBox SelectedIndex="0"/> <!--after that all your attributes-->

如果你想在代码中做到这一点:

MyComboBox.SelectedIndex = 0;
于 2013-07-06T23:00:55.667 回答