Ghost1372

everything can be handy

Slider

SliderBaseStyle

The default style of the slider is not recommended. It should always be used by other styles as BasedOn.

Case:

1
<Slider VerticalAlignment="Center" Width="400" Value="40" Maximum="100"/>

effect:

Slider.DefaultStyle

you can use TipElement Attached Property

1
<Slider hc:TipElement.Visibility="Visible" hc:TipElement.Placement="BottomRight" IsSnapToTickEnabled="True" Value="5" TickPlacement="Both" Orientation="Vertical"/>
0%