Implemented interface member:
property
IsRunning
Microsoft.Maui.IActivityIndicator.IsRunning
8 references to IsRunning
Microsoft.Maui.Controls (4)
ActivityIndicator\ActivityIndicator.cs (4)
13
/// <summary>Bindable property for <see cref="
IsRunning
"/>.</summary>
14
public static readonly BindableProperty IsRunningProperty = BindableProperty.Create(nameof(
IsRunning
), typeof(bool), typeof(ActivityIndicator), default(bool));
49
var debugText = DebuggerDisplayHelpers.GetDebugText(nameof(
IsRunning
),
IsRunning
);
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\ActivityIndicatorRenderer.cs (4)
20
if (_element?.
IsRunning
== true)
27
if (_element?.
IsRunning
== true)
89
if (Element.
IsRunning
)
97
if (Control != null && !Control.IsAnimating && Element != null && Element.
IsRunning
)