vc++ 绘图 pDC 有关的问题
void CProgram57View::OnDraw(CDC* pDC)
{
CDC *pDC=GetDC();
CRect r,rect;
GetClientRect(&r);
rect.bottom=r.bottom-10;
rect.top=r.top+10;
rect.right=r.right-10;
rect.left=r.left+10;
pDC->Rectangle(rect);
}
我要给线条上颜色,pDC-> 后面应该跟什么函数.
刚开始学,谢谢.