Is it possible to change the amount that the WPF ScrollViewer scrolls? I am simply wondering if it\'s possible to change the scrollviewer so that when using the mouse wheel or t
I did this to ensure whole numbers on scrollbar1.ValueChanged:
scrollbar1.Value = Math.Round(scrollbar1.Value, 0, MidpointRounding.AwayFromZero)