Prop3.cpp
上传用户:spzyw88
上传日期:2020-05-08
资源大小:1874k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

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