在WM_COMMAND中使用TextOut()

时间:2011-04-12 07:43:41

标签: 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;
}

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

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

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

HDC         hDC;
hDC = GetDC(hwnd);
TextOut(hDC, 10, ypos, "Warnings: ", 10);
UpdateWindow(hwnd);

谢谢你&抱歉这个问题...

2 个答案:

答案 0 :(得分: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
    }
}

答案 1 :(得分:4)

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