This repository has been archived by the owner on Mar 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
RangeSelector
Nikola Metulev edited this page Dec 23, 2015
·
3 revisions
#RangeSelector
RangeSelector is a "double slider" control for range values.
##Syntax
<c:RangeSelector x:Name="RangeSelector"
ValueChanged="RangeSelector_ValueChanged"
Minimum="0"
Maximum="100"></c:RangeSelector>
Event | Description |
---|---|
ValueChanged | Event raised when lower or upper range values are changed. RangeChangedEventArgs contain what value changed as well as the old and new value |
Property (type) | Description |
---|---|
Minimum (double) | The lower bounds of the RangeSelector - or what is the lowest a user can select |
Maximum (double) | The upper bounds of the RangeSelector - or what is the highest a user can select |
RangeMin (double) | Current lower bound selected |
RangeMax (double) | Current upper bound selected |