Hide cursor

  • Thread starter Thread starter JMB
  • Start date Start date
J

JMB

How I can to hide cursor while application is running. I tryed .hide() but
turn showed when i push a button.

Sorry my english

Thank's
 
If you mean that you want to hide the busy cursor then you can do that by:

Cursor.Current = Cursors.Default;
 
Back
Top