不知道哪个消息是响应这个时间的,请指教
谢谢!

解决方案 »

  1.   

    TVM_SELECTITEM
    Selects the specified tree-view item, scrolls the item into view, or redraws the item in the style used to indicate the target of a drag-and-drop operation. You can send this message explicitly or by using the TreeView_Select, TreeView_SelectItem, or TreeView_SelectDropTarget macro. TVM_SELECTITEM 
        wParam = (WPARAM) flag; 
        lParam = (LPARAM) (HTREEITEM) hitem; Parameters
    flag 
    Action flag. This parameter can be one of the following values: TVGN_CARET  Sets the selection to the specified item. The tree-view control's parent window receives the TVN_SELCHANGING and TVN_SELCHANGED notification messages.  
    TVGN_DROPHILITE  Redraws the specified item in the style used to indicate the target of a drag-and-drop operation. 
    TVGN_FIRSTVISIBLE  Ensures that the specified item is visible, and, if possible, displays it at the top of the control's window. Tree-view controls display as many items as will fit in the window. If the specified item is near the bottom of the control's hierarchy of items, it might not become the first visible item, depending on how many items fit in the window. hitem 
    Handle to an item. If hitem is NULL, the control is set to have no selected item. 
    Return Values
    Returns TRUE if successful, or FALSE otherwise. Res
    If the specified item is the child of a collapsed parent item, the parent's list of child items is expanded to reveal the specified item. In this case, the control's parent window receives the TVN_ITEMEXPANDING and TVN_ITEMEXPANDED notification messages. Using the TreeView_SelectItem macro is equivalent to sending the TVM_SELECTITEM message with flag set to the TVGN_CARET value. Using the TreeView_SelectDropTarget macro is equivalent to sending the TVM_SELECTITEM message with flag set to the TVGN_DROPHILITE value. Using TreeView_SelectSetFirstVisible is equivalent to sending the TVM_SELECTITEM message with flag set to the TVGN_FIRSTVISIBLE value. Requirements 
      Windows NT/2000: Requires Windows NT 3.51 or later 
      Windows 95/98/Me: Requires Windows 95 or later 
      Header: Declared in commctrl.h. 
      

  2.   

    OnSelchanged
    m_hTreeItem = m_wndTree.GetSelectedItem();
    CString S1 = m_wndTree.GetItemText(m_hTreeItem);
    //AfxMessageBox("You have selected "+S1);

       if(S1=="aaaaaaa")
    {
    ……
    }  
      

  3.   

    OnSelChanging()在选择改变前触发,此时GetSelecteditem()还是选择前的选项,OnSelChanged()在选择改变后触发,此时GetSelecteditem()是选择后的选项。
      

  4.   

    不好意思,我是把树的每一项都设置上了CheckBox,是想问哪个消息可以响应 Check动作?我看了一遍那些消息,看不出哪个象
    谢谢!
    期待中,
      

  5.   

    怎么没有人给回阿,因为响应OnSelchanged我这里不能满足要求阿,当我点树的节点展开或者闭合子项的时候,它也给响应了OnSelechanged阿,所以我不可以用
    还请高手指点!
    谢谢!