1

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

我想在自定义控件中为光标定义一个可移动区域。使用此本机函数会使光标闪烁。

有没有另一种方法来设置不会导致闪烁的鼠标位置?

4

1 回答 1

0

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

于 2009-12-09T08:06:22.683 回答