如何在 VC++/MFC 应用程序中根据当前 DPI 设置缩放字体大小?

发布于 2024-11-26 05:50:28 字数 133 浏览 1 评论 0 原文

如何在 VC++/MFC 应用程序中根据当前 DPI 设置缩放字体大小?

截至目前,当我将 DPI 从 100% 改为 150% 时,字体大小保持不变,尽管图标会根据当前 dpi 缩小。.

请建议解决上述问题的最佳方法。

How to scale font sizes based on current DPI settings in VC++/MFC applications ?

As of now when I change the DPI from 100% yo 150% the font sizes remain the same, although the icons will scale down based on the current dpi ..

Please suggest the best way for above problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

灼痛 2024-12-03 05:50:28

在 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.

赠意 2024-12-03 05:50:28

通过在 DLU 中指定文本和控件大小。不过,默认情况下会发生这种情况,因此我假设您正在动态生成对话框或从基于内存的 DLGTEMPLATE 生成对话框。如果你,你(请原谅我的法语)完蛋了,因为你必须费力地将 DLU 转换为像素,这是一个非常痛苦和乏味的过程。请阅读以下知识库文章:

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:

凉城凉梦凉人心 2024-12-03 05:50:28

不要使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文