如何在 Win32 C++ 程序在后台运行时检测 KeyPress

发布于 2024-10-17 16:20:12 字数 104 浏览 3 评论 0原文

我有一个程序,每当我最小化它时,它就会进入系统托盘。

我想知道的是: a) 当我的程序位于系统托盘中时,如何检测按键操作。 b)我怎么知道他们在键盘上按下了什么,特别是功能按钮。

I got a program that whenever I minimize it, it goes to the system tray.

i want to know is this:
a) how could i detect a key press while my program is in the system tray.
b) how could I know what they press in the keyboard specifically the function buttons.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

翻了热茶 2024-10-24 16:20:12

You need to set up a keyboard hook using SetWindowsHookEx(). Look at the WH_KEYBOARD and WH_KEYBOARD_LL hooks.

夏了南城 2024-10-24 16:20:12

如果您确切知道所需的击键,可以使用 RegisterHotkey,按下该键时 Windows 会向您发送一条消息。

如果您想检测所有击键,@OJ 的答案将会起作用。

If you know exactly what keystroke you're expecting, you can use RegisterHotkey and Windows will send you a message when that key is pressed.

If you want to detect all keystrokes, @OJ's answer will work.

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