RadRangeSlider
Represents a slider control that displays a start-end range in a given min-max range. The end user can change the values of the range by dragging the start thumb, end thumb, and range track. This control can display ticks and labels for clarity of what the underlying min-max range is, and can display tooltips for clarity of what the value corresponding to the dragged element is.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadRangeSlider : RadSliderBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Inheritance: objectRadContentViewRadSliderBaseRadRangeSlider
Implements:
Inherited Members
Constructors
Initializes a new instance of the class.
public RadRangeSlider()
Fields
ActualEndThumbStyleProperty
BindableProperty
Identifies the ActualEndThumbStyle property.
public static readonly BindableProperty ActualEndThumbStyleProperty
ActualStartThumbStyleProperty
BindableProperty
Identifies the ActualStartThumbStyle property.
public static readonly BindableProperty ActualStartThumbStyleProperty
DragModeProperty
BindableProperty
Identifies the DragMode property.
public static readonly BindableProperty DragModeProperty
EndThumbFillProperty
BindableProperty
Identifies the EndThumbFill property.
public static readonly BindableProperty EndThumbFillProperty
EndThumbStyleProperty
BindableProperty
Identifies the EndThumbStyle property.
public static readonly BindableProperty EndThumbStyleProperty
RangeEndProperty
BindableProperty
Identifies the RangeEnd property.
public static readonly BindableProperty RangeEndProperty
RangeStartProperty
BindableProperty
Identifies the RangeStart property.
public static readonly BindableProperty RangeStartProperty
StartThumbFillProperty
BindableProperty
Identifies the StartThumbFill property.
public static readonly BindableProperty StartThumbFillProperty
StartThumbStyleProperty
BindableProperty
Identifies the StartThumbStyle property.
public static readonly BindableProperty StartThumbStyleProperty
Properties
ActualEndThumbStyle
Style
Gets or sets the actual style that will be applied to the end thumb. This is a merger of the custom EndThumbStyle and the default style.
public Style ActualEndThumbStyle { get; }
Gets or sets the actual style that will be applied to the start thumb. This is a merger of the custom StartThumbStyle and the default style.
public Style ActualStartThumbStyle { get; }
Gets or sets a value indicating what elements the end-user can drag.
public RangeSliderDragMode DragMode { get; set; }
EndThumbFill
Color
Gets or sets the custom color that is to be applied to the end thumb.
public Color EndThumbFill { get; set; }
EndThumbStyle
Style
Gets or sets the custom style that is to be applied to the end thumb (TargetType SliderThumb). This style is merged with the default style and the resulting merged style is set to the ActualEndThumbStyle property, and this is the style that is actually applied to the element.
public Style EndThumbStyle { get; set; }
Gets or sets the start value of the range.
public double RangeStart { get; set; }
StartThumbFill
Color
Gets or sets the custom color that is to be applied to the start thumb.
public Color StartThumbFill { get; set; }
StartThumbStyle
Style
Gets or sets the custom style that is to be applied to the start thumb (TargetType SliderThumb). This style is merged with the default style and the resulting merged style is set to the ActualStartThumbStyle property, and this is the style that is actually applied to the element.
public Style StartThumbStyle { get; set; }
Events
RangeChanging
EventHandler<RangeChangingEventArgs>
An event that is raise when the end-user drags a thumb or the range track. This event allows for plugging in custom logic by changing the RangeStart and RangeEnd properties.
public event EventHandler<RangeChangingEventArgs> RangeChanging