8 references to IsBusy
Microsoft.Maui.Controls (8)
Page\Page.cs (8)
29
/// The identifier used by the internal messaging system to set <see cref="
IsBusy
"/>.
57
/// <summary>Bindable property for <see cref="
IsBusy
"/>.</summary>
58
public static readonly BindableProperty IsBusyProperty = BindableProperty.Create(nameof(
IsBusy
), typeof(bool), typeof(Page), false, propertyChanged: (bo, o, n) => ((Page)bo).OnPageBusyChanged());
128
/// <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>
679
if (
IsBusy
)
711
if (
IsBusy
)
775
MessagingCenter.Send(this, BusySetSignalName,
IsBusy
);