如何在任意的控件上相应回车键消息

BOOL CLogin::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if (pMsg->message == WM_KEYDOWN && //落键
( GetFocus() == GetDlgItem(IDC_EDT_PASSWORD)) )
{
//处理(int) wParam;
if (pMsg->wParam == 13)
{

OnBtnOK();
}
}

return CUIWnd::PreTranslateMessage(pMsg);
}

你可能感兴趣的:(控件)