Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.23 KB

File metadata and controls

48 lines (30 loc) · 1.23 KB
-api-id -api-type
T:Windows.UI.Xaml.Controls.Primitives.TickPlacement
winrt enum

TickPlacement

-description

Defines constants that specify the position of tick marks in a Slider in relation to the track that the control implements.

-enum-fields

-field None:0

No tick marks appear.

-field TopLeft:1

Tick marks appear above the track for a horizontal Slider, or to the left of the track for a vertical Slider.

-field BottomRight:2

Tick marks appear below the track for a horizontal Slider, or to the right of the track for a vertical Slider.

-field Outside:3

Tick marks appear on both sides of either a horizontal or vertical track.

-field Inline:4

Tick marks appear directly on the track.

-remarks

-examples

<Slider TickPlacement="Inline"
        TickFrequency="20"
        SnapsTo="Ticks"/>

-see-also

Slider.TickPlacement