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