BOOLCMFCApplication1Dlg::PreTranslateMessage(MSG*pMsg){//TODO:在此添加专用代码和/或调用基类if(pMsg->message==WM_KEYDOWN){switch(pMsg->wParam){caseVK_ESCAPE:SetFocus();returnTRUE;case'X':if((::GetKeyState(VK_CONTROL)&0x8000)>0)MessageBox(_T("hello"));returnTRUE;}}returnCDialogEx::PreTranslateMessage(pMsg);}