gpt4 book ai didi

C++/WinAPI GDI+ 双缓冲

转载 作者:行者123 更新时间:2023-11-30 01:21:45 25 4
gpt4 key购买 nike

<分区>

大家好,我遇到了双缓冲问题。我不知道为什么,但我的文本没有绘制(没有双缓冲文本正在绘制)。

代码如下:

m_hDC = BeginPaint(m_hWnd, &m_ps);

m_graphics = new Graphics(m_hDC);
memDC = CreateCompatibleDC(m_hDC);
pMemGraphics = new Graphics(memDC);

pMemGraphics->DrawString(L"Hello world!", -1, font, PointF(100, 100), &brush);

BitBlt(m_hDC, 0, 0, 500, 200, memDC, 0, 0, SRCCOPY);
EndPaint(m_hWnd, &m_ps);

delete(pMemGraphics);
delete(m_graphics);

怎么了?

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