Tree1.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // Tree1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DevDemo.h"
  5. #include "Tree1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTree1
  13. IMPLEMENT_DYNCREATE(CTree1, CTreeView)
  14. CTree1::CTree1()
  15. {
  16. }
  17. CTree1::~CTree1()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CTree1, CTreeView)
  21. //{{AFX_MSG_MAP(CTree1)
  22. // NOTE - the ClassWizard will add and remove mapping macros here.
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CTree1 drawing
  27. void CTree1::OnDraw(CDC* pDC)
  28. {
  29. CDocument* pDoc = GetDocument();
  30. // TODO: add draw code here
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CTree1 diagnostics
  34. #ifdef _DEBUG
  35. void CTree1::AssertValid() const
  36. {
  37. CTreeView::AssertValid();
  38. }
  39. void CTree1::Dump(CDumpContext& dc) const
  40. {
  41. CTreeView::Dump(dc);
  42. }
  43. #endif //_DEBUG
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CTree1 message handlers
  46. void CTree1::OnInitialUpdate() 
  47. {
  48. CTreeView::OnInitialUpdate();
  49. }