TickPlacement Enumeration
.NET Framework Class Library
TickPlacement Enumeration

Specifies the position of tick marks in a Slider control with respect to the Track that the control implements.

Namespace:  System.Windows.Controls.Primitives
Assembly:  PresentationFramework (in PresentationFramework.dll)
Visual Basic (Declaration)
Public Enumeration TickPlacement
Visual Basic (Usage)
Dim instance As TickPlacement
C#
public enum TickPlacement
Visual C++
public enum class TickPlacement
JScript
public enum TickPlacement
XAML Attribute Usage
<object property="enumerationMemberName" .../>
Member nameDescription
None No tick marks appear.
TopLeft Tick marks appear above the Track for a horizontal Slider, or to the left of the Track for a vertical Slider.
BottomRight Tick marks appear below the Track for a horizontal Slider, or to the right of the Track for a vertical Slider.
Both Tick marks appear above and below the Track bar for a horizontal Slider, or to the left and right of the Track for a vertical Slider.

The TickPlacement enumeration is used to set the TickPlacement property of a Slider.

The following illustration shows a Slider that has tick marks that are located below the Track. In this example, the TickPlacement property is set to BottomRight.

Slider Example

Slider illustration

The following example shows how to set the TickPlacement property for a Slider control.

<Slider Width="100" Value="50" Orientation="Horizontal" HorizontalAlignment="Left" 
        IsSnapToTickEnabled="True" Maximum="3" TickPlacement="BottomRight" 
        AutoToolTipPlacement="BottomRight" AutoToolTipPrecision="2" 
        Ticks="0, 1.1, 2.5, 3"/>

More Code

How to: Customize the Ticks on a Slider This example shows how to create a Slider control that has tick marks.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker