MyPropertySheet.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MyPropertySheet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. #include "MyPropertySheet.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char BASED_CODE THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyPropertySheet
  12. IMPLEMENT_DYNAMIC(CMyPropertySheet, CPropertySheet)
  13. CMyPropertySheet::CMyPropertySheet(CWnd* pWndParent)
  14.  : CPropertySheet(IDS_PROPSHT_CAPTION, pWndParent)
  15. {
  16. // Add all of the property pages here.  Note that
  17. // the order that they appear in here will be
  18. // the order they appear in on screen.  By default,
  19. // the first page of the set is the active one.
  20. // One way to make a different property page the 
  21. // active one is to call SetActivePage().
  22. AddPage(&m_Page1);
  23. AddPage(&m_Page2);
  24. }
  25. CMyPropertySheet::~CMyPropertySheet()
  26. {
  27. }
  28. BEGIN_MESSAGE_MAP(CMyPropertySheet, CPropertySheet)
  29. //{{AFX_MSG_MAP(CMyPropertySheet)
  30. // NOTE - the ClassWizard will add and remove mapping macros here.
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CMyPropertySheet message handlers