Slider.AutoToolTipPlacement 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
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 值,這個值決定依據 Slider 的 Thumb 顯示工具提示的位置,或指定不顯示工具提示。 預設為 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 |
無 |