总是调用DefWindowProc
LRESULT CMyWnd::WindowProc( UINT message, WPARAM wParam, LPARAM lParam )
{
    LRESULT lRet;
    // i processed
    MyWndProc( )
    lRet = CWnd::DefWindowProc( message, wParam, lParam );
    return lRet;
}