实际上有http://social.expression.microsoft.com/Forums/es-ES/wpf/thread/6be8299a-9616-43f4-a72f-799da1193889
中描述的方法[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);
我想在自定义控件中定义光标的可移动区域。 使用这个原生函数会使光标闪烁。
是否有另一种设置鼠标位置的方法,不会导致闪烁?