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?
I assume you are in WPF. You can use:
Mouse.OverrideCursor = Cursors.None;
to get a transparent cursor for your entire application.