0

首先,这个函数被多次调用。应该注意的是 wString[] 确实包含字符常量 '\n'。

void D2DResources::PutToLog(WCHAR wString[])
{
    int strLen=wcslen(wString);
    int logLen=wcslen(log);

    if(strLen+logLen>=MaxLogSize)
        wcsncpy(log, log, logLen-strLen);

    wcscat (log, wString);

    int nLines=0;

    for(int x=0; x<wcslen(log); x++)
    {
        if(log[x]=='\n')
        {
            nLines++;
            if(nLines>5)
            {
                log[x]='\0';
            }
        }
    }

    SendMessage (m_hWnd, WM_PAINT, NULL, (LPARAM)nLines);
}

最后,发送一条 WM_PAINT 消息,而 nLines 应为非零,因为日志包含多个 '\n'。我的 WndProc 接收消息并处理它。

case WM_PAINT:
    {
        pD2DResources->OnRender((int)lParam);
        ValidateRect(hWnd, NULL);
    }
    break;

之后,使用(假定的)非零 int 作为 lParam 调用 OnRender。

void D2DResources::OnRender(int nLogLines)
{
    D2D1_SIZE_F screenSize = pCurrentScreen->GetSize();

    D2D1_SIZE_F rTSize = pRT->GetSize();

    pRT->BeginDraw();

    pRT->DrawBitmap(
        pCurrentScreen,
        D2D1::RectF(0.0f, 0.0f, screenSize.width, screenSize.height)
        );

    pRT->DrawText(
        log,
        ARRAYSIZE(log) - 1,
        pTextFormat,
        D2D1::RectF(0, rTSize.height - ((nLogLines*textSize)+textSize) , rTSize.width, rTSize.height),
        pWhiteBrush
        );

    pRT->EndDraw();
}

由于某种原因,在 OnRender 函数中,nLogLines 的值为 0。有什么问题?

4

1 回答 1

2

“怎么了?”

您正在处理的 WM_PAINT 很可能不是源自您的 SendMessage

一般建议:不要发送或发布 WM_PAINT,让系统生成该消息(当您从线程的消息队列中检索消息并且窗口需要重新绘制时,它会生成该消息)

于 2013-03-14T00:27:11.777 回答