I have a WPF slider whose minimum value = 0 and maximum value = 50. I want to show ticks at an interval of 5, but have the slider snap at an interval of 1. Is this even possible?
The property Interval
does not affect this behaviour.
Use this:
<Slider TickFrequency="5" IsSnapToTickEnabled="True" />