UWP: Mouse wheel on horizontal ListView
Problem: By default ListView is vertical orientation and scrollable. To change ListView horizontal we set in it ItemsPanelTemplate: <ItemsStackPanel Orientation="Horizontal"/>. But in mouse wheel is not working on horizontal ListView Solution: Fixed width for the ListView Disable parent scrollviewer horizontal by setting ScrollViewer.HorizontalScrollMode = "Disabled" if the ListView inside scrollviewer