如何在 VC++/MFC 应用程序中根据当前 DPI 设置缩放字体大小?
如何在 VC++/MFC 应用程序中根据当前 DPI 设置缩放字体大小?
截至目前,当我将 DPI 从 100% 改为 150% 时,字体大小保持不变,尽管图标会根据当前 dpi 缩小。.
请建议解决上述问题的最佳方法。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 Windows Vista 和 7 中,操作系统会尝试对程序隐藏 DPI,并在幕后进行调整。如果您希望程序对 DPI 更改做出正确反应,则必须遵循 Microsoft 标题为 创建 DPI 感知应用程序。
In Windows Vista and 7, the OS tries to hide the DPI from your program and does adjustments behind the scenes. If you want your program to react properly to DPI changes you must follow the guidelines from Microsoft titled Creating a DPI-Aware Application.
通过在 DLU 中指定文本和控件大小。不过,默认情况下会发生这种情况,因此我假设您正在动态生成对话框或从基于内存的 DLGTEMPLATE 生成对话框。如果你,你(请原谅我的法语)完蛋了,因为你必须费力地将 DLU 转换为像素,这是一个非常痛苦和乏味的过程。请阅读以下知识库文章:
http://support。 microsoft.com/default.aspx?scid=kb;en-us;125681
http://support.microsoft.com/default.aspx?scid=kb;en-us;145994
By specifying the text and control sizes in DLU's. That happens by default though, so I assume you are generating dialogs dynamically or from a memory-based DLGTEMPLATE. If you, you're (pardon my French) screwed, because you'll have to muck about with converting DLU's to pixels, a very painful and tedious process. Read the following KB articles:
http://support.microsoft.com/default.aspx?scid=kb;en-us;125681
http://support.microsoft.com/default.aspx?scid=kb;en-us;145994
不要使用 DPI 进行字体缩放。相反,请使用用户在控制面板的“外观”部分中配置的设置。
您可能还需要考虑仅为您的应用程序配置字体大小。
Don't use DPI for font scaling. Instead, use the settings the user has configured in the "Appearance" section of Control Panel.
You might also want to consider making the font size configurable for just your application.