全局底层键盘鼠标钩子,导出接口已添加,直接使用。win10 + VS2013 编译。有需要可下载。
2021-11-18 19:28:02 9KB HOOK MFC VC
1
用途: 键盘鼠标录制回放 功能: 支持快捷键录制回放操作, 可以设置回放速度, 支持保存/打开记录文件 非常小巧,没有广告
2021-11-14 00:05:41 196KB 键盘 鼠标 键盘记录 鼠标记录
1
opengl前后滚轮,鼠标左右中键,键盘f1f2f3等等,可以直接使用,有问题留言,帮助解决,本资源不是那种发起者自己跑都跑不了的
2021-11-12 11:10:03 3KB 前鼠标,键盘
1
模拟鼠标和键盘 注意:不支持Windows 8 / 8.1。 Interceptor是Windows键盘驱动程序的包装器(包装http://oblita.com/Interception)。 使用驱动程序,Interceptor可以模拟按键和鼠标点击... 使用DirectX的游戏,通常不接受使用SendInput()的击键 Windows的受保护区域,如Windows登录屏幕或UAC调暗屏幕 任何应用程序 因为驱动程序模拟击键和鼠标单击,所以目标窗口必须处于活动状态(即,在发送击键和鼠标点击时,不能在另一个窗口上执行多任务)。 如何使用 下载并构建此项目并在项目中引用其DLL。 下载'interception.dll',这是一个由驱动程序作者编写的独立库。将它放在与可执行文件相同的目录中。这是必需的。 从作者的网页下载并安装“install-interception.exe”。安装后重新启动计算机。 在您的代码中,要加载驱动程序,请调用(阅读下面的代码注释;您必须设置过滤模式以捕获按键事件或发送按键操作!): Input input = new Input(); // Be sure to set your keyboard filter to be able to capture key presses and simulate key presses // KeyboardFilterMode.All captures all events; 'Down' only captures presses for non-special keys; 'Up' only captures releases for non-special keys; 'E0' and 'E1' capture presses/releases for special keys input.KeyboardFilterMode = KeyboardFilterMode.All; // You can set a MouseFilterMode as well, but you don't need to set a MouseFilterMode to simulate mouse clicks // Finally, load the driver input.Load(); 做你的东西。 input.MoveMouseTo(5, 5); // Please note this doesn't use the driver to move the mouse; it uses System.Windows.Forms.Cursor.Position input.MoveMouseBy(25, 25); // Same as above ^ input.SendLeftClick(); input.KeyDelay = 1; // See below for explanation; not necessary in non-game apps input.SendKeys(Keys.Enter); // Presses the ENTER key down and then up (this constitutes a key press) // Or you can do the same thing above using these two lines of code input.SendKeys(Keys.Enter, KeyState.Down); Thread.Sleep(1); // For use in games, be sure to sleep the thread so the game can capture all events. A lagging game cannot process input quickly, and you so you may have to adjust this to as much as 40 millisecond delay. Outside of a game, a delay of even 0 milliseconds can work (instant key presses). input.SendKeys(Keys.Enter, KeyState.Up); input.SendText("hello, I am typing!"); /* All these following characters / numbers / symbols work */ input.SendText("abcdefghijklmnopqrstuvw
2021-11-09 19:13:27 199KB 模拟鼠标键盘
1
c#实现鼠标键盘的控制 通过socket连接建立,然后通过钩子进行对对端的鼠标和键盘进行后台的控制。
2021-11-04 22:12:49 9.14MB c # 鼠标
1
主要为大家详细介绍了python selenium鼠标键盘操作(ActionChains),教大家如何玩转selenium鼠标键盘,感兴趣的小伙伴们可以参考一下
2021-11-04 16:34:48 65KB python selenium 鼠标键盘
1
按键助手是一个模拟鼠标键盘动作的软件。通过制作脚本,可以让按键助手代替您的双手,自动执行一系列鼠标键盘动作。简单易用,不需要任何编程知识就可以作出功能强大的脚本。只要您在电脑前用双手可以完成的动作,按键助手都可以替您完成。快来制作你自己的脚本吧。 【软件功能】 1.模拟键盘按键自动按键。 2.模拟鼠标自动点击。 3.自动取鼠标位置,自动移动鼠标位置。 4.有延时命令。 比如电脑操作有些命令在点击之后需要等待一段时间,那么你就可以使用延时命令。等上一步操作的效果出来以后再执行下一步。 5.最小化到托盘。
2021-11-04 16:18:59 2.54MB 按键助手
1
使用飞凌嵌入式的2401源码移植A40i源码的电阻触摸屏,移植ok
2021-11-04 13:00:39 2.78MB A40i电阻触摸
1
STM32F103V CH376实现 SD卡、U盘、鼠标键盘操作,源码有详细描述。
2021-11-04 01:11:54 611KB stm32 CH376
1
c++ 写的 拦截鼠标/键盘钩子,实现锁屏,禁用鼠标和键盘, 提供接口供c#调用 可在unity下使用
2021-11-02 17:04:29 59KB unity c++ c#
1