www.pudn.com > 图像处理源代码.rar > TxSheet.cpp


// TxSheet.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "tuxiang.h" 
#include "TxSheet.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CTxSheet 
 
IMPLEMENT_DYNAMIC(CTxSheet, CPropertySheet) 
 
CTxSheet::CTxSheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(nIDCaption, pParentWnd, iSelectPage) 
{ 
	m_psh.dwFlags |= PSH_NOAPPLYNOW ; 
	AddPage(&m_cover); 
	AddPage(&m_task1); 
	AddPage(&m_task2); 
	AddPage(&m_task3); 
	AddPage(&m_task4); 
	AddPage(&m_task5); 
} 
 
CTxSheet::CTxSheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage) 
	:CPropertySheet(pszCaption, pParentWnd, iSelectPage) 
{ 
	m_psh.dwFlags |= PSH_NOAPPLYNOW ; 
	AddPage(&m_cover); 
	AddPage(&m_task1); 
	AddPage(&m_task2); 
	AddPage(&m_task3); 
	AddPage(&m_task4); 
	AddPage(&m_task5); 
} 
 
CTxSheet::~CTxSheet() 
{ 
} 
 
 
BEGIN_MESSAGE_MAP(CTxSheet, CPropertySheet) 
	//{{AFX_MSG_MAP(CTxSheet) 
		// NOTE - the ClassWizard will add and remove mapping macros here. 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CTxSheet message handlers