| 1234567891011121314151617181920212223 |
- #pragma once
- #include <afxwin.h>
- #include <atlimage.h>
- #include <afxglobals.h>
- class CImageStatic : public CStatic
- {
- DECLARE_DYNAMIC(CImageStatic)
- public:
- CImageStatic();
- virtual ~CImageStatic();
- BOOL SetImage(LPCTSTR szImage);
- public:
- CImage m_Image;
- DECLARE_MESSAGE_MAP()
- virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
- };
|