Implemented interface member:
property
Minimum
Microsoft.Maui.IRange.Minimum
2 writes to Minimum
Microsoft.Maui.Controls (2)
Stepper\Stepper.cs (2)
66
Minimum
= min;
70
Minimum
= min;
7 references to Minimum
Microsoft.Maui.Controls (6)
Stepper\Stepper.cs (6)
15
validateValue: (bindable, value) => (double)value > ((Stepper)bindable).
Minimum
,
19
stepper.Value = stepper.Value.Clamp(stepper.
Minimum
, (double)value);
23
/// <summary>Bindable property for <see cref="
Minimum
"/>.</summary>
24
public static readonly BindableProperty MinimumProperty = BindableProperty.Create(nameof(
Minimum
), typeof(double), typeof(Stepper), 0.0,
38
return Math.Round(((double)value), stepper.digits).Clamp(stepper.
Minimum
, stepper.Maximum);
63
if (max >
Minimum
)
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\StepperRenderer.cs (1)
92
Control.MinimumValue = Element.
Minimum
;