在拖动过程中,MonitorFromWindow(DefaultToNearest)不起作用

时间:2015-10-01 16:07:55

标签: c# wpf winapi

我正在使用Windows API方法MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST)作为我的WPF应用程序中一些重写最大化功能的一部分。我们遇到的一个问题是“最近的”窗口在拖动操作期间不会更新(由Window实例上的DragMove触发)。

假设您在两个不同分辨率的屏幕之间拖动窗口,并在第二个屏幕上触发Aero Snap功能。这会触发对窗口大小的查询(消息WM_GETMINMAXINFO)。在此方案中使用MonitorFromWindow会返回错误的屏幕。就好像MONITOR_DEFAULTTONEAREST使用的数据在拖动操作完成之前不会更新,并且在Aero Snap触发的调整大小功能完成之前不会完成。在回答WM_GETMINMAXINFO查询之前,有没有办法刷新当前窗口位置?

1 个答案:

答案 0 :(得分:2)

由于捕捉是基于鼠标位置的,因此解决问题的方法是使用GetCursorPos来获取当前鼠标位置。然后将该点传递给MonitorFromPoint以获取当前包含鼠标指针的监视器的句柄。

一个简单的例子:

[DllImport("User32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool GetCursorPos(ref Point lpPoint);

public const int MONITOR_DEFAULTTONEAREST = 2;

[DllImport("User32.dll")]
public static extern IntPtr MonitorFromPoint(Point pt, UInt32 dwFlags);

public IntPtr GetCurrentMonitor()
{
    Point p = new Point(0,0);
    if (!GetCursorPos(ref p))
    {
        // Decide what to do here.
    }
    IntPtr hMonitor = MonitorFromPoint(p, MONITOR_DEFAULTTONEAREST);
    // validate hMonitor
    return hMonitor;
}