Version

Configuring Delayed Display (xamBusyIndicator)

Topic Overview

Purpose

This topic explains how to configure the delay before displaying the xamBusyIndicator™ control.

Required background

The following topics are prerequisites to understanding this topic:

Topic Purpose

This topic explains the features supported by the control from developer perspective.

This topic provides an overview of the visual elements of the control.

In this topic

This topic contains the following sections:

Configuring Delay in Displaying

Overview

Use the XamBusyIndicator DisplayAfter property to set a TimeSpan delay in displaying the xamBusyIndicator control.

By default, the initial value of the DisplayAfter property is 1 millisecond.

Property settings

The following table maps the desired configuration to the property settings that manage it.

In order to: Use this property: And set it to:

Configure the delay in displaying the control

TimeSpan

Example

Following is the code that implements this example.

In XAML:

<ig:XamBusyIndicator Name="BusyIndicator" IsBusy="True" DisplayAfter="0:0:05" />

In C#:

BusyIndicator.DisplayAfter = TimeSpan.FromSeconds(5);

In Visual Basic:

BusyIndicator.DisplayAfter = TimeSpan.FromSeconds(5)

Related Topics

The following topics provide additional information related to this topic.

Topic Purpose

This topic explains how to display the xamBusyIndicator control.

This topic explains how to configure the xamBusyIndicator busy content.

This topic explains how to configure explicitly which UIElement receives the focus when the xamBusyIndicator is no longer active.

This topic explains how to configure the xamBusyIndicator control to display determine progress.

This topic explains how to customize the xamBusyIndicator overlay style.

This topic explains how to customize the xamBusyIndicator control default animations brushes.