windows - 如何让 Windows 8.1 知道我的 Delphi 应用程序想要支持 Per Monitor DPI?

标签 windows delphi windows-8.1 dpi delphi-xe6

我试图让 Windows 8.1 识别我一直试图构建的 Delphi XE6 应用程序(演示程序),并让它识别我的应用程序是 Per-Monitor DPI 感知的,这完全是通过 list 技术。 Delphi XE6(以及所有其他类似的 Delphi 最新版本)使得在项目选项中添加 list 变得容易,我已经这样做了。

这是我使用 MSDN 资源确定的 .manifest 内容。我怀疑它可能有点不正确。

如果你想尝试这个 list ,制作一个空的 VCL 应用程序,使用这个内容作为你的 list ,并添加代码(代码目前附在我对这个问题的回答中)。

<?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" >
  <!-- Per Monitor DPI Awareness in Windows 8.1 uses asmv3:application + asmv3:windowsSettings -->
  <asmv3:application>
    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
      <dpiAware>True</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>

  <!-- Dear Microsoft, Don't Lie to Me About What Version of Windows I am On -->
  <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
    <application>
      <!-- Windows Vista and Windows Server 2008 -->
      <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
      <!-- Windows 7 and Windows Server 2008 R2 -->
      <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
      <!-- Windows 8 and Windows Server 2012 -->
      <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
      <!-- Windows 8.1 and Windows Server 2012 R2 -->
      <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
    </application>
  </compatibility>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0"
        processorArchitecture="*"
        publicKeyToken="6595b64144ccf1df"
        language="*"
        />
    </dependentAssembly>
  </dependency>
</assembly>

有没有人让这个工作?我发现上面的内容没有被识别。如果我调用 SetProcessDPIAwareness(Process_Per_Monitor_DPI_Aware)首先,然后调用 GetProcessDPIAwareness(hProc,Awareness) , 我找回了必要的 Awareness = Process_Per_Monitor_DPI_Aware ,但我了解到这种方法存在潜在的缺点,因此我更喜欢仅使用 list 的方法。

如果我调用 GetProcessDPIAwareness(hProc,Awareness) ,我回来了`Awareness = Process_DPI_Unaware'。

我的另一个担忧是,在 MSDN 资源中,他们指定添加一个额外的 list 。然而,我正在使用 Delphi XE6 的 IDE 将一个且只有一个 list 链接到我的应用程序中的能力。我从来没有注意到添加任何额外的 list 与只有一个 list 曾经是一个问题,除了 Visual Studio 2010 中的 .manifest 管理系统可能是蹩脚的,这就是提示存在的原因,因此与其他 IDE 无关/语言。

在 Visual Studio 2013 中,项目选项中有一个复选框,但我没有 Visual Studio 2013,所以我无法检查工作 .manifest。

更新:

这是 list 的另一个镜头:

<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</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

上面的迷你 list 改变了应用程序的行为,但并不是我想要的那样。通过上面的小 list ,可以检测到旧的 Windows 8.0/Windows 7/Vista DPI 感知级别。

更新 2:

感谢雷米的想法。有趣的是,以下内容似乎足以允许应用程序启动。但是,将 SMI/2005 语法与上述语法混合会导致并排启动错误。您可以看到 Microsoft 一直在大量修改他们的 list 。请注意,以下内容实际上并没有解决我的问题,但它提供了另一种可能接近实际解决方案的“潜在基础形式”:

 <assembly xmlns="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0" >
  <application>
    <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2011/WindowsSettings">
      <dpiAware>true</dpiAware>
    </windowsSettings>
  </application>
</assembly>

更新 3:

CODE RED ALERT! 不要在任何 Delphi VCL 应用程序中使用以下操作系统兼容性标志: <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> .微软以我什至无法猜测的可怕方式破坏了鼠标捕获行为,破坏了窗口绘画。打开此标志会在我的应用程序中导致非常细微的错误,包括绘画问题、无法单击控件(由于鼠标捕获丢失,鼠标按下消息未到达控件)以及许多其他问题。

最佳答案

它记录在 MSDN 主题 Writing DPI-Aware Desktop and Win32 Applications 上:

Mark the application as per monitor-DPI aware by modifying the application manifest or by calling the SetProcessDpiAwarenessAPI. We recommend that you use the application manifest because that sets the DPI awareness level when the application is launched. Use the API only in the following cases:

  • Your code is in a dll that runs via rundll32.exe. This is a launch mechanism that does not support the application manifest.
  • You need to make complex run-time decisions based on OS version or other considerations. For example, if you need the application to be system-DPI aware on Windows 7 and dynamically aware on Windows 8.1, use the True/PM manifest setting.

If you use the SetProcessDpiAwareness method to set the DPI awareness level, you must call SetProcessDpiAwareness prior to any Win32API call that forces the system to begin virtualization.

DPI awareness manifest value, Description

False Sets the application to not DPI-aware.

True Sets the application to system DPI–aware.

Per-monitor On Windows 8.1, sets the application to per monitor-DPI aware. On Windows Vista through Windows 8, sets the application to not DPI–aware.

True/PM On Windows 8.1, sets the application to per monitor-DPI aware. On Windows Vista through Windows 8, sets the application to system-DPI aware.

您只需使用标准的 DPI 感知 list ,但指定 True/PMPer-monitor 而不是 True

同一主题给出了 DPI 感知 list ,如下所示:

<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</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

因此,将 True 替换为您选择的值。

关于windows - 如何让 Windows 8.1 知道我的 Delphi 应用程序想要支持 Per Monitor DPI?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26852150/

相关文章:

c - 在 C 中访问命令行的独立于平台的方法?

delphi - 如何将 VCL 框架添加到现有的 Delphi 项目中(或知道它是否已添加)

cygwin - -bash : _fzf_orig_completion_g++: bad substitution in Cygwin

windows-store-apps - 如何在已部署的 Windows 镜像上为所有用户旁加载 Windows 应用程序?

windows - 在 jboss 应用程序服务器中安装的 Appdynamics 问题

windows - Azure 应用服务上的 ASP.NET Core 2.1 Docker 容器的正确 Windows 基本镜像是什么

delphi - TSpeedButton 卡在向下外观中

delphi - ShellExecute 无法在 IDE 中工作,但可以在其他情况下工作

c# - 在 Windows 8 中使用 C# 设置菜单 Flyout 背景颜色

android - 混合应用程序能否针对 Windows 平板电脑/Surface