[System.Runtime.InteropServices.DllImportAttribute("user32.dll", EntryPoint = "SetCursorPos")]
[return: System.Runtime.InteropServices.MarshalAsAttribute(System.Runtime.InteropServices.UnmanagedType.Bool)]
public static extern bool SetCursorPos(int X, int Y);
我想在自定义控件中为光标定义一个可移动区域。使用此本机函数会使光标闪烁。
有没有另一种方法来设置不会导致闪烁的鼠标位置?