Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人知道是否可以从 C# 中的按键事件中获取 VID 和 PID 吗?
我一直在搜索,似乎使用 C 是可能的,但我找不到 C# 的任何示例。
我假设您正在寻找生成按键的 USB 设备的 VID(供应商 ID)和 PID(产品 ID)。C# 中没有对此的直接支持,因此您需要使用 P/Invoke 来访问 C“原始输入”API。
以下是两个开始的例子: