如何在wpf中实现OxyPlot DPI感知?

问题描述 投票:0回答:1
c# wpf dpi oxyplot dpi-aware
1个回答
0
投票

问题是我的 MainWindow(PlotView 的容器)有一个 LayoutTransform:

Me.Scrll.LayoutTransform = New ScaleTransform(ScaleX, ScaleY)

所以,我放入 PlotView:

Plot.LayoutTransform = New ScaleTransform(1 / ScaleX, 1 / ScaleY)

这样,两个显示器中的图都不会变形。

© www.soinside.com 2019 - 2024. All rights reserved.