HighColorPropertySheet.cpp
上传用户:ahlaser
上传日期:2020-09-06
资源大小:116k
文件大小:1k
源码类别:

Static控件

开发平台:

Visual C++

  1. // HighColorPropertySheet.cpp : implementation file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "HighColorTab.h"
  6. #include "HighColorPropertySheet.h"
  7. #include "HighColorTab.hpp"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CHighColorPropertySheet
  15. IMPLEMENT_DYNAMIC(CHighColorPropertySheet, CPropertySheet)
  16. CHighColorPropertySheet::CHighColorPropertySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  17.  : CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  18. {
  19. }
  20. CHighColorPropertySheet::CHighColorPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  21.  : CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  22. {
  23. }
  24. CHighColorPropertySheet::~CHighColorPropertySheet()
  25. {
  26. }
  27. BEGIN_MESSAGE_MAP(CHighColorPropertySheet, CPropertySheet)
  28. //{{AFX_MSG_MAP(CHighColorPropertySheet)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CHighColorPropertySheet message handlers
  33. BOOL CHighColorPropertySheet::OnInitDialog() 
  34. {
  35. BOOL bResult = CPropertySheet::OnInitDialog();
  36.   HighColorTab::UpdateImageList( *this );
  37. return bResult;
  38. }