如何在WPF中设置鼠标位置

时间:2009-12-09 08:03:35

标签: wpf mouse position

实际上有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);   

我想在自定义控件中定义光标的可移动区域。 使用这个原生函数会使光标闪烁。

是否有另一种设置鼠标位置的方法,不会导致闪烁?

1 个答案:

答案 0 :(得分:0)

也许您可以从非托管ClipCursor function中受益。