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?

link|improve this question

62% accept rate
2  
yes it is possible but it is an absolutely bad idea... why do you want to do that ? – Yahia Feb 11 at 9:59
Making a screensaver with a transparent form. The mouse is only registered as 'over' the form if it is on a visible part. I wish to hide it no matter where it is. – YoshieMaster Feb 11 at 10:01
Ah, ok. I'm following this tutorial: link but it is for a screensaver that fills the whole screen, not just a part of it. (And especially not a semi-transparent form!) – YoshieMaster Feb 11 at 10:08
Uh, Cursor.Hide works 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:10
1  
A transparent form is a strange thing to use for a screensaver. The whole point of a screensaver is that it covers the screen. The function that you'd use from user32.dll is ShowCursor (and passing FALSE as the parameter), which is not-so-coincidentally exactly what the Cursor.Hide method calls. – Cody Gray Feb 11 at 10:16
show 11 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.