c#获取光标在屏幕中位置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#获取光标在屏幕中位置相关的知识,希望对你有一定的参考价值。
需要调用win32api,winform、wpf通用
[DllImport("user32.dll")] public static extern bool GetCursorPos(out POINT lpPoint); [StructLayout(LayoutKind.Sequential)] public struct POINT { public int X; public int Y; public POINT(int x, int y) { this.X = x; this.Y = y; } }
以上是关于c#获取光标在屏幕中位置的主要内容,如果未能解决你的问题,请参考以下文章