Page.IsBusy Property

Definition

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); };
public bool IsBusy { get; set; }
member this.IsBusy : bool with get, set
Public Property IsBusy As Boolean

Property Value

A bool indicating if the Page is busy or not.

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