如何向上滚动组合框?
我的组合框看起来像:
但我需要这样的东西:
我的xaml:
<ComboBox x:Name="pages" IsEditable="False" IsReadOnly="True" Text="Mail version"
Height="24" Margin="280,0,163.6,11.4" HorizontalAlignment="Center"
VerticalAlignment="Bottom" Width="70" SelectionChanged="comboBox_SelectionChanged">
<ComboBoxItem IsSelected="True">-page-</ComboBoxItem>
<ComboBoxItem Content="1"/>
<ComboBoxItem Content="2"/>
<ComboBoxItem Content="3"/>
</ComboBox>