PropSheet.cpp
上传用户:peony_8
上传日期:2022-05-18
资源大小:1955k
文件大小:1k
源码类别:

菜单

开发平台:

Visual C++

  1. // PropSheet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "prop.h"
  5. #include "PropSheet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPropSheet
  13. IMPLEMENT_DYNAMIC(CPropSheet, CPropertySheet)
  14. CPropSheet::CPropSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  15. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  16. {
  17. //AddPage(&m_prop1);
  18. //AddPage(&m_prop2);
  19. //AddPage(&m_prop3);
  20. }
  21. CPropSheet::CPropSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  22. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  23. {
  24. AddPage(&m_prop1);
  25. AddPage(&m_prop2);
  26. AddPage(&m_prop3);
  27. }
  28. CPropSheet::~CPropSheet()
  29. {
  30. }
  31. BEGIN_MESSAGE_MAP(CPropSheet, CPropertySheet)
  32. //{{AFX_MSG_MAP(CPropSheet)
  33. // NOTE - the ClassWizard will add and remove mapping macros here.
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CPropSheet message handlers