Class 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.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadRangeSlider : RadSliderBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding
Constructors
RadRangeSlider()
Initalizes a new instance of the class.
Declaration
public RadRangeSlider()
Fields
ActualEndThumbStyleProperty
Identifies the ActualEndThumbStyle property.
Declaration
public static readonly BindableProperty ActualEndThumbStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ActualStartThumbStyleProperty
Identifies the ActualStartThumbStyle property.
Declaration
public static readonly BindableProperty ActualStartThumbStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
DragModeProperty
Identifies the DragMode property.
Declaration
public static readonly BindableProperty DragModeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
EndThumbFillProperty
Identifies the EndThumbFill property.
Declaration
public static readonly BindableProperty EndThumbFillProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
EndThumbStyleProperty
Identifies the EndThumbStyle property.
Declaration
public static readonly BindableProperty EndThumbStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
RangeEndProperty
Identifies the RangeEnd property.
Declaration
public static readonly BindableProperty RangeEndProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
RangeStartProperty
Identifies the RangeStart property.
Declaration
public static readonly BindableProperty RangeStartProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StartThumbFillProperty
Identifies the StartThumbFill property.
Declaration
public static readonly BindableProperty StartThumbFillProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StartThumbStyleProperty
Identifies the StartThumbStyle property.
Declaration
public static readonly BindableProperty StartThumbStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ActualEndThumbStyle
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.
Declaration
public Style ActualEndThumbStyle { get; }
Property Value
Microsoft.Maui.Controls.Style
|
ActualStartThumbStyle
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.
Declaration
public Style ActualStartThumbStyle { get; }
Property Value
Microsoft.Maui.Controls.Style
|
DragMode
Gets or sets a value indicating what elements the end-user can drag.
Declaration
public RangeSliderDragMode DragMode { get; set; }
Property Value
RangeSliderDragMode
|
EndThumbFill
Gets or sets the custom color that is to be applied to the end thumb.
Declaration
public Color EndThumbFill { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
EndThumbStyle
Gets or sets the custom style that is to be applied to the end thumb. 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.
Declaration
public Style EndThumbStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
RangeEnd
Gets or sets the end value of the range.
Declaration
public double RangeEnd { get; set; }
Property Value
System.Double
|
RangeStart
Gets or sets the start value of the range.
Declaration
public double RangeStart { get; set; }
Property Value
System.Double
|
StartThumbFill
Gets or sets the custom color that is to be applied to the start thumb.
Declaration
public Color StartThumbFill { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
StartThumbStyle
Gets or sets the custom style that is to be applied to the start thumb. 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.
Declaration
public Style StartThumbStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
Events
RangeChanging
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.
Declaration
public event EventHandler<RangeChangingEventArgs> RangeChanging
Event Type
System.EventHandler<RangeChangingEventArgs>
|