Slider.AutoToolTipPlacement Property

Definition

Gets or sets whether a tooltip that contains the current value of the Slider displays when the Thumb is pressed. If a tooltip is displayed, this property also specifies the placement of the tooltip.

C#
[System.ComponentModel.Bindable(true)]
public System.Windows.Controls.Primitives.AutoToolTipPlacement AutoToolTipPlacement { get; set; }

Property Value

One of the AutoToolTipPlacement values that determines where to display the tooltip with respect to the Thumb of the Slider, or that specifies to not show a tooltip. The default is None, which specifies that a tooltip is not displayed.

Attributes

Examples

The following example demonstrates how to set the AutoToolTipPlacement property.

C#
Slider hslider = new Slider();
hslider.Width = 100;
hslider.Orientation = Orientation.Horizontal;
hslider.IsSnapToTickEnabled = true;
hslider.Minimum = 1;
hslider.Maximum = 20;
hslider.TickPlacement = TickPlacement.Both;
hslider.TickFrequency = 2;
hslider.AutoToolTipPlacement =
  AutoToolTipPlacement.BottomRight;
cv1.Children.Add(hslider);
XAML
<Slider Name="slider1" 
        Width="100" 
        Orientation="Horizontal" HorizontalAlignment="Left" 
        IsSnapToTickEnabled="True" Minimum="1" Maximum="20" 
        TickPlacement="Both"  TickFrequency="2"
        AutoToolTipPlacement="BottomRight"/>

Remarks

Dependency Property Information

Item Value
Identifier field AutoToolTipPlacementProperty
Metadata properties set to true None

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10