Increase Cursor Size on Entire Desktop

て烟熏妆下的殇ゞ 提交于 2019-12-02 09:50:32

Any solution to this is going to get really hairy because of two things: 1. Any application can change the cursor to anything else on its own 2. Cursors are at most 32x32 pixels

If an application changes the cursor to something that is 32x32 pixels, there's no way to make that any larger.

The Extra Large cursors are just just using more of the 32x32 pixels a cursor can use. The default ones are just using the top-left more-or-less quadrant of the 32x32.

You might be able to constantly Retrieve the current cursor using http://msdn.microsoft.com/en-us/library/windows/desktop/ms648388(v=vs.85).aspx

and then paint ontop of all windows that cursor doubled in size by stretching the image, then set the cursor to some empty cursor file. This is horribly hacky and will likely cause tons of flickering and compatibility problems.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!