gpt4 book ai didi

c++ - MFC:环 - 无颜色变化

转载 作者:行者123 更新时间:2023-11-28 06:26:53 27 4
gpt4 key购买 nike

我正在尝试从书中学习 MFC:MV C++ Windows Application by Example(2008)。有示例应用程序。我可以在其中绘制填充女巫所选颜色的戒指:

void CRingView::OnDraw(CDC* pDC)
{
CRingDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!pDoc)
return;
PointArray& pointArray = pDoc->GetPointArray();
ColorArray& colorArray = pDoc->GetColorArray();
int iSize = static_cast<int>(pointArray.GetSize());
for (int iIndex = 0; iIndex < iSize; iIndex++)
{
CPoint point = pointArray[iIndex];
COLORREF color = colorArray[iIndex];
CPen pen(PS_SOLID, 0, BLACK);
CBrush brush(color);
pDC->Ellipse(point.x - RADIUS, point.y - RADIUS, point.x + RADIUS, point.y + RADIUS);
CPen* pOldPen = pDC->SelectObject(&pen);
CBrush* pOldBrush = pDC->SelectObject(&brush);
}
}

但是即使我这样做也没有颜色变化(总是像 bg 一样是白色):

CBrush brush(BLACK);

所以问题是:我做错了什么?我正在使用 Visual Studio 2013,但对于新项目,不应该有任何兼容性错误。黑色是:

static const COLORREF BLACK = RGB(0, 0, 0);

最佳答案

DC 使用当前选择的任何画笔、钢笔、字体等对象进行绘制。所以画笔和画笔的SelectObject应该发生在绘图之前。

关于c++ - MFC:环 - 无颜色变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28364256/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com