1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| #pragma once
| #include <afxwin.h>
| class MyButton :
| public CButton
| {
| public:
| //ÈýÖÖÑÕÉ«·Ö±ðΪÎÄ×Ö£¬Button DownµÄ±³¾°ÑÕÉ«£¬Button UpµÄ±³¾°ÑÕÉ«
| COLORREF m_TextColor;
| //ÉèÖÃÎÄ×Ö´óС
| int nWordSize = 100;
| public:
| //ÉèÖÃÎÄ×Ö´óС£¬Ä¬ÈÏΪ10ºÅ
| void setTextSize(int wordsize);
| //ÉèÖÃÎÄ×ÖÑÕɫĬÈÏΪºÚÉ«
| void setTextColor(COLORREF wordColor);
|
|
| public:
| // ÎÄ×Ö´¦Àí
| void setText(CRect rect, CDC* pDc, int size);
|
| virtual void DrawItem(LPDRAWITEMSTRUCT /*lpDrawItemStruct*/);
| };
|
|