16,548
社区成员




BOOL Cphsmgr::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if( WM_KEYDOWN == pMsg->message )
{
if( VK_RETURN == pMsg->wParam )
{
return 1;
}
}
return CDialog::PreTranslateMessage(pMsg);
}