标签:ref 电脑 ima 分辨率 for logs 应用 程序 sse
CefSharp第一个坑:在高分辨率电脑上,显示比例非100%,比如125%或200%时,有两个异常:控件边缘出现空隙,不能完全填充;按键等交互控件无法点击,有偏移。
125%的效果:
100%的效果:
(1)手动将系统显示比例调整回100%。也可通过程序配置来完成:添加应用程序清单文件(app.manifest)
<application xmlns="urn:schemas-microsoft-com:asm.v3"> <windowsSettings> <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware> </windowsSettings> </application>
(2)使用CEF自带的方法:
Cef.EnableHighDPISupport();
https://www.cnblogs.com/guolixiucai/p/7081975.html
https://github.com/cefsharp/CefSharp/blob/master/CefSharp.WinForms.Example/Program.cs
标签:ref 电脑 ima 分辨率 for logs 应用 程序 sse
原文地址:https://www.cnblogs.com/liweis/p/12307527.html