How to cancel the infinite scroll effect on the ComboBox in WinRT. I tried a lot of solutions but no one seems working.
PS: I got this issue only in the touch mode !
Thank you,
How to cancel the infinite scroll effect on the ComboBox in WinRT. I tried a lot of solutions but no one seems working.
PS: I got this issue only in the touch mode !
Thank you,
You need to change the ItemsPanelTemplate
to StackPanel
.
<ComboBox Width="200" Height="50">
<ComboBoxItem Content="Test"/>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
</ComboBox>