Is it possible to create a cursor from an image and have it be semi-transparent?
I\'m currently taking a custom image and overylaying the mouse cursor image. It would b
that is very easy, I don't use API.
the code is
Bitmap img = new Bitmap(new Bitmap(@"image.png"), 30, 30); //this is the size of cursor
Icon icono = Icon.FromHandle(img.GetHicon()); //create the Icon object
Cursor = new Cursor(icono.Handle); //the icon Object has the stream to create a Cursor.
I hope that is your solution