如何处理两个鼠标事件
有没有办法使用 c# .NET/Mono 2.10 处理连接到同一台计算机的两个鼠标发送的事件?
我只想知道每只鼠标的 X 和 Y 何时发生变化。
提前致谢!
is there any way, using c# .NET/Mono 2.10 to handle the events sent by two mouses connected to the same computer?
I only want to know when the X's and the Y's of each mouse has changed.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Windows MultiPoint 鼠标 SDK
Checkout Windows MultiPoint Mouse SDK
您可以使用
WM_INPUT
消息分别跟踪多个输入设备。详细信息请此处。然而,这是特定于 Windows 的,虽然您可以使用 p/invoke 从 C# 访问它,但在 Mono 上的机会微乎其微。在 Linux 上,您可能希望打开并读取各种
/dev/input/
n
设备,并以这种方式处理多个鼠标。或者使用 X-Windows 输入 API。You can track multiple input devices separately using the
WM_INPUT
message. Details here. However, this is Windows-specific, while you can access it from C# using p/invoke, your chances on Mono are slim to none.On Linux, you probably would want to open and read from the various
/dev/input/
n
devices and process multiple mice that way. Or use the X-Windows input APIs.