32 lines
763 B
C#
32 lines
763 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Windows;
|
|
|
|
namespace GeekDesk.Util
|
|
{
|
|
class MouseUtil
|
|
{
|
|
[DllImport("user32.dll")]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
internal static extern bool GetCursorPos(ref Win32Point pt);
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct Win32Point
|
|
{
|
|
public Int32 X;
|
|
public Int32 Y;
|
|
};
|
|
|
|
/// <summary>
|
|
/// 获取鼠标坐标
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static Point GetMousePosition()
|
|
{
|
|
var w32Mouse = new Win32Point();
|
|
GetCursorPos(ref w32Mouse);
|
|
return new Point(w32Mouse.X, w32Mouse.Y);
|
|
}
|
|
}
|
|
}
|