0

我正在使用此函数,但 SetCursorPos Private Declare Function SetCursorPos Lib "user32" (ByVal x As Int32, ByVal Y As Int32) As Int32

但是当我转到 Windows 8 的角落时,我遇到了一个小问题。它不会调用侧边菜单、开始菜单……等等。

如果有人知道任何可导入的功能 'MouseMove' ?所以更好的支持Windows8的智慧屏

4

1 回答 1

0

后来我在http://inputsimulator.codeplex.com/上获得了用于输入模拟的适当开源库

 var   inputSimulator = new InputSimulator(); 
    inputSimulator.Mouse.MoveMouseBy(pixX, pixY);

这段代码对我有用。

于 2014-04-29T21:47:29.110 回答