Pelicans Are Evil

12 June, 2008
 

Changing mouse cursors in .NET

This one is very easy to achieve!


Cursor = Cursors.WaitCursor;
Cursor = Cursors.AppStarting;
Cursor = Cursors.Hand;
Cursor = Cursors.Default;

There's a lot to choose from. Cursors are a simple way to show what your application is doing (especially if there's a lot of work going on in the background, but no other visual representation of what's happening).

Labels: ,