1

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,

1 Answers1

1

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>
Dani
  • 971
  • 12
  • 31
  • http://stackoverflow.com/questions/26968357/strange-behaviour-of-combobox-in-winrt stackpanel causes some problems with item selection – Hager Aly Mar 19 '17 at 20:31