www.pudn.com > HighColorTab_demo.zip > HighColorPropertySheet.cpp
// HighColorPropertySheet.cpp : implementation file
//
/////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "HighColorTab.h"
#include "HighColorPropertySheet.h"
#include "HighColorTab.hpp"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CHighColorPropertySheet
IMPLEMENT_DYNAMIC(CHighColorPropertySheet, CPropertySheet)
CHighColorPropertySheet::CHighColorPropertySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
: CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
{
}
CHighColorPropertySheet::CHighColorPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
: CPropertySheet(pszCaption, pParentWnd, iSelectPage)
{
}
CHighColorPropertySheet::~CHighColorPropertySheet()
{
}
BEGIN_MESSAGE_MAP(CHighColorPropertySheet, CPropertySheet)
//{{AFX_MSG_MAP(CHighColorPropertySheet)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CHighColorPropertySheet message handlers
BOOL CHighColorPropertySheet::OnInitDialog()
{
BOOL bResult = CPropertySheet::OnInitDialog();
HighColorTab::UpdateImageList( *this );
return bResult;
}