在CMainFrame::OnCreate中通过下列语句创建了一个CListViewCtrl控件:
m_filetree.Create( m_dock, rcDefault, NULL, 1342373943, 516 );
    m_filetree.SetDlgCtrlID(ID_FILE_LIST); //#define ID_FILE_LIST 6666666
    m_filetree.SetWindowText( _T("文件表") );其中m_fileReport为CListFormImpl类型的派生类 对象
class CListFormImpl : 
    public CWindowImpl<CListFormImpl, CListViewCtrl, CListTraits>,
    public CCustomDraw<CListFormImpl>在BEGIN_MSG_MAP(CMainFrame) 中消息映射宏NOTIFY_HANDLER(ID_FILE_LIST,LVN_COLUMNCLICK,NotifyHandler)NotifyHandler函数的声明为LRESULT NotifyHandler(int idCtrl, LPNMHDR pnmh, BOOL& bHandled);但是当用鼠标点击m_fileReport对应列表的列时,却进入不了函数NotifyHandler