更改"覆盖高DPI缩放行为"在c#中

时间:2017-08-18 15:04:26

标签: c# registry dpi cefsharp

我们在WinForm(CefSharp控件)中有一个控件,当用户屏幕在Windows上设置为125%时,它会受到图形工件的影响。它不仅仅是控制,独立Chrome在某种程度上做到了。我们能够修复工件的唯一方法是更改​​下图所示的exe设置。有没有办法在代码中更改它?

enter image description here

编辑:这不是重复。制作应用程序DPI意识与DPI缩放比较重要

1 个答案:

答案 0 :(得分:1)

方法1.如何使用注册表替代DPI高缩放比例(复选框)

启动注册表编辑器并导航到该键:

HKEY_CURRENT_USER\­Software\­Microsoft\­Windows NT\­CurrentVersion\­AppCompatFlags\­Layers

现在添加一个字符串值(REG_SZ),其名称是应用程序可执行文件的完整路径,并且值为HIGHDPIAWARE

代码示例:

string appPath = string.Format(@"{0}\{1}.exe", My.Application.Info.DirectoryPath, My.Application.Info.AssemblyName);       
My.Computer.Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers", appPath, "HIGHDPIAWARE");

了解详情: High DPI Settings in Windows


方法2.如何更改程序集清单中的DPI感知?

  

支持DPI的应用程序不受操作系统的影响。这样的应用程序可以使自己适应屏幕的实际DPI,并提供更好的视觉体验。

<dpiAware>元素添加到manifest code并将其值设置为true

<?xml version="1.0" encoding="utf-8"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
    <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
    <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
        <security>
            <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
                <requestedExecutionLevel level="asInvoker" uiAccess="false" />
            </requestedPrivileges>
        </security>
    </trustInfo>
    <asmv3:application>
        <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
             <dpiAware>true</dpiAware> 
        </asmv3:windowsSettings>
    </asmv3:application>
</assembly>

其他资源:

  1. High DPI Support

  2. High DPI Desktop Application Development on Windows(也是Application Manifests

  3. DPI Awareness - Unaware in one Release, System Aware in the Other [duplicate]

  4. Writing High-DPI Aware Windows Apps

  5. Writing DPI-Aware Desktop and Win32 Applications