Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

CoreWindow.PointerCursor Property

Definition

Namespace:
Windows.UI.Core

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 the pointer cursor used by the app.

public:
 property CoreCursor ^ PointerCursor { CoreCursor ^ get(); void set(CoreCursor ^ value); };
CoreCursor PointerCursor();

void PointerCursor(CoreCursor value);
public CoreCursor PointerCursor { get; set; }
var coreCursor = coreWindow.pointerCursor;
coreWindow.pointerCursor = coreCursor;
Public Property PointerCursor As CoreCursor

Property Value

The pointer cursor used by the app.

Implements

Remarks

Some applications, such as games, need to track relative mouse movements for specific functionality (for example, a virtual trackball or the viewing camera) and don't use the system cursor or absolute screen coordinates. For details on hiding the mouse cursor and ignoring absolute mouse data, see Relative mouse movement and CoreWindow.

Applies to

See also


Feedback

Was this page helpful?