Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="1.1.0.6201" />

.NET API 488,960 bytes

 Stepper

public class Stepper : View
A View control that inputs a discrete value, constrained to a range.
public static readonly BindableProperty IncrementProperty

Identifies the Increment bindable property.

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 Increment { get; set; }

Gets or sets the increment by which Value is increased or decreased. This is a bindable property.

public double Maximum { get; set; }

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

public double Minimum { get; set; }

Gets or sets the minimum selectabel value. 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 has changed.

public Stepper()

public Stepper(double min, double max, double val, double increment)