18

有谁知道如何在 WPF 中的拖放操作期间获得正确的鼠标位置?我用过Mouse.GetPosition(),但返回值不正确。

4

2 回答 2

32

没关系,我已经找到了解决方案。使用DragEventArgs.GetPosition()返回正确的位置。

于 2009-05-27T12:02:11.797 回答
1

DragOver 处理程序是针对一般情况的解决方案。但是,如果您在光标不在可放置表面时需要精确的光标点,您可以使用下面的 GetCurrentCursorPosition 方法。我参考了 Jignesh Beladiya 的帖子

using System;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Media;

public static class CursorHelper
{
    [StructLayout(LayoutKind.Sequential)]
    struct Win32Point
    {
        public Int32 X;
        public Int32 Y;
    };

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

    public static Point GetCurrentCursorPosition(Visual relativeTo)
    {
        Win32Point w32Mouse = new Win32Point();
        GetCursorPos(ref w32Mouse);
        return relativeTo.PointFromScreen(new Point(w32Mouse.X, w32Mouse.Y));
    }
}
于 2021-02-01T09:40:19.900 回答