Tree1.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
- // Tree1.cpp : implementation file
- //
- #include "stdafx.h"
- #include "DevDemo.h"
- #include "Tree1.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CTree1
- IMPLEMENT_DYNCREATE(CTree1, CTreeView)
- CTree1::CTree1()
- {
- }
- CTree1::~CTree1()
- {
- }
- BEGIN_MESSAGE_MAP(CTree1, CTreeView)
- //{{AFX_MSG_MAP(CTree1)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CTree1 drawing
- void CTree1::OnDraw(CDC* pDC)
- {
- CDocument* pDoc = GetDocument();
- // TODO: add draw code here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CTree1 diagnostics
- #ifdef _DEBUG
- void CTree1::AssertValid() const
- {
- CTreeView::AssertValid();
- }
- void CTree1::Dump(CDumpContext& dc) const
- {
- CTreeView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CTree1 message handlers
- void CTree1::OnInitialUpdate()
- {
- CTreeView::OnInitialUpdate();
-
- }