win7上检测操作系统文本大小
我想检测(通过 C++)用户选择的文本大小,即:
较小 - 100% 中 - 125% 更大 - 150%
看起来很简单,只是似乎找不到答案......
谢谢, 一个
I would like to detect (via c++) what the user has chosen for text size, i.e.:
Smaller - 100%
Medium - 125%
Larger - 150%
Seems like an easy one, just can't seem to find the answer....
thanks,
A
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MSDN 有关于 DPI 感知的全面参考,尽管它相当长。 正确的函数是GetDeviceCaps,使用LOGPIXELSX和LOGPIXELSY来确定每个维度的DPI。 (不保证这些内容相同。)GetDeviceCaps 的文档为 这里。
MSDN has a comprehensive reference on DPI awareness, although it's rather long. The correct function is GetDeviceCaps, using LOGPIXELSX and LOGPIXELSY to determine the DPI in each dimension. (These are not guaranteed to be the same.) Documentation for GetDeviceCaps is here.
这会更改显示设备的 DPI。使用 GetDeviceCaps()、LOGPIXELSX/Y。使用 CreateIC(L"DISPLAY", 0, 0, 0) 创建 DC。百分比值对应于每英寸 96、120 和 144 点。
This changes the DPI for the DISPLAY device. Use GetDeviceCaps(), LOGPIXELSX/Y. Use CreateIC(L"DISPLAY", 0, 0, 0) to create the DC. The percentage value corresponds to 96, 120 and 144 dots-per-inch.