Slider.IsSnapToTickEnabled プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
プロパティ値
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"/>
注釈
a Thumb の位置が変更され、プロパティが IsSnapToTickEnabled 設定 true
されると、 Thumb 最も近い目盛に自動的に移動されます。
依存プロパティ情報
識別子フィールド | IsSnapToTickEnabledProperty |
に設定されたメタデータ プロパティ true |
なし |