如何在WinRT中取消ComboBox上的无限滚动效果。我尝试了很多解决方案,但似乎没有人工作。
PS:我只在触摸模式下遇到此问题!
谢谢,
答案 0 :(得分:2)
您需要将ItemsPanelTemplate
更改为StackPanel
。
<ComboBox Width="200" Height="50">
<ComboBoxItem Content="Test"/>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>