Implemented interface member:
property
Value
Microsoft.Maui.IRange.Value
3 writes to Value
Microsoft.Maui.Controls (3)
Stepper\Stepper.cs (3)
19
stepper.
Value
= stepper.Value.Clamp(stepper.Minimum, (double)value);
29
stepper.
Value
= stepper.Value.Clamp((double)value, stepper.Maximum);
75
Value
= val.Clamp(min, max);
7 references to Value
Microsoft.Maui.Controls (5)
Stepper\Stepper.cs (5)
19
stepper.Value = stepper.
Value
.Clamp(stepper.Minimum, (double)value);
29
stepper.Value = stepper.
Value
.Clamp((double)value, stepper.Maximum);
33
/// <summary>Bindable property for <see cref="
Value
"/>.</summary>
34
public static readonly BindableProperty ValueProperty = BindableProperty.Create(nameof(
Value
), typeof(double), typeof(Stepper), 0.0, BindingMode.TwoWay,
115
return $"{base.GetDebuggerDisplay()}, Value = {
Value
}";
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\StepperRenderer.cs (2)
98
if (Control.Value != Element.
Value
)
99
Control.Value = Element.
Value
;