NewPSheet.cpp
上传用户:gzjczs
上传日期:2022-03-18
资源大小:308k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

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