列表控件 在对列表进行修改的时候是不是会向主窗口发送消息?解决办法

列表控件 在对列表进行修改的时候是不是会向主窗口发送消息?
列表控件 在对列表进行修改的时候是不是会以SendMessage的方式向主窗口发送消息?
如果是,有没有什么办法禁止其发送消息?或者改为PostMessage也行啊。

------解决方案--------------------
As users click column headers, drag icons, edit labels, and so on, the list control (CListCtrl) sends notification messages to its parent window. Handle these messages if you want to do something in response. For example, when the user clicks a column header, you might want to sort the items based on the contents of the clicked column, as in Microsoft Outlook.

Process WM_NOTIFY messages from the list control in your view or dialog class. Use the Properties window to create an OnChildNotify handler function with a switch statement based on which notification message is being handled.