I'm using C# and wish to hide the cursor globally. I can use Cursor.Hide() to hide the cursor while it is over my application, but I want to hide it completely, no matter where it is. Is this possible?
|
show 11 more comments
feedback
|
Cursor.Hideworks just fine for a screensaver because with a screensaver, your app is covering the whole screen. Hiding the cursor when it's over your app is exactly what you need. – Cody Gray Feb 11 at 10:10ShowCursor(and passingFALSEas the parameter), which is not-so-coincidentally exactly what theCursor.Hidemethod calls. – Cody Gray Feb 11 at 10:16