admin
8 天以前 6cd92a169cbc0db35042f243a09d976fd3e1445c
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);
};