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

界面编程

开发平台:

Visual C++

  1. // Test.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ViewOutlookdemo.h"
  5. #include "Test.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTest
  13. IMPLEMENT_DYNCREATE(CTest, CEditView)
  14. CTest::CTest()
  15. {
  16. }
  17. CTest::~CTest()
  18. {
  19. }
  20. BEGIN_MESSAGE_MAP(CTest, CEditView)
  21. //{{AFX_MSG_MAP(CTest)
  22. ON_WM_ERASEBKGND()
  23. ON_WM_CTLCOLOR_REFLECT()
  24. //}}AFX_MSG_MAP
  25. END_MESSAGE_MAP()
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CTest drawing
  28. void CTest::OnDraw(CDC* pDC)
  29. {
  30. CDocument* pDoc = GetDocument();
  31. // TODO: add draw code here
  32. }
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CTest diagnostics
  35. #ifdef _DEBUG
  36. void CTest::AssertValid() const
  37. {
  38. CEditView::AssertValid();
  39. }
  40. void CTest::Dump(CDumpContext& dc) const
  41. {
  42. CEditView::Dump(dc);
  43. }
  44. #endif //_DEBUG
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CTest message handlers
  47. BOOL CTest::OnEraseBkgnd(CDC* pDC) 
  48. {
  49. // TODO: Add your message handler code here and/or call default
  50. return CEditView::OnEraseBkgnd(pDC);
  51. }
  52. HBRUSH CTest::CtlColor(CDC* pDC, UINT nCtlColor) 
  53. {
  54. // TODO: Change any attributes of the DC here
  55. // TODO: Return a non-NULL brush if the parent's handler should not be called
  56. return NULL;
  57. }