我在CMyAPP中 重写
BOOL CMyApp::PreTranslateMessage(MSG *pMsg)
{  if(pMsg->message==WM_CHAR)
  {

    return FALSE;
  }
 if(pMsg->message==WM_MOVE)
  {
  
    return FALSE;
  }
}
为什么WM_CHAR响应 和我拖动窗口时候 WM_MOVE不响应呢?