How to enable horizontal scrolling with mouse?
I cannot determine how to scroll horizontally using the mouse wheel. Vertical scrolling works well automatically, but I need to scroll my content horizontally. My code looks like this: <ListBox x:Name="receiptList" Margin="5,0" Grid.Row="1" ItemTemplate="{StaticResource receiptListItemDataTemplate}" ItemsSource="{Binding OpenReceipts}" ScrollViewer.VerticalScrollBarVisibility="Disabled"> <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal" ScrollViewer.HorizontalScrollBarVisibility="Visible"/> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> </ListBox> My item