QuakeGod
2022-05-10 65f7136c6dfebde14a07c89c4366fb8bed2fe37f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#pragma once
 
/////////////////////////////////////////////////////////////////////////////
// CViewTree 窗口
 
class CViewTree : public CTreeCtrl
{
// 构造
public:
    CViewTree() noexcept;
 
// 重写
protected:
    virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
 
// 实现
public:
    virtual ~CViewTree();
    afx_msg void OnDblClkTree(NMHDR* pNMHDR, LRESULT* pResult);
    afx_msg void OnClkTree(NMHDR* pNMHDR, LRESULT* pResult);
protected:
    DECLARE_MESSAGE_MAP()
};