Mouse.SetCursor(Cursor) Method

Definition

Sets the mouse pointer to the specified Cursor.

public:
 static bool SetCursor(System::Windows::Input::Cursor ^ cursor);
public static bool SetCursor (System.Windows.Input.Cursor cursor);
static member SetCursor : System.Windows.Input.Cursor -> bool
Public Shared Function SetCursor (cursor As Cursor) As Boolean

Parameters

cursor
Cursor

The cursor to set the mouse pointer to.

Returns

true, if the cursor was set; otherwise, false.

Remarks

The cursor being set does not apply to any particular element, but rather it applies to the whole application. So, if after setting the cursor the mouse pointer moves over an object which sets the cursor, the cursor will be changed again.

To force the mouse pointer to a specific Cursor and to force this Cursor on all elements, set the OverrideCursor property.

To set the cursor on a specific element, use the Cursor property on either FrameworkElement or FrameworkContentElement. For more information on the base elements, see the Base Elements Overview.

Applies to

See also