I have a horizontal view of the list that scrolls from the screen to the right, for example:

The problem is that when using touch, you cannot scroll to scroll the default ListView, it seems just grab the ListView element and pull it a bit horizontally. The only way I can scroll it is to click 5-10 pixels between each ListViewItem, which is horrible.
Is there any way to change this behavior?
My xaml is basically this:
<ListView x:Name="listView" Grid.Column="1" IsItemClickEnabled="True" ItemsSource="{Binding Assignments}" SelectionMode="None" ItemClick="OnItemClick"> <ListView.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" /> </ItemsPanelTemplate> </ListView.ItemsPanel> <ListView.ItemTemplate> <DataTemplate> </DataTemplate> </ListView.ItemTemplate> </ListView>
Should I ask Jerry?

source share