HighColorPropertySheet.cpp
上传用户:ahlaser
上传日期:2020-09-06
资源大小:116k
文件大小:1k
源码类别:
Static控件
开发平台:
Visual C++
- // 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;
- }