Scaling a Cursor in Java
I want to scale the cursor but the Cursor class in Java API does not have any method to scale a cursor. I need to scale the cursor,开发者_JAVA技巧 please suggest some method or code in Java to do this.
Thanks
You could create a custom cursor with Toolkit's
createCustomCursor(Image cursor, Point hotSpot, String name)
method. This could be a larger image.
精彩评论