New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents a slider in the RadToolbar control.

Definition

Constructors

C#
public SliderToolbarItem()

Fields

MaximumProperty

BindableProperty

Identifies the Maximum property.

C#
public static readonly BindableProperty MaximumProperty

MinimumProperty

BindableProperty

Identifies the Minimum property.

C#
public static readonly BindableProperty MinimumProperty

SliderStyleProperty

BindableProperty

Identifies the SliderStyle property.

C#
public static readonly BindableProperty SliderStyleProperty

ValueProperty

BindableProperty

Identifies the Value property.

C#
public static readonly BindableProperty ValueProperty

Properties

Gets or sets the maximum value of the slider.

C#
public double Maximum { get; set; }

Gets or sets the minimum value of the slider.

C#
public double Minimum { get; set; }

Gets or sets the Style of the slider. The target type of this style is RadSlider.

C#
public Style SliderStyle { get; set; }

Gets or sets the value of the slider.

C#
public double Value { get; set; }

Events

Raised when the Value property has changed.

C#
public event EventHandler ValueChanged