Slider.IsSnapToTickEnabled 属性

定义

获取或设置一个值,该值指示 Slider 是否自动将 Thumb 移动到最近的刻度线。

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

属性值

Boolean

如果 Slider 要求 Thumb 的位置为刻度线,则为 true;否则为 false。 默认值为 false

属性

示例

下面的示例演示如何设置 IsSnapToTickEnabled 属性。

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"/>

注解

当更改某个 Thumb 位置并 IsSnapToTickEnabled 设置为 true该属性时,会自动 Thumb 将该位置移动到最近的刻度线。

依赖项属性信息

标识符字段 IsSnapToTickEnabledProperty
元数据属性设置为 true

适用于