I have a fullscreen c# application and I want that the cursor won’t be visible while the user is in the application. (Controlling the application is solely with the keyboard)
Any one knows how to do such a thing?
PS : I prefer that the cursor will be completely unusable rather than “invisible” or “transparent”
I think the only option you’ll have is to hide the cursor from what I can remember in the past
Cursor.Hide()I had to do something similar to this in a touchscreen app in the past