欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

c#获取光标在屏幕中位置的简单实例

程序员文章站 2024-02-19 21:46:40
需要调用win32api,winform、wpf通用 代码如下: 复制代码 代码如下:[dllimport("user32.dll")]public static ex...

需要调用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;
    }
}