Control.UseWaitCursor Property
Definition
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; }
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.