Implemented interface member:
property
Maximum
Microsoft.Maui.IRange.Maximum
2 writes to Maximum
Microsoft.Maui.Controls (2)
Stepper\Stepper.cs (2)
63
Maximum
= max;
69
Maximum
= max;
6 references to Maximum
Microsoft.Maui.Controls (5)
Stepper\Stepper.cs (5)
11
/// <summary>Bindable property for <see cref="
Maximum
"/>.</summary>
12
public static readonly BindableProperty MaximumProperty = BindableProperty.Create(nameof(
Maximum
), typeof(double), typeof(Stepper), 100.0,
23
validateValue: (bindable, value) => (double)value < ((Stepper)bindable).
Maximum
,
27
stepper.Value = stepper.Value.Clamp((double)value, stepper.
Maximum
);
36
return Math.Round(((double)value), stepper.digits).Clamp(stepper.Minimum, stepper.
Maximum
);
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\StepperRenderer.cs (1)
86
Control.MaximumValue = Element.
Maximum
;