Slider::IsDirectionReversed Property
Gets or sets the direction of increasing value.
Assembly: PresentationFramework (in PresentationFramework.dll)
public: [BindableAttribute(true)] property bool IsDirectionReversed { bool get(); void set(bool value); }
Property Value
Type: System::Booleantrue if the direction of increasing value is to the left for a horizontal slider or down for a vertical slider; otherwise, false. The default is false.
The value of this property determines the direction of increasing value of a Slider. For example, when you move the Thumb control up on a vertical Slider when the IsDirectionReversed property is set to false, the Value of the Slider increases. If the value of the IsDirectionReversed property is changed to true, the Value of the Slider decreases as the Thumb moves up.
This property binds to the IsDirectionReversed property for the Track control that it implements.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to set the IsDirectionReversed property.
<Slider Width="100" Orientation="Horizontal" Minimum="1" Maximum="10" IsDirectionReversed="True" IsMoveToPointEnabled="True" AutoToolTipPrecision="2" AutoToolTipPlacement="BottomRight" TickPlacement="BottomRight" Ticks="0.5, 1.5, 2.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5" IsSelectionRangeEnabled="true" SelectionStart="2.5" SelectionEnd="7.5" Name="mySlider"/>
Available since 3.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0