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