从Delphi VCL应用程序

时间:2018-02-22 09:14:37

标签: delphi delphi-10.2-tokyo highdpi

在我的应用程序中正确处理DPI更改的努力中,我使用以下代码来读取当前的缩放因子:

TYPE TZoom = BYTE;

FUNCTION OldStyleGetDpiForSystem : TZoom; cdecl;
  VAR
    DC          : HDC;
    X,Y,Z       : LongWord;

  BEGIN
    DC:=GetDC(0);
    TRY
      X:=GetDeviceCaps(DC,LOGPIXELSX);
      Y:=GetDeviceCaps(DC,LOGPIXELSY)
    FINALLY
      ReleaseDC(0,DC)
    END;
    IF X>Y THEN Result:=X ELSE Result:=Y
  END;

FUNCTION GetDpiForSystem : TZoom;
  TYPE
    GetDpiForSystemFunc = FUNCTION : TZoom; cdecl;

  CONST
    GetDpiForSystem     : GetDpiForSystemFunc = NIL;

  BEGIN
    IF NOT Assigned(GetDpiForSystem) THEN BEGIN
      // Try to use official method (available from Windows 10, version 1607 [desktop apps only] and on)
      GetDpiForSystem:=GetProcAddress(LoadLibrary('USER32.DLL'),'GetDpiForSystem');
      // If not found, then use fall-back method with GetDeviceCaps of DeskTop
      IF NOT Assigned(GetDpiForSystem) THEN GetDpiForSystem:=OldStyleGetDpiForSystem
      // In any case, only determine method once, but call the method every time, as the DPI can change
      // while the application is running
    END;
    Result:=ROUND(GetDpiForSystem/USER_DEFAULT_SCREEN_DPI*100.0)
  END;

FUNCTION WindowsScaleFactor : TZoom;
  BEGIN
    Result:=GetDpiForSystem
  END;

我的问题是,无论我在Windows(Windows 10)中设置了什么设置,这总是返回100(96 dpi)。

我已经使用默认项目设置编译了我的应用程序(即清单文件自动生成,标记包括:启用运行时主题和启用高DPI)。

我也试过关闭"启用高DPI"然后在应用程序中手动启用它(但是当我尝试时出现错误,这表明已经设置了DPI模式,但这可能是另一个时间的另一个问题。)

任何人都可以指导我一个可以让我可靠地读取Windows中设置的当前 DPI比例因子的方向吗?我还需要响应DPI更改,但似乎无法拦截WM_DPICHANGED消息。我应该在哪里拦截此消息?在应用程序级别还是在表单级别?

要重现我的测试设置,请在其上创建一个空的VCL应用程序,其中包含一个名为Button1的按钮。在FormCreate事件中,输入以下代码:

procedure TForm14.FormCreate(Sender: TObject);
begin
  Button1.Caption:=IntToStr(WindowsScaleFactor)
end;

将Button1.OnClick事件附加到FormCreate方法,以便在启动时初始化按钮标题,并在每次单击时刷新。

然后运行该应用程序。按钮标题应该从100开始读取(如果您以100%缩放运行)。然后尝试在Windows中更改缩放并单击按钮。 更改为您选择的值,但(在我的电脑上)它仍会返回100%。

清单(从编译的.EXE中提取)如下:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  <asmv3:application>
    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
      <dpiAware>True/PM</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        publicKeyToken="6595b64144ccf1df"
        language="*"
        processorArchitecture="*"/>
    </dependentAssembly>
  </dependency>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel
          level="asInvoker"
          uiAccess="false"
        />
        </requestedPrivileges>
    </security>
  </trustInfo>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
        <application>
                <!--The ID below indicates app support for Windows Vista -->
                <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
                <!--The ID below indicates app support for Windows 7 -->
                <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
                <!--The ID below indicates app support for Windows 8 -->
                <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
                <!--The ID below indicates app support for Windows 8.1 -->
                <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
                <!--The ID below indicates app support for Windows 10 -->
                <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
        </application>
</compatibility>
</assembly>

2 个答案:

答案 0 :(得分:2)

我建议你先阅读这篇博文

dpi awareness in vcl applications

您可以通过为TForm.OnBeforeMonitorDPIChanged和TForm.OnAfterMonitorDPIChanged设置事件处理程序来响应dpi更改

procedure FormBeforeMonitorDpiChanged(Sender: TObject; OldDPI, NewDPI: Integer);
procedure FormAfterMonitorDpiChanged(Sender: TObject; OldDPI, NewDPI: Integer);

事件参数将告诉您新的DPI和旧DPI。

您的清单设置正确无误。

答案 1 :(得分:0)

在VCL应用程序中,您可以从每个TControl检索表单中的比例因子。

procedure TfrmMain.FormShow(Sender: TObject);
var
 currentScaleFactor : Single;
begin
 currentScaleFactor := TControl(btnDoResize).ScaleFactor;
 lblScaleFator.Caption := 'Scalefactor: ' + currentScaleFactor.ToString;
end;