在继承CButton时,我希望每次按下按钮时按钮的颜色都会递增。但以下是对背景颜色无效。但是,文本显示“c”递增。 THX
void CMyButton::OnLButtonDown(UINT nFlags, CPoint point)
{
CButton::OnLButtonDown(nFlags, point);
static int c;
CString s;
s.Format("left: %d", c*50);
this->SetWindowText(s);
////// Neither of the following change the background color
//CPaintDC dc(this);
//dc.SetBkColor(0x0 + c*50);
CDC *dc= GetDC();
dc->SetBkColor(0x0 + c*50);
c++;
}
答案 0 :(得分:1)
如果您想更改按钮的绘制方式,您应该实现CMyButton::DrawItem
(覆盖CButton::DrawItem
),并在那里进行绘图。在OnLButtonDown
中,您只需执行以下操作:
c++;
Invalidate();
您希望c
成为CMyButton
的成员,而不是OnLButtonDown
的本地成员。