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

菜单

开发平台:

Visual C++

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