Implemented interface member:
property
Maximum
Microsoft.Maui.IRange.Maximum
2 writes to Maximum
Microsoft.Maui.Controls (2)
Stepper\Stepper.cs (2)
65 Maximum = max; 71 Maximum = max;
6 references to Maximum
Microsoft.Maui.Controls (5)
Stepper\Stepper.cs (5)
13 /// <summary>Bindable property for <see cref="Maximum"/>.</summary> 14 public static readonly BindableProperty MaximumProperty = BindableProperty.Create(nameof(Maximum), typeof(double), typeof(Stepper), 100.0, 25 validateValue: (bindable, value) => (double)value < ((Stepper)bindable).Maximum, 29 stepper.Value = stepper.Value.Clamp((double)value, stepper.Maximum); 38 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;