取消WinRT的组合框infinte滚动效果(Cancel WinRT ComboBox infin

2019-10-21 06:09发布

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

PS:我只在触摸模式得到了这个问题!

谢谢,

Answer 1:

您需要更改ItemsPanelTemplateStackPanel

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


文章来源: Cancel WinRT ComboBox infinte scroll effect
标签: winrt-xaml