Slider::Ticks Property
.NET Framework (current version)
Gets or sets the positions of the tick marks to display for a Slider.
Assembly: PresentationFramework (in PresentationFramework.dll)
Tick marks that are outside the range that is defined by the Minimum and Maximum property values are ignored.
The TickPlacement property must be set to a value other than None for tick marks to appear.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the Ticks property.
<Slider Width="100" Orientation="Horizontal" Minimum="1" Maximum="10" IsDirectionReversed="True" IsMoveToPointEnabled="True" AutoToolTipPrecision="2" AutoToolTipPlacement="BottomRight" TickPlacement="BottomRight" Ticks="0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5" IsSelectionRangeEnabled="true" SelectionStart="2.5" SelectionEnd="7.5" Name="mySlider"/>
.NET Framework
Available since 3.0
Available since 3.0
Show: