首页 > 学院 > 开发设计 > 正文

C# 如何获取屏幕光标位置

2019-11-17 04:07:44
字体:
来源:转载
供稿:网友
第一种使用 API 方式

view plaincopy to clipboardPRint?
[DllImport("User32.dll")]   
public static extern int GetCursorPos(out Point point);   
public static Point ScreenCursorPosition   
{   
    get  
    {   
        Point showPoint = new Point();   
        GetCursorPos(out showPoint);   
        return showPoint;   
    }   
}  
[DllImport("User32.dll")]
public static extern int GetCursorPos(out Point point);
public static Point ScreenCursorPosition
{
    get
    {
        Point showPoint = new Point();
        GetCursorPos(out showPoint);
        return showPoint;
    }
}

第二种 .Net 提供的最直接的属性

view plaincopy to clipboardprint?
System.Windows.Forms.Cursor.Position  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表