在WM_COMMAND中使用TextOut()

Tom*_*Tom 1 winapi textout

您好,我正在尝试在WM_COMMAND案例中打印文本,因为我需要在按下按钮后打印文本.

这是我的代码:

switch(msg)
{
default:
    return DefWindowProc(hwnd, msg, wParam, lParam);
case WM_COMMAND:
    switch (LOWORD(wParam))
    {
    case 1:
        PAINTSTRUCT ps;
        HDC         hDC;
        hDC = BeginPaint(hwnd, &ps);
        {
            TextOut(hDC, 10, 50, "hello", 5);
        }
        EndPaint(hwnd, &ps);
        UpdateWindow(hwnd);
        break;
    }
    break;
}
Run Code Online (Sandbox Code Playgroud)

可悲的是,它没有打印任何东西.谢谢,问候.

/////////////////////////编辑:

我可以在WM_COMMAND期间使用TextOut():

HDC         hDC;
hDC = GetDC(hwnd);
TextOut(hDC, 10, ypos, "Warnings: ", 10);
UpdateWindow(hwnd);
Run Code Online (Sandbox Code Playgroud)

谢谢你,对不起这个问题......

小智 7

最好构建程序,以便在WM_PAINT中执行所有绘制.

所以你可以将它改为:

LRESULT CALLBACK WndProc(/*blah blah blah*/) 
{
    static wchar_t my_text[] = L"hello";
    static BOOL show_btn_text = FALSE;
    HDC dc;
    PAINTSTRUCT ps;
    switch (msg) {
          case WM_COMMAND:
               switch (LOWORD(wParam)) {
                  case 1:
                       show_btn_text = !show_btn_text;
                       InvalidateRect(hwnd, NULL, TRUE); //tells windows that the whole client area needs to be repainted
                       break;
               }
               return 0;
           case WM_PAINT:
                dc = BeginPaint(hwnd, &ps);
                if (show_btn_text) {
                    TextOut(dc, 0, 0, my_text, wcslen(my_text));
                }
                EndPaint(hwnd, &ps);

            return 0;
            /*the rest of the window procedure
    }
}
Run Code Online (Sandbox Code Playgroud)


Joh*_*ell 5

  • 用于在 WM_PAINT 内部绘画:BeginPaint/ EndPaint
  • 用于在 WM_PAINT: GetDC/之外绘画ReleaseDC