Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="2.0.1.6492-pre1" />

.NET API 803,328 bytes

 Slider

public class Slider : View
A View control that inputs a linear value.
public static readonly BindableProperty MaximumProperty

Identifies the Maximum bindable property.

public static readonly BindableProperty MinimumProperty

Identifies the Minimum bindable property.

public static readonly BindableProperty ValueProperty

Identifies the Value bindable property.

public double Maximum { get; set; }

Gets or sets the maximum selectable value for the Slider. This is a bindable property.

public double Minimum { get; set; }

Gets or sets the minimum selectable value for the Slider. This is a bindable property.

public double Value { get; set; }

Gets or sets the current value. This is a bindable property.

The ValueChanged event is fired when the Value property changes.

public Slider()

public Slider(double min, double max, double val)