views:

1301

answers:

1

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

Any ideas?

+7  A: 

I knew this was a stupid question! Simply put

Cursor.Hide();

is all I needed in the forms constructor.

TK
are you sure about "this.Cursor" AFAIK you should use static Cursor class i.e. Cursor.Hide()
aku
You are correct ... a typo on my part it should be 'Cursor.Hide();' without the this.
TK