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?
I assume you are in WPF. You can use:
Mouse.OverrideCursor = Cursors.None;
to get a transparent cursor for your whole application.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With