现在的电脑分辨率很高,Win10很人性化的提供了屏幕缩放功能,一般默认放大比例为150%、200%等,如下图所示,在这种情况下,我们用VS开发的Winform窗体显示就有问题了,文字和图像都变得模糊了
项目添加app.manifest清单文件
取消清单文件中的注释
<!-- 指示该应用程序可以感知 DPI 且 Windows 在 DPI 较高时将不会对其进行 自动缩放。Windows Presentation Foundation (WPF)应用程序自动感知 DPI,无需 选择加入。选择加入此设置的 Windows 窗体应用程序(目标设定为 .NET Framework 4.6 )还应 在其 app.config 中将 "EnableWindowsFormsHighDpiAutoResizing" 设置设置为 "true"。--> <application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> </windowsSettings> </application>
参考:微软官方也推荐此方案参考 Setting the default DPI awareness for a process