1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| #pragma once
| #include <afxext.h>
| class CImgButton: public CBitmapButton
| {
|
| public:
| CImgButton();
| virtual ~CImgButton();
|
| protected:
| //DECLARE_MESSAGE_MAP()
| public:
|
| public:
| COLORREF TextColor;
| void SetTextColor(COLORREF crColor);
| virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
| };
|
|