8 references to IsBusy
Microsoft.Maui.Controls (8)
Page\Page.cs (8)
27
/// The identifier used by the internal messaging system to set <see cref="
IsBusy
"/>.
55
/// <summary>Bindable property for <see cref="
IsBusy
"/>.</summary>
56
public static readonly BindableProperty IsBusyProperty = BindableProperty.Create(nameof(
IsBusy
), typeof(bool), typeof(Page), false, propertyChanged: (bo, o, n) => ((Page)bo).OnPageBusyChanged());
126
/// <para>Setting <see cref="
IsBusy
"/> to <see langword="true"/> on multiple pages at once will cause the global activity indicator to run until all are set back to <see langword="false"/>. It is the developer's responsibility to unset the <see cref="
IsBusy
"/> flag before cleaning up a page.</para>
677
if (
IsBusy
)
709
if (
IsBusy
)
773
MessagingCenter.Send(this, BusySetSignalName,
IsBusy
);