Skip to main content
.NET Framework Class Library
Control..::.UseWaitCursor Property

Gets or sets a value indicating whether to use the wait cursor for the current control and all child controls.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Syntax
<BrowsableAttribute(True)> _
Public Property UseWaitCursor As Boolean
[BrowsableAttribute(true)]
public bool UseWaitCursor { get; set; }
[BrowsableAttribute(true)]
public:
property bool UseWaitCursor {
	bool get ();
	void set (bool value);
}
[<BrowsableAttribute(true)>]
member UseWaitCursor : bool with get, set

Property Value

Type: System..::.Boolean
true to use the wait cursor for the current control and all child controls; otherwise, false. The default is false.
Remarks

Use a wait cursor whenever you perform an operation that takes a noticeable amount of time. However, note that operations that block the UI thread will also block a cursor change. Therefore, this property should only be used when performing time-consuming operations in another thread. To change the cursor globally and immediately, see the Current property.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.