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