PreTranslateMessage介绍
BOOL CMFCHelloDlg::PreTranslateMessage(MSG* pMsg)
{
if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_DOWN)
{
SetWindowText(_T("按下下键"));
}
if (pMsg->message == WM_KEYDOWN && pMsg->wParam == VK_ESCAPE)
{
return TRUE;
}
return CDialogEx::PreTranslateMessage(pMsg);
}