取消WinRT ComboBox无限滚动效果

时间:2014-11-10 10:59:19

标签: winrt-xaml

如何在WinRT中取消ComboBox上的无限滚动效果。我尝试了很多解决方案,但似乎没有人工作。

PS:我只在触摸模式下遇到此问题!

谢谢,

1 个答案:

答案 0 :(得分:2)

您需要将ItemsPanelTemplate更改为StackPanel

<ComboBox Width="200" Height="50">
    <ComboBoxItem Content="Test"/>
    <ComboBox.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Vertical" />
        </ItemsPanelTemplate>
    </ComboBox.ItemsPanel>
</ComboBox>