I select a Custom .cur file for my program like this:
Assembly asm = Assembly.GetExecutingAssembly();
using (Stream resStream = asm.GetManifestResourceStream("Pie_X.hand.cur"))
{
HandCursor = new Cursor(resStream);
resStream.Close();
}
Canvas.Cursor = HandCursor;
I have checked it in the Resource Editor and it is in full color, but in the program it appears all black. How can I fix this so that it appears in color?