In a UserControl I want to change the mouse cursor from the arrow, to a hand icon. What I currently do is this:
UserControl
this.Cursor = Cursors.Hand;
Have you tried System.Windows.Forms.Cursor curs = new System.Windows.Forms.Cursor(file_name); ?
System.Windows.Forms.Cursor curs = new System.Windows.Forms.Cursor(file_name);