紫夜非君吧 关注:8贴子:121
  • 0回复贴,共1

【随笔录】C#更改鼠标指针的位置

只看楼主收藏回复


1.导入命名空间
using System.Runtime.InteropServices;
using System.Reflection;
2.调用window的API
[DllImport("user32.dll")]
static extern bool SetCursorPos(int X, int Y);
3.设置指针位置
SetCursorPos(400+this.Left,400+this.Top);


IP属地:广东1楼2015-08-10 15:17回复