I want to display a slider in the range of 0.5 to 1.5 with a mark of only one mark in 1.0 for the center mark and the default value. I defined the slider as follows:
<Slider Minimum="0.5" Maximum="1.5"
IsMoveToPointEnabled="True" IsSnapToTickEnabled="False"
Orientation="Horizontal"
Ticks="1.0"
TickPlacement="BottomRight"
Value="{Binding SomeProperty, Mode=TwoWay}"/>
However, in addition to the check mark in 1.0, this slider also shows the marks at 0.5 and 1.5, that is, the minimum and maximum values.
Is there any way to hide these min / max marks? I checked all the properties and tried to change some of them, but have not yet succeeded.
gehho source
share