Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# How can I hide the cursor in a winforms app?

Im developing a touchscreen app and I need to hide the cursor whenever it is within the main Form.

Any ideas?

like image 571
TK. Avatar asked Jan 19 '09 11:01

TK.


1 Answers

I knew this was a stupid question! Simply put

Cursor.Hide();

is all I needed in the forms constructor.

like image 169
TK. Avatar answered Sep 21 '22 13:09

TK.