I am building an application which requires a horizontal list of vertical lists
Simplified XAML layout:
<ScrollViewer>
<ItemsControl ItemsSource="{Binding Lists}">
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<ListView ItemsSource="{Binding Items}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
I am having trouble getting the touch interactions right. Currently horizontal swipes move the entire list horizontally, and vertical move individual lists' items vertically. However it is possible to move both lists with a diagonal swipe, and it's not possible to scroll multiple vertical lists at a time (it is without the outer scrollviewer).
Is there a way to make all horizontal swipes apply only to the outer scrollviewer, and all vertical swipes only to an inner listview?