重载PreTranslateMessage函数,让它收到回车键被按下的消息后执行你所需要的代码。给你一个例子:
BOOL CTestDlg::PreTranslateMessage(MSG* pMsg)
{ // TODO: Add your specialized code here and/or call the base class if(pMsg->message==WM_KEYDOWN) if(pMsg->wParam==VK_RETURN) { AfxMessageBox("你好"); } return CDialog::PreTranslateMessage(pMsg);
}