change cursor windows forms c# code example
Example 1: c# change cursor
// Set cursor as hourglass
Cursor.Current = Cursors.WaitCursor;
// Execute your time-intensive hashing code here...
// Set cursor as default arrow
Cursor.Current = Cursors.Default;
Example 2: how to make a custom cursor in windows forms c#
"name of control".Cursor = new System.Windows.Forms.Cursor(Properties.Resources."name of image".Handle);