我的界面上放有一个CListCtrl控件,我想在双击表头的时候弹出一个设置表头属性的对话框,该怎么在我的程序中响应CListCtrl的表头双击事件呢?

解决方案 »

  1.   

    不是吧,CHeaderCtrl本来就有双击事件的啊,怎么把它引出来呢?
      

  2.   

    http://msdn.microsoft.com/en-us/library/bb775290(v=VS.85).aspxhttp://www.cnblogs.com/niuniu502/archive/2007/03/12/672185.html
      

  3.   

    http://blog.csdn.net/bwmwm/archive/2008/07/24/2706663.aspx
      

  4.   

    HDN_ITEMDBLCLICK有点像,可是我测试了一下,根本就没有反应啊
      

  5.   

    Handling Notification Messages 
    Handling CHeaderCtrl messages in a CListCtrl strains ClassWizard's magic powers. The problem is that ClassWizard considers the CHeaderCtrl embedded in a CListCtrl to be of the same "message depth" as any other Common Control (CButton or CEdit Control, for instance). In practice however, the CHeaderCtrl is actually a child of the CListCtrl in which it resides. While the CListCtrl's immediate parent is the CDialog in which it is instantiated, the CHeaderCtrl's immediate parent is the CListCtrl. This is also suggested by the following two points: Unlike other Common Controls on a CDialog, the CHeaderCtrl in the CListCtrl is not given an explicit resource ID; 
    The existence of the CListCtrl::GetHeaderCtrl(...) method 
    This problem arises when you use ClassWizard to create CHeaderCtrl handlers in a CDialog derived class. To create a CHeaderCtrl message handler, you first right click the CListCtrl object in the Resource Editor and select ClassWizard from the popup menu. ClassWizard then enumerates all the messages for this CListCtrl, including those sent by the CHeaderCtrl window. These messages are handled through the ON_NOTIFY macro construction. The list looks something like this: Attempting to implement a message handler for HDN_<X> messages using Class Wizard will then generate an incorrect Message Map entry. For instance, creating a message handler for the HDN_ENDDRAG message will create an entry such as: ON_NOTIFY(HDN_ENDDRAG, IDC_LIST_CTRL, OnEnddragListCtrl). Unfortunately, the IDC_LIST_CTRL is not responsible for notifying the parent of a HDN_ENDDRAG message. It is the embedded CHeaderCtrl which sends the message, so the ON_NOTIFY macro should use the ID of the CHeaderCtrl. Using Spy++, we can determine that the ID of the CHeaderCtrl is 0, so the ON_NOTIFY entry needs to be manually edited to the following: ON_NOTIFY(HDN_ENDDRAG, 0, OnEnddragListCtrl). This roundabout way connects the WM_NOTIFY messages of the CHeaderCtrl to the "second-level" parent of the CHeaderCtrl, which is often where message processing is handled.
      

  6.   

    重写CListCtrl类,添加处理HDN_开头的消息
    不过要修改成这样的
    ON_NOTIFY(HDN_ITEMCHANGEDA, 0, OnItemchanged)
    ON_NOTIFY(HDN_ITEMCHANGEDW, 0, OnItemchanged)
    VC6下要需要这么写,否则无响应
      

  7.   


    谢谢,那些是加到CListCtrl的扩展类中吗?
    但是我最终怎么在加载CListCtrl控件的窗口类中响应列头的双击事件呢?
      

  8.   

    你在CListCtrl的派生类里调用你窗口中的处理函数就行了,或者发个自定义消息到窗口