强制 DPI 在 WPF 中进行测试
有没有什么方法可以让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您对最外面的容器进行 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.
正如史蒂文上面所说,您可以应用顶级 ScaleTransform 来达到相同的效果,即在所有窗口上定义它。我正在我自己的应用程序中做类似的事情。如果您的应用程序没有许多不同的 Window 派生类,则此方法效果最佳,因为您必须修改每一个类。例如,在窗口的根布局项中定义如下内容。
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.
您可以使用 RenderTargetBitmap 将具有任何 DPI 的任何视觉对象渲染为任何大小,这可能对您的情况有所帮助。
You can use RenderTargetBitmap to render any Visual with any DPI to any size which may be helpful in your situation.