How to determine cursor size in WPF?

Windows Forms has a Cursor.Size property that allows you to get the size (width / height) of the cursor object. How to define this information in WPF?

+4
source share
1 answer

The SystemParameters class provides CursorWidth and CursorHeight properties.

+13
source

All Articles