Table of Contents
TopLeftTickTemplate Property

Gets or sets the DataTemplate used to display each top/left tick. This is a dependency property.

Syntax
 public DataTemplate TopLeftTickTemplate { get; set; }
Remarks

You can use a DataTemplate to customize the appearance of each tick on the top/left tickbar. For example, the following code displays a black ellipse for each top tick:

XAML
<eo:Slider TickFrequency="2" TickPlacement="TopLeft" VerticalAlignment="Center" Width="150">
   <eo:Slider.TopLeftTickTemplate>
       <DataTemplate>
           <Ellipse Width="6" Height="6" Fill="Black" />
       </DataTemplate>
   </eo:Slider.TopLeftTickTemplate>
</eo:Slider>
See Also