INTROPG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // IntroPg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "Wizard97.h"
  14. #include "IntroPg.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CIntroPage property page
  22. IMPLEMENT_DYNCREATE(CIntroPage, CPropertyPageEx)
  23. CIntroPage::CIntroPage() : CPropertyPageEx(CIntroPage::IDD)
  24. {
  25. //{{AFX_DATA_INIT(CIntroPage)
  26. // NOTE: the ClassWizard will add member initialization here
  27. //}}AFX_DATA_INIT
  28. m_psp.dwFlags |= PSP_HIDEHEADER;
  29. }
  30. CIntroPage::~CIntroPage()
  31. {
  32. }
  33. void CIntroPage::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CPropertyPageEx::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CIntroPage)
  37. // NOTE: the ClassWizard will add DDX and DDV calls here
  38. //}}AFX_DATA_MAP
  39. }
  40. BEGIN_MESSAGE_MAP(CIntroPage, CPropertyPageEx)
  41. //{{AFX_MSG_MAP(CIntroPage)
  42. // NOTE: the ClassWizard will add message map macros here
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CIntroPage message handlers
  47. BOOL CIntroPage::OnSetActive()
  48. {
  49. CPropertySheet* pSheet = (CPropertySheet*)GetParent();
  50. ASSERT_KINDOF(CPropertySheet, pSheet);
  51. pSheet->SetWizardButtons(PSWIZB_NEXT);
  52. return CPropertyPageEx::OnSetActive();
  53. }