예제 #1
0
 public MouseCursor(Bitmap bitmap, IntVector2 hotSpot)
 {
     implementation = new MouseCursorImplementation(bitmap, hotSpot);
 }
예제 #2
0
        private static MouseCursor FromNSCursor(NSCursor cursor)
        {
            var implementation = new MouseCursorImplementation(cursor);

            return(new MouseCursor(implementation));
        }
예제 #3
0
 internal MouseCursor(MouseCursorImplementation implementation)
 {
     this.implementation = implementation;
 }