BOOL CTestDlg::PreTranslateMessage(MSG* pMsg)

 if(pMsg-> message==WM_SYSKEYDOWN) 
 { 
   if(pMsg-> lParam&0x21000000) 
   { 
     if(pMsg-> wParam== 'C')
     MessageBox("ALT+C");
   } 
 } 
 return   CDialog::PreTranslateMessage(pMsg); 
}这样为啥不行呢?