Slider::TickFrequency Property
.NET Framework (current version)
Gets or sets the interval between tick marks.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [BindableAttribute(true)] property double TickFrequency { double get(); void set(double value); }
If the Ticks property is set to a value that is not null, the TickFrequency property is not used.
The TickPlacement property must be set to a value other than None for tick marks to appear along the Slider.
Tick marks are drawn at an interval that is specified by the TickFrequency property. The tick marks start at the value of the Minimum property and continue until the value of the Maximum property is reached.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the TickFrequency property.
<Slider Name="slider1" Width="100" Orientation="Horizontal" HorizontalAlignment="Left" IsSnapToTickEnabled="True" Minimum="1" Maximum="20" TickPlacement="Both" TickFrequency="2" AutoToolTipPlacement="BottomRight"/>
.NET Framework
Available since 3.0
Available since 3.0
Show: