4

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"

9

3 Answers 3

6

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

Sign up to request clarification or add additional context in comments.

Comments

0

If you prefer the cursor to be completely unusable, then Cursor.Hide() won't fulfill your requirements, because the cursor is only hidden but still clickable. You'll need to add something like this to disable clicking as well.

Comments

-2

vb.net: Me.Cursor = Cursors.No c:.net: this.Cursor = Cursors.No

1 Comment

The "No" cursor is the crossed out circle symbol

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.