可以在 Windows 8 之前的 Windows 版本上注册 Win+V 热键。使用此组合的示例应用程序是PureText。
在 Windows 8 Release Preview 中,我注意到 Windows 8 已经控制了很多涉及 Windows 键的热键,但似乎没有使用 Win+V。下面的代码将允许我为 Win+CTRL+V 注册一个热键:
#include <Windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
if (RegisterHotKey(
NULL,
1,
MOD_WIN | MOD_NOREPEAT | MOD_CONTROL,
0x56)) // 0x56 is 'v'
{
_tprintf(_T("Hotkey 'CTRL+WIN+V' registered, using MOD_NOREPEAT flag\n"));
}
MSG msg = {0};
while (GetMessage(&msg, NULL, 0, 0) != 0)
{
if (msg.message == WM_HOTKEY)
{
_tprintf(_T("WM_HOTKEY received\n"));
}
}
return 0;
}
如果我将其修改为仅注册 Win+V 那么它将无法注册:
if (RegisterHotKey(
NULL,
1,
MOD_WIN | MOD_NOREPEAT,
0x56)) // 0x56 is 'v'
{
_tprintf(_T("Hotkey 'WIN+V' registered, using MOD_NOREPEAT flag\n"));
}
有没有办法强制注册 Windows+V 热键?我认为可能有一种方法可以通过 Win32 API 挂钩来做到这一点,但我已经有一段时间没有看到它了。实现这一点的更容易支持的选项将不胜感激。