10

我想获得相对于屏幕坐标的鼠标位置。我正在使用以下代码来做到这一点。

window.PointToScreen(Mouse.GetPosition(window));

它按预期工作。但是我的 MouseMove 事件没有在 MainWindow 之外触发。也就是说,如果我在恢复窗口的情况下将鼠标移到桌面上。

任何想法表示赞赏。

4

2 回答 2

12

使用 CaptureMouse() 方法。

对于上面的示例,您可以添加:

window.CaptureMouse();

在 MouseDown 事件处理程序内的代码隐藏中。

然后你需要调用:

window.ReleaseMouseCapture();

在 MouseUp 事件处理程序内的代码隐藏中。

于 2012-04-26T17:02:34.927 回答
1

无论按下任何鼠标按钮,我都需要能够在 WPF 窗口之外捕获鼠标位置。我最终使用 Interop 调用 WINAPI GetCursorPos 结合线程而不是窗口事件。

using System.Runtime.InteropServices;
using Point = System.Drawing.Point;

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

 public MainWindow()
    {
        InitializeComponent();

        new Thread(() =>
        {
            while (true)
            {
                //Logic
                Point p = new Point();
                GetCursorPos(ref p);

                //Update UI
                Dispatcher.BeginInvoke(new Action(() =>
                {
                    Position.Text = p.X + ", " + p.Y;
                }));

                Thread.Sleep(100);
            }
        }).Start();
    }
}

效果很好!

于 2015-05-05T16:43:23.833 回答