Step1.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // Step1.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Wizard.h"
  5. #include "Step1.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CStep1 property page
  13. IMPLEMENT_DYNCREATE(CStep1, CPropertyPage)
  14. CStep1::CStep1() : CPropertyPage(CStep1::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CStep1)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. CStep1::~CStep1()
  21. {
  22. }
  23. void CStep1::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CPropertyPage::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CStep1)
  27. // NOTE: the ClassWizard will add DDX and DDV calls here
  28. //}}AFX_DATA_MAP
  29. }
  30. BEGIN_MESSAGE_MAP(CStep1, CPropertyPage)
  31. //{{AFX_MSG_MAP(CStep1)
  32. // NOTE: the ClassWizard will add message map macros here
  33. //}}AFX_MSG_MAP
  34. END_MESSAGE_MAP()
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CStep1 message handlers
  37. BOOL CStep1::OnSetActive() 
  38. {
  39. CPropertySheet* pParent=(CPropertySheet*)GetParent(); // 获得属性表的指针 
  40. pParent->SetWizardButtons(PSWIZB_NEXT); // 设置属性表的显示按钮只为下一步 
  41. SetDlgItemText(IDC_TEXT1,"这是向导的第一步"); 
  42. return CPropertyPage::OnSetActive();
  43. }