Windows窗体错误解析VB.NET

前端之家收集整理的这篇文章主要介绍了Windows窗体错误解析VB.NET前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to configure an app to run correctly on a machine with a high DPI setting (e.g. 150%)?                                    4个
当我启动我的应用程序时,结果如下:

enter image description here

我也尝试使用地铁gui,但没有…

另外我的问题是,我应该设置什么样的视觉工作室选项来获得winform的正常(不模糊)分辨率?

解决方法

这是因为您的应用程序不支持DPI,并且您的显示设置未设置为默认缩放

最简单的修复可能是在应用程序清单中将dpiAware设置为true(项目属性>应用程序选项卡>查看Windows设置按钮).

有关详细信息,请参阅此答案:How to configure an app to run correctly on a machine with a high DPI setting (e.g. 150%)?

有关详细信息,请参阅此文章Why does a High DPI Setting Make My Application Look Fuzzy and Have Clipped Text?

另见本文Writing DPI-Aware Desktop and Win32 Applications

猜你在找的Windows相关文章