Stepper

An increment/decrement control.
public class Stepper : Control

Properties

Maximum

The maximum selectable value.

Type: double

public double Maximum { get; set; }

Minimum

The minimum selectable value.

Type: double

public double Minimum { get; set; }

Step

The amount added or subtracted per tap.

Type: double

public double Step { get; set; }

Value

The current value.

Type: Bindable<double>

public Bindable<double> Value { get; set; }

ValueChanged

Invoked with the new value whenever the user taps the stepper.

Type: Action<double>?

public Action<double>? ValueChanged { get; set; }