I have a kinect application and I want change the cursor for an image, but without affect the features like click, drag etc that works now.
I tried use this code, but its not the goal, because, the image appears, but I can't click, drag etc. Somebody have any ideas?
public void showImageInsteadCursor(){
form frm = new form();
picturebox pb = new picturebox() { image = image.fromfile(@"c:\users\user\desktop\img.bmp") };
frm.cursor = new cursor(((bitmap)pb.image).gethicon());
frm.windowstate = formwindowstate.maximized;
frm.transparencykey = frm.backcolor = system.drawing.color.turquoise;
frm.formborderstyle = formborderstyle.none;
frm.showdialog();
}