tags:

views:

393

answers:

1

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?

A: 
<Slider Minimum="0" Maximum="50" Interval="1" TickPlacement="Both" TickFrequency="5" />
Mike Pateras