Step2.cpp
上传用户:xsxdsb
上传日期:2009-12-14
资源大小:672k
文件大小:1k
- // Step2.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Wizard.h"
- #include "Step2.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CStep2 property page
- IMPLEMENT_DYNCREATE(CStep2, CPropertyPage)
- CStep2::CStep2() : CPropertyPage(CStep2::IDD)
- {
- //{{AFX_DATA_INIT(CStep2)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- CStep2::~CStep2()
- {
- }
- void CStep2::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CStep2)
- // NOTE: the ClassWizard will add DDX and DDV calls here
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CStep2, CPropertyPage)
- //{{AFX_MSG_MAP(CStep2)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CStep2 message handlers
- BOOL CStep2::OnSetActive()
- {
- CPropertySheet* pParent=(CPropertySheet*)GetParent();
-
- pParent->SetWizardButtons(PSWIZB_NEXT|PSWIZB_BACK);
-
- SetDlgItemText(IDC_TEXT2,"这是向导的第二步");
-
- return CPropertyPage::OnSetActive();
- }