Cursor.Current 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 cursor object that represents the mouse cursor.
public:
static property System::Windows::Forms::Cursor ^ Current { System::Windows::Forms::Cursor ^ get(); void set(System::Windows::Forms::Cursor ^ value); };
public static System.Windows.Forms.Cursor Current { get; set; }
public static System.Windows.Forms.Cursor? Current { get; set; }
static member Current : System.Windows.Forms.Cursor with get, set
Public Shared Property Current As Cursor
Property Value
A Cursor that represents the mouse cursor. The default is null
if the mouse cursor is not visible.
Remarks
Setting the Current property changes the cursor currently displayed. The application may or may not continue to listen for mouse events. To signal that the application should not respond to mouse events during a long-running operation, use the UseWaitCursor property. In most cases, however, it's better to use a background thread to manage a long-running operation, and leave your user interface accessible to the user. For more information on easily implementing a background task, see BackgroundWorker.