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

Windows编程

开发平台:

Visual C++

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