系统相关
首页 > 系统相关> > Windows用户界面相关应用程序接口

Windows用户界面相关应用程序接口

作者:互联网

    
     [DllImport("User32")]
        public extern static void SetCursorPos(int x, int y);//声明外部函数,移动到x,y位置

        [DllImport("User32")]
        public extern static bool GetCursorPos(ref Point lpPoint);//获取当前鼠标位置信息

 

标签:用户界面,Windows,程序接口,public,int,static,extern,User32,DllImport
来源: https://www.cnblogs.com/jayrocking/p/15347202.html