Slider.IsSnapToTickEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Property Value
true
if the Slider requires the position of the Thumb to be a tick mark; otherwise, false
. The default is false
.
- Attributes
Examples
The following example shows how to set the IsSnapToTickEnabled property.
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"/>
Remarks
When the position of a Thumb is changed and the IsSnapToTickEnabled property is set to true
, the Thumb is automatically moved to the closest tick mark.
Dependency Property Information
Identifier field | IsSnapToTickEnabledProperty |
Metadata properties set to true |
None |
Applies to
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.