DWM API: 某些计算机上的目标位置不正确

DWM API: Incorrect destination position on some computers

我正在使用 DWM API 在我的 WPF 应用程序中显示其他 window 的缩略图。在大多数计算机上,它工作正常,但在某些计算机上,我在应用程序中的缩略图位置错误并且变小了(它向左+向上移动了几个像素,大约小了 30%)。

为了创建缩略图关系,我正在使用此代码(和 dwmapi.dll):

if (DwmRegisterThumbnail(IntPtr dest, IntPtr src, out IntPtr thumb) != 0) return;

PSIZE size;
DwmQueryThumbnailSourceSize(m_hThumbnail, out size);

DWM_THUMBNAIL_PROPERTIES props = new DWM_THUMBNAIL_PROPERTIES
{
   fVisible = true,
   dwFlags = DwmApiConstants.DWM_TNP_VISIBLE | DwmApiConstants.DWM_TNP_RECTDESTINATION | DwmApiConstants.DWM_TNP_OPACITY,
   opacity = 0xFF,
   rcDestination = destinationRect
};

DwmUpdateThumbnailProperties(m_hThumbnail, ref props);

为了在我的应用程序中定位,我使用了 canvas,我使用以下方法获得其位置:

var generalTransform = PreviewCanvas.TransformToAncestor(App.Current.MainWindow);
var leftTopPoint = generalTransform.Transform(new Point(0, 0));
return new System.Drawing.Rectangle((int)leftTopPoint.X, (int)leftTopPoint.Y, (int)PreviewCanvas.ActualWidth, (int)PreviewCanvas.ActualHeight);

感谢 Hans,这是 dip -> px 转换的问题(我认为 WPF 尺寸由像素表示)。

所以,我改变了

return new System.Drawing.Rectangle(
  (int)leftTopPoint.X, 
  (int)leftTopPoint.Y, 
  (int)PreviewCanvas.ActualWidth, 
  (int)PreviewCanvas.ActualHeight
);

至:

using (var graphics = System.Drawing.Graphics.FromHwnd(IntPtr.Zero))
{
    return new System.Drawing.Rectangle(
      (int)(leftTopPoint.X * graphics.DpiX / 96.0),
      (int)(leftTopPoint.Y * graphics.DpiY / 96.0), 
      (int)(PreviewCanvas.ActualWidth * graphics.DpiX / 96.0),
      (int)(PreviewCanvas.ActualHeight * graphics.DpiY / 96.0)
     );
}

现在缩略图的位置和大小在所有设备上都是正确的。