Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

AutoToolTipPlacement Enumeration

Describes the means by which the automatic ToolTip is positioned on a Slider control.

Namespace: System.Windows.Controls.Primitives
Assembly: PresentationFramework (in presentationframework.dll)
XML Namespace:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

public enum AutoToolTipPlacement
public enum AutoToolTipPlacement
public enum AutoToolTipPlacement
<object property="EnumerationValue" .../>

 Member nameDescription
BottomRightFor a horizontal Slider show the automatic ToolTip at the bottom edge of the Thumb. For a vertical Slider show the automatic ToolTip at the right edge of the Thumb
NoneNo automatic ToolTip 
TopLeftFor a horizontal Slider show the automatic ToolTip at the top edge of the Thumb. For a vertical Slider show the automatic ToolTip at the left edge of the Thumb

The following example shows how to set the AutoToolTipPlacement property of a Slider using the values of this enumeration.

<Slider Name="slider1" Width="100" 
        Orientation="Horizontal" HorizontalAlignment="Left" 
        IsSnapToTickEnabled="True" Minimum="1" Maximum="9" 
        TickPlacement="BottomRight"  TickFrequency="3"
        AutoToolTipPrecision="2" AutoToolTipPlacement="BottomRight"
        IsDirectionReversed="False"
        IsMoveToPointEnabled="False"/>

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0

Community Additions

Show:
© 2017 Microsoft