Implemented interface member:
property
Progress
Microsoft.Maui.IProgress.Progress
1 write to Progress
Microsoft.Maui.Controls (1)
ProgressBar\ProgressBar.cs (1)
48 this.Animate("Progress", d => Progress = d, Progress, value, length: length, easing: easing, finished: (d, finished) => tcs.SetResult(finished));
5 references to Progress
Microsoft.Maui.Controls (4)
ProgressBar\ProgressBar.cs (4)
18 /// <summary>Bindable property for <see cref="Progress"/>.</summary> 19 public static readonly BindableProperty ProgressProperty = BindableProperty.Create(nameof(Progress), typeof(double), typeof(ProgressBar), 0d, coerceValue: (bo, v) => ((double)v).Clamp(0, 1)); 48 this.Animate("Progress", d => Progress = d, Progress, value, length: length, easing: easing, finished: (d, finished) => tcs.SetResult(finished)); 61 return $"Progress = {Progress}, {base.GetDebuggerDisplay()}";
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ProgressBarRenderer.cs (1)
71 Control.Progress = (float)Element.Progress;