gpt4 book ai didi

.net - 在 .NET 中交换鼠标左右键

转载 作者:行者123 更新时间:2023-12-04 10:02:36 25 4
gpt4 key购买 nike

如何在 .NET(最好是 C#)中交换鼠标左键和右键?基本上,结果应该与用户通过控制面板选中“鼠标属性”中的“切换主要和次要按钮”复选框相同。我正在处理 Windows XP,以防万一。

最佳答案

您可以使用 Windows API 调用 SwapMouseButton :

using System.Runtime.InteropServices;

// ...

[DllImport("user32.dll")]
public static extern Int32 SwapMouseButton(Int32 bSwap);

// ...

// Swap it.
SwapMouseButton(1);

// Back to normal.
SwapMouseButton(0);

关于.net - 在 .NET 中交换鼠标左右键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/653911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com