-
Notifications
You must be signed in to change notification settings - Fork 20
Controls.BusyIndicator
mameolan edited this page May 17, 2020
·
1 revision
A control to provide a visual indicator when an application is busy.
Done. (Style and DataTemplate properties should be checked)
<Controls:BusyIndicator IsBusy="True" BusyContent="Message"/>
Type | Property Name | Description |
---|---|---|
bool | IsContentVisible | Gets or sets a value indicating whether the BusyContent is visible. |
bool | IsBusy | Gets or sets a value indicating whether the busy indicator should show. |
object | BusyContent | Gets or sets a value indicating the busy content to display to the user. |
DataTemplate | BusyContentTemplate | Gets or sets a value indicating the template to use for displaying the busy content to the user. |
TimeSpan | DisplayAfter | Gets or sets a value indicating how long to delay before displaying the busy content. |
IControl | FocusAfterBusy | Gets or sets a Control that should get the focus when the busy indicator disapears. |
IStyle | OverlayStyle | Gets or sets a value indicating the style to use for the overlay. |
IStyle | ProgressBarStyle | Gets or sets a value indicating the style to use for the progress bar. |