Customizing Appearance
RadSlider
allows you to easily modify its appearance by providing some useful properties.
ThumbStyle
The ThumbStyle
property allows you to control the appearance of the thumb, which is used to control the Value
.
If you are using the implicit styles theming approach, base the custom style on the default RadTickBarStyle using the BasedOn
property.
Creating a custom style for the ThumbStyle property when using implicit styles theming approach
BasedOn
property. In the following example, the GenericFluent.xaml dictionary of the Telerik.Windows.Controls assembly is merged, because the Fluent theme is used.
Creating a custom style for the ThumbStyle property when using StyleManager theming approach
If another theme is used, for example, Office_Black, change the GenericFluent.xaml to GenericOfficeBlack.xaml.
RadSlider with custom ThumbStyle
SelectionMiddleThumbStyle
The SelectionMiddleThumbStyle
property lets you control the appearance of the middle thumb, which is displayed when the IsSelectionRangeEnabled
property is True.
If you are using the implicit styles theming approach, base the custom style on the default SelectionMiddleThumbStyle using the BasedOn
property.
Creating a custom style for the SelectionMiddleThumbStyle property using the implicit styles theming approach
BasedOn
property. In the following example, the GenericFluent.xaml dictionary of the Telerik.Windows.Controls assembly is merged, because the Fluent theme is used.
Creating a custom style for the SelectionMiddleThumbStyle property using the StyleManager theming approach
If another theme is used, for example, Office_Black, change the GenericFluent.xaml to GenericOfficeBlack.xaml.
RadSlider with custom SelectionMiddleThumbStyle
DecreaseHandleStyle and IncreaseHandleStyle
The DecreaseHandleStyle
and IncreaseHandleStyle
properties allow you to modify the appearance of the two repeat buttons, which increase and decrease the Value
. They are shown when the HandlesVisibility
is True.
If you are using the implicit styles theming approach, base the custom styles on the default DecreaseHandleStyle and IncreaseHandleStyle styles using the BasedOn
property.
Creating custom Styles for the DecreaseHandleStyle and IncreaseHandleStyle properties when using the implicit styles theming approach
BasedOn
property. In the following example, the GenericFluent.xaml dictionary of the Telerik.Windows.Controls assembly is merged, because the Fluent theme is used.
Creating custom Styles for the DecreaseHandleStyle and IncreaseHandleStyle properties when using the StyleManager theming approach
If another theme is used, for example, Office_Black, change the GenericFluent.xaml to GenericOfficeBlack.xaml.
RadSlider with custom DecreaseHandleStyle and IncreaseHandleStyle
TickBarStyle
The TickBarStyle
property allows you to modify the appearance of the bottom and top tickbars - the controls which displays the ticks.
If you are using the implicit styles theming approach, base the custom style on the default RadTickBarStyle using the BasedOn
property as shown in the following example:
Creating a custom style for the TickBarStyle property when using the implicit styles theming approach
ItemsPanel
property of the RadTickBar
element to a new instance of the TickBarPanel
object.
Creating a custom style for the TickBarStyle property when using the StyleManager theming approach
TrackStyle
The TrackStyle
property lets you modify the appearance of the RadSlider's track.
When using the implicit styles theming approach and NoXaml binaries, base the custom style on the default TrackStyle. This style comes from the chosen theme using the BasedOn
property.
Creating a custom style for the TrackStyle property when using the implicit styles theming approach
BasedOn
property. In the following example, the GenericFluent.xaml dictionary of the Telerik.Windows.Controls assembly is merged, because the Fluent theme is used.
Creating a custom style for the TrackStyle property when using the StyleManager theming approach
If another theme is used, for example, Office_Black, change the GenericFluent.xaml to GenericOfficeBlack.xaml.
RadSlider with custom TrackStyle
Using the TickTemplateSelector
The TickTemplateSelector
property property of RadSlider
allows to customize the appearance of the ticks, based on different conditions. The following example shows how to use the selector.
The
TickTemplate
property needs to be set tonull
for theTickTemplateSelector
property to get applied.
Implementing the selector
Defining the template selector
Defining the slider and setting the template selector

Customizing the Thumb Shape
By default the thumb of the slider is a rectangle visual. To change this and use custom shape or any other visual, you can re-templated the Thumb
element. The custom template can be assigned with the ThumbStyle
property of RadSlider
. The following example shows how to replace the default rectangle with an ellipse shape.
Custom Thumb ControlTemplate based on the Fluent theme

In order to learn how to further modify any of the elements referenced in the article by extracting their control template, read the Editing Control Templates article.