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?
views:
393answers:
1
A:
<Slider Minimum="0" Maximum="50" Interval="1" TickPlacement="Both" TickFrequency="5" />
Mike Pateras
2010-01-28 20:20:57