本文告诉大家一个坑,在 .NET Core 3.1.19 版本,因为 WPF 框架的处理不当,而让应用没有感知 DPI 而不会跟随缩放,让文本过小的问题。本文将告诉大家解决方法和原因
最佳解决方法:升级 .NET Core 版本即可
其次的解决方法是在 App 的启动方法添加如下代码
代码语言:javascript复制public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
SetProcessDPIAware();
base.OnStartup(e);
}
[DllImport("user32.dll", SetLastError = true)]
private static extern bool SetProcessDPIAware();
}
特别感谢 ChristophHornung 提供的如上方法
核心原因是因为 这段代码 执行时机问题,没有足够早执行。为什么会有这个问题?原因是在更换 module initializer 进行模块初始化的锅,对这么大的框架来说,任何的更改也许都在挖坑
详细请参阅如下内容:
- [release/3.1] Application scaling regression. Revert ildasm/ilasm tools to 4.6.2 to fix module initializer injection regression. by ryalanms · Pull Request #5377 · dotnet/wpf
- Application not scaled with .NET Core 3.1.19 · Issue #5375 · dotnet/wpf
- Application window is now small with very small text · Issue #5472 · dotnet/wpf