Cajon.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

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