在 .NET 中交换鼠标左键和右键
如何在 .NET(最好是 C#)中交换鼠标左键和右键? 基本上,结果应该与用户通过控制面板选中“鼠标属性”中的“切换主按钮和辅助按钮”复选框相同。 我正在处理Windows XP,以防有什么影响。
How do I swap left and right mouse buttons in .NET (preferably C#)? Basically the result should be the same as if the user checked the "Switch primary and secondary buttons" checkbox in the Mouse Properties through the control panel. I'm dealing with Windows XP, in case that makes a difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Windows API 调用
SwapMouseButton
:You can use a Windows API call to
SwapMouseButton
:像这样的东西:
Something like this:
这是执行此操作的代码片段。
Here's a code snippet that does this.