if (pMsg->message == WM_KEYDOWN)
{
if (pMsg->wParam == 'F' && GetKeyState(VK_CONTROL) && pMsg->lParam & 0x20000000)
{
MessageBox(L"Ctrl+ALT+F");
}
else if (pMsg->wParam == 'F' && GetKeyState(VK_CONTROL) && !(pMsg->lParam & 0x20000000))
{
MessageBox(L"Ctrl+F");
}
}
else if (pMsg->message == WM_SYSKEYDOWN)
{
if (pMsg->wParam == 'F' && pMsg->lParam & 0x20000000)
{
MessageBox(L"ALT+F");
}
}
MFC怎么实现组合键盘响应
最新推荐文章于 2023-07-20 15:47:46 发布