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

Windows编程

开发平台:

Visual C++

  1. // Int1.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 "Int1.h"
  15. #ifdef _DEBUG
  16. #define new DEBUG_NEW
  17. #undef THIS_FILE
  18. static char THIS_FILE[] = __FILE__;
  19. #endif
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CInterior1 property page
  22. IMPLEMENT_DYNCREATE(CInterior1, CPropertyPageEx)
  23. CInterior1::CInterior1() : CPropertyPageEx(CInterior1::IDD, 0, IDS_HEADERTITLE, IDS_HEADERSUBTITLE)
  24. {
  25. //{{AFX_DATA_INIT(CInterior1)
  26. // NOTE: the ClassWizard will add member initialization here
  27. //}}AFX_DATA_INIT
  28. }
  29. CInterior1::~CInterior1()
  30. {
  31. }
  32. void CInterior1::DoDataExchange(CDataExchange* pDX)
  33. {
  34. CPropertyPageEx::DoDataExchange(pDX);
  35. //{{AFX_DATA_MAP(CInterior1)
  36. // NOTE: the ClassWizard will add DDX and DDV calls here
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CInterior1, CPropertyPageEx)
  40. //{{AFX_MSG_MAP(CInterior1)
  41. // NOTE: the ClassWizard will add message map macros here
  42. //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CInterior1 message handlers
  46. BOOL CInterior1::OnSetActive()
  47. {
  48. CPropertySheet* pSheet = (CPropertySheet*)GetParent();
  49. ASSERT_KINDOF(CPropertySheet, pSheet);
  50. pSheet->SetWizardButtons( PSWIZB_BACK | PSWIZB_NEXT);
  51. return CPropertyPageEx::OnSetActive();
  52. }