Share via


Page.IsBusy Property

Definition

Caution

Page.IsBusy has been deprecated and will be removed in .NET 11

Gets or sets the page busy state. This will cause the platform specific global activity indicator to show a busy state. This is a bindable property.

public:
 property bool IsBusy { bool get(); void set(bool value); };
[System.Obsolete("Page.IsBusy has been deprecated and will be removed in .NET 11")]
public bool IsBusy { get; set; }
public bool IsBusy { get; set; }
[<System.Obsolete("Page.IsBusy has been deprecated and will be removed in .NET 11")>]
member this.IsBusy : bool with get, set
member this.IsBusy : bool with get, set
Public Property IsBusy As Boolean

Property Value

Attributes

Remarks

Setting IsBusy to true on multiple pages at once will cause the global activity indicator to run until all are set back to false. It is the developer's responsibility to unset the IsBusy flag before cleaning up a page.

Applies to