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

Static控件

开发平台:

Visual C++

  1. // PageIcon.h : header file
  2. //
  3. ///////////////////////////////////////////////////////////////////////////////
  4. #ifndef WBL_PAGEICON_H__INCLUDED_
  5. #define WBL_PAGEICON_H__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CPageIcon dialog
  11. class CPageIcon
  12.  : public CPropertyPage
  13. {
  14. DECLARE_DYNAMIC(CPageIcon)
  15. // Construction
  16. public:
  17. CPageIcon(const char* lpszTitle, UINT nIconID);
  18. ~CPageIcon();
  19. // Dialog Data
  20. //{{AFX_DATA(CPageIcon)
  21. enum { IDD = IDD_ICON_PAGE };
  22. CStatic m_staticIcon;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generate virtual function overrides
  26. //{{AFX_VIRTUAL(CPageIcon)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. // Generated message map functions
  33. //{{AFX_MSG(CPageIcon)
  34. virtual BOOL OnInitDialog();
  35. //}}AFX_MSG
  36. DECLARE_MESSAGE_MAP()
  37. // Members
  38. private:
  39.   UINT m_nIconID;
  40.   HICON m_hIcon;
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // WBL_PAGEICON_H__INCLUDED_