Implemented interface member:
property
Progress
Microsoft.Maui.IProgress.Progress
1 write to Progress
Microsoft.Maui.Controls (1)
ProgressBar\ProgressBar.cs (1)
46
this.Animate("Progress", d =>
Progress
= d, Progress, value, length: length, easing: easing, finished: (d, finished) => tcs.SetResult(finished));
3 references to Progress
Microsoft.Maui.Controls (3)
ProgressBar\ProgressBar.cs (3)
16
/// <summary>Bindable property for <see cref="
Progress
"/>.</summary>
17
public static readonly BindableProperty ProgressProperty = BindableProperty.Create(nameof(
Progress
), typeof(double), typeof(ProgressBar), 0d, coerceValue: (bo, v) => ((double)v).Clamp(0, 1));
46
this.Animate("Progress", d => Progress = d,
Progress
, value, length: length, easing: easing, finished: (d, finished) => tcs.SetResult(finished));