Control.UseWaitCursor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether to use the wait cursor for the current control and all child controls.
public:
property bool UseWaitCursor { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(true)]
public bool UseWaitCursor { get; set; }
[<System.ComponentModel.Browsable(true)>]
member this.UseWaitCursor : bool with get, set
Public Property UseWaitCursor As Boolean
Property Value
true
to use the wait cursor for the current control and all child controls; otherwise, false
. The default is false
.
- Attributes
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.