MenuPage.cpp
上传用户:shouhua
上传日期:2014-12-06
资源大小:5685k
文件大小:1k
源码类别:

杀毒

开发平台:

Visual C++

  1. // MenuPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "AntiEvilTools.h"
  5. #include "MenuPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMenuPage property page
  13. IMPLEMENT_DYNCREATE(CMenuPage, CPropertyPage)
  14. CMenuPage::CMenuPage() : CPropertyPage(CMenuPage::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CMenuPage)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CMenuPage::~CMenuPage()
  21. {
  22. }
  23. void CMenuPage::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CMenuPage)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CMenuPage, CPropertyPage)
  31. //{{AFX_MSG_MAP(CMenuPage)
  32. ON_WM_PAINT()
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CMenuPage message handlers
  37. void CMenuPage::OnPaint() 
  38. {
  39. CPaintDC dc(this); // device context for painting
  40.     CBitmap   bmp;
  41. bmp.LoadBitmap(IDB_BITMAP1);
  42. BITMAP  bmpInfo;
  43. bmp.GetBitmap(&bmpInfo);
  44. CDC   dcMemory;
  45.     dcMemory.CreateCompatibleDC(&dc);
  46. CBitmap *pOldBmp=dcMemory.SelectObject(&bmp);
  47. dc.BitBlt(0,0,bmpInfo.bmWidth,bmpInfo.bmHeight,&dcMemory,0,0,SRCCOPY);
  48. dcMemory.SelectObject(pOldBmp);
  49. // Do not call CPropertyPage::OnPaint() for painting messages
  50. }