如何处理两个鼠标事件

发布于 2024-12-05 09:30:27 字数 102 浏览 0 评论 0原文

有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独自←快乐 2024-12-12 09:30:27

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文