共用方式為


Slider.AutoToolTipPlacement 屬性

定義

取得或設定當按下 Thumb 時,是否會顯示包含 Slider 目前值的工具提示。 如果顯示工具提示,這個屬性也會指定工具提示的位置。

public:
 property System::Windows::Controls::Primitives::AutoToolTipPlacement AutoToolTipPlacement { System::Windows::Controls::Primitives::AutoToolTipPlacement get(); void set(System::Windows::Controls::Primitives::AutoToolTipPlacement value); };
[System.ComponentModel.Bindable(true)]
public System.Windows.Controls.Primitives.AutoToolTipPlacement AutoToolTipPlacement { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.AutoToolTipPlacement : System.Windows.Controls.Primitives.AutoToolTipPlacement with get, set
Public Property AutoToolTipPlacement As AutoToolTipPlacement

屬性值

AutoToolTipPlacement

其中一個 AutoToolTipPlacement 值,這個值決定依據 SliderThumb 顯示工具提示的位置,或指定不顯示工具提示。 預設為 None,指定不顯示工具提示。

屬性

範例

下列範例示範如何設定 AutoToolTipPlacement 屬性。

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);
Dim hslider As 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)
<Slider Name="slider1" 
        Width="100" 
        Orientation="Horizontal" HorizontalAlignment="Left" 
        IsSnapToTickEnabled="True" Minimum="1" Maximum="20" 
        TickPlacement="Both"  TickFrequency="2"
        AutoToolTipPlacement="BottomRight"/>

備註

相依性屬性資訊

識別碼欄位 AutoToolTipPlacementProperty
設定為 的中繼資料屬性 true

適用於