I have an application which I\'m interested in eventually porting to mono so I\'m trying to avoid using p/invoke\'s to accomplish this task.
I would like to load a c
I was reference the post: How can i replace cursor with bitmap in winform
You can create a Array of static cursor and use Timer to change it
to make dynamic mouse cursor effect!
Create static cursor from bitmap is so simply and without using interop:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Icon icon = this.Icon;
Bitmap bmp = icon.ToBitmap();
Cursor cur = new Cursor(bmp.GetHicon());
this.Cursor = cur;
}
}