WPF 获取鼠标屏幕位置窗口位置控件位置

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF 获取鼠标屏幕位置窗口位置控件位置相关的知识,希望对你有一定的参考价值。

原文:WPF 获取鼠标屏幕位置、窗口位置、控件位置


    public struct POINT
    {
        public int X;
        public int Y;
        public POINT(int x, int y)
        {
            this.X = x;
            this.Y = y;
        }
    }

[DllImport("user32.dll")]
public static extern bool GetCursorPos(out POINT lpPoint);

//e.GetPosition(this);
//(e.Source as FrameworkElement).PointToScreen(new Point(0, 0));            
POINT mousestart = new POINT();
GetCursorPos(out mousestart);

Point p2 = Mouse.GetPosition(this as FrameworkElement);

Point p = Mouse.GetPosition(e.Source as FrameworkElement);

MessageBox.Show(Convert.ToString(mousestart.X));
MessageBox.Show(Convert.ToString(p.X));
MessageBox.Show(Convert.ToString(p2.X));









以上是关于WPF 获取鼠标屏幕位置窗口位置控件位置的主要内容,如果未能解决你的问题,请参考以下文章

鼠标相对于屏幕的位置鼠标相对于窗口的位置和获取鼠标相对于文档的位置

获取鼠标点相对于各屏幕窗体和当前控件的位置

WPF中窗体打开的位置怎么控制?

Qt判断鼠标在控件上

wpf 怎么获取StackPanel 中控件的位置。

c#UWP窗口位置在屏幕上问题