强制 DPI 在 WPF 中进行测试

发布于 2024-10-20 09:20:37 字数 207 浏览 1 评论 0原文

有没有什么方法可以让 WPF 应用程序认为它正在以特定的 DPI 运行?

我想在不同的 DPI 级别(96、120、144、192)下测试我的程序,而不更改系统设置(这需要在 Windows 7 下注销/登录)。

我可以手动设置1个DIU的大小吗? (在 96 DPI 下,1 DIU = 1 像素。我想将 1 DIU 设置为 1.25 像素以模拟 120 DPI。)

Is there any way to trick a WPF application into thinking that it is running at a certain DPI?

I'd like to test my program at various DPI levels (96, 120, 144, 192) without changing the system setting (which requires a log-out/in under Windows 7).

Can I manually set the size of 1 DIU? (At 96 DPI, 1 DIU = 1 pixel. I'd like to set 1 DIU to 1.25 pixels to imitate 120 DPI.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

删除→记忆 2024-10-27 09:20:37

如果您对最外面的容器进行 ScaleTransform,您也许能够执行您想要的操作。您只需要计算当前 dpi 和目标 dpi 之间的差异并相应地设置比例。

另一种选择是使用类似 http://research.microsoft.com/en- us/projects/detours/ 覆盖提供设备 dpi 的 Windows API 方法。我怀疑你会想去那里。

You might be able to do what you want if you ScaleTransform the outtermost container. You'd just need to calculate the different between the current dpi and the target dpi and set the scale accordingly.

The other option is to use something like http://research.microsoft.com/en-us/projects/detours/ to override the windows API methods that gives the device dpi. I doubt you would want to go there though.

┾廆蒐ゝ 2024-10-27 09:20:37

正如史蒂文上面所说,您可以应用顶级 ScaleTransform 来达到相同的效果,即在所有窗口上定义它。我正在我自己的应用程序中做类似的事情。如果您的应用程序没有许多不同的 Window 派生类,则此方法效果最佳,因为您必须修改每一个类。例如,在窗口的根布局项中定义如下内容。

<Grid x:Name="LayoutRoot">
  <Grid.LayoutTransform>
    <TransformGroup>
      <ScaleTransform ScaleX="1.25" ScaleY="1.25"/>
    </TransformGroup>
  </Grid.LayoutTransform>

  <!-- Rest of your app here... -->    

</Grid>

As Steven above has stated, you can apply a top level ScaleTransform to achieve the same effect, i.e. define it on all your windows. I am doing something similar in my own application. This works best if your app doesn't have many different Window derived classes, since you have to modify every one. E.g. in the root layout item of your Window define something like the following.

<Grid x:Name="LayoutRoot">
  <Grid.LayoutTransform>
    <TransformGroup>
      <ScaleTransform ScaleX="1.25" ScaleY="1.25"/>
    </TransformGroup>
  </Grid.LayoutTransform>

  <!-- Rest of your app here... -->    

</Grid>
鲜血染红嫁衣 2024-10-27 09:20:37

您可以使用 RenderTargetBitmap 将具有任何 DPI 的任何视觉对象渲染为任何大小,这可能对您的情况有所帮助。

You can use RenderTargetBitmap to render any Visual with any DPI to any size which may be helpful in your situation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文