Hide cursor...

You mean when it is inside your application's window?
Code:
System.Windows.Forms.Cursor.Hide();

Hide() is a static method on the Cursor class. This code will hide the cursor within your application, presumably for all windows in the application. Call Cursor.Show() to display it again.
 
Back
Top