Hide cursor everywhere

I am using C # and want to hide the cursor globally. I can use Cursor.Hide () to hide the cursor when it is above my application, but I want to hide it completely, no matter where it is. Is it possible?

+5
source share
1 answer

I assume you are in WPF. You can use:

Mouse.OverrideCursor = Cursors.None;

to get a transparent cursor for your entire application.

+5
source

All Articles