lunes, 24 de noviembre de 2014

How can I make the cursor turn to the wait cursor

How can I make the cursor turn to the wait cursor

You can use Cursor.Current.
// Set cursor as hourglass
Cursor.Current = Cursors.WaitCursor;

// Execute your time-intensive hashing code here...

// Set cursor as default arrow
Cursor.Current = Cursors.Default;

No hay comentarios:

Publicar un comentario