ModelessPpsh.cpp
上传用户:czhlgg
上传日期:2007-01-02
资源大小:53k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

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