MyStatic.cpp
上传用户:aokegd
上传日期:2009-12-14
资源大小:1276k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MyStatic.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MixColor.h"
  5. #include "MyStatic.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyStatic
  13. CMyStatic::CMyStatic()
  14. {
  15. }
  16. CMyStatic::~CMyStatic()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CMyStatic, CStatic)
  20. //{{AFX_MSG_MAP(CMyStatic)
  21. ON_WM_PAINT()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMyStatic message handlers
  26. void CMyStatic::OnPaint() 
  27. {
  28. CPaintDC dc(this); // device context for painting
  29. // TODO: Add your message handler code here
  30. // Do not call CStatic::OnPaint() for painting messages
  31. }