Skip to main content

Posts

Showing posts with the label UWP Slider

UWP - How to use Slider

UWP Slider The Slider class represents a control that lets the UWP app users select from a range of values by moving a Thumb control along a track. The RangeBase class’s ValueChanged event occurs when the range value changes. The UWP developers can use this event to respond to the Slider value changes. The RangeBase class’s Maximum property gets or sets the highest possible value of the range element such as Slider control. This property value type is Doublewhich is the highest possible value of the range element. The default value of this property is 1. The RangeBase class’s Minimum property gets or sets the minimum possible value of the range element. This property value type is also Double which is the minimum possible value of the range element. The default value of the Minimum property is 0. The Slider class’s TickFrequency property gets or sets the increment of the value range that ticks should be created for. This property value t...