Currently, the WPF slider has some properties that allow you to define and view one interval on the slider: SelectionStart, SelectionEnd and IsSelectionRangeEnabled.
Setting these values
<Slider Minimum="0" Maximum="300" Value="150" IsSelectionRangeEnabled="True" SelectionStart="50" SelectionEnd="200"/>
you get the selected interval in the blue colored slider, for example:

What I would like to do is define a few intervals - for example. (50-100), (110-130), (170-200) and (210-240), which are as follows:

Any ideas on how to evaluate this problem, or which template should I try changing to get this feature?
source
share