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

书籍源码

开发平台:

Visual C++

  1. // MyWizardSheet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. #include "MyWizardSheet.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char BASED_CODE THIS_FILE[] = __FILE__;
  9. #endif
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyWizardSheet
  12. IMPLEMENT_DYNAMIC(CMyWizardSheet, CPropertySheet)
  13. CMyWizardSheet::CMyWizardSheet(CWnd* pWndParent)
  14.  : CPropertySheet(IDS_PROPSHT_CAPTION1, 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. AddPage(&m_Page3);
  25. AddPage(&m_Page4);
  26. AddPage(&m_Page5);
  27. SetWizardMode();
  28. }
  29. CMyWizardSheet::~CMyWizardSheet()
  30. {
  31. }
  32. BEGIN_MESSAGE_MAP(CMyWizardSheet, CPropertySheet)
  33. //{{AFX_MSG_MAP(CMyWizardSheet)
  34. // NOTE - the ClassWizard will add and remove mapping macros here.
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMyWizardSheet message handlers