问题
im trying to set a cursor. the width and the height of the cursor is bigger than 32 px. but it just scale it down to 32px when i set it.
any idea?
回答1:
If you're using the LoadCursor
function, then I think you'll always get scaled to the standard size.
Try using LoadImage with IMAGE_CURSOR
, a desired size of (0,0), and do not use the LR_DEFAULTSIZE
flag.
来源:https://stackoverflow.com/questions/3560710/c-set-cursor-size-over-32