C# Winforms - change cursor icon of mouse

66,691

Solution 1

Try to do the following:

System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor;

More information is available at Cursors Class documentation

Cursor class doesn't support GIF files or animated cursors (.ANI). You can load a custom cursor doing

Cursor.Current = new Cursor("C:\\ic.cur");

Maybe you can convert yout GIF file to cursor format using a tool like Microangelo. In addition, there is another thread related to it.

How do you convert a GIF into a CUR file?

Solution 2

I have the answer for a picturebox

Picturebox1.cursor = new cursor(Properties.Resources.CURSOR NAME.GetHicon());

Solution 3

There is also simple pure-C# way:

System.Windows.Forms.Cursor cursor = null;      
var info = System.Windows.Application.GetResourceStream(
        new Uri(@"pack://application:,,,/Resources/MyCursor.cur"));
cursor = new System.Windows.Forms.Cursor(info.Stream);

The MyCursor.cur must be included as Resource in your project.

Share:
66,691
saman
Author by

saman

Updated on December 23, 2021

Comments

  • saman
    saman over 2 years

    How to change cursor icon to the 'busy icon' usually shown on the desktop? How can i set Animated files (.gif,.ani) instead of cursor ?