ClassRadSlider
Represents a slider control that displays a value in a given min-max range. The end user can change the value by dragging the thumb. 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 is.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadSlider : RadSliderBase, IRadContentView, IContentView, IView, IElement, ITransform, IPadding, ICrossPlatformLayout
Inheritance: objectRadContentViewRadSliderBaseRadSlider
Implements:
Inherited Members
Constructors
Fields
ActualThumbStyleProperty
Identifies the ActualThumbStyle property.
Declaration
public static readonly BindableProperty ActualThumbStyleProperty
Field Value
BindableProperty
DragModeProperty
Identifies the DragMode property.
Declaration
public static readonly BindableProperty DragModeProperty
Field Value
BindableProperty
OriginValueProperty
Identifies the OriginValue property.
Declaration
public static readonly BindableProperty OriginValueProperty
Field Value
BindableProperty
ThumbFillProperty
Identifies the ThumbFill property.
Declaration
public static readonly BindableProperty ThumbFillProperty
Field Value
BindableProperty
ThumbStyleProperty
Identifies the ThumbStyle property.
Declaration
public static readonly BindableProperty ThumbStyleProperty
Field Value
BindableProperty
ValueProperty
Identifies the Value property.
Declaration
public static readonly BindableProperty ValueProperty
Field Value
BindableProperty
Properties
ActualThumbStyle
Gets or sets the actual style that will be applied to the slider thumb. This is a merger of the custom ThumbStyle and the default style.
Declaration
public Style ActualThumbStyle { get; }
Property Value
Style
DragMode
Gets or sets the mode that defines the possible ways to interact and change the Value.
Declaration
public SliderDragMode DragMode { get; set; }
Property Value
OriginValue
Gets or sets the origin value, i.e. where the range track starts.
ThumbFill
Gets or sets the custom color that is to be applied to the thumb.
Declaration
public Color ThumbFill { get; set; }
Property Value
Color
ThumbStyle
Gets or sets the custom style that is to be applied to the slider thumb. This style is merged with the default style and the resulting merged style is set to the ActualThumbStyle property, and this is the style that is actually applied to the element.
Declaration
public Style ThumbStyle { get; set; }
Property Value
Style
Events
ValueChanging
An event that is raise when the end-user drags the thumb. This event allows for plugging in custom logic by changing the Value property.
Declaration
public event EventHandler<ValueChangingEventArgs> ValueChanging
Event Value
EventHandler<ValueChangingEventArgs>