关于Windows GDI的困惑。新手程序员

时间:2013-01-21 04:23:25

标签: winapi

我是一名中国学生,这是我在国外论坛上提出的第一个问题。 我写了两个程序,一个可以正常运行,但另一个程序失败了。

这是正常的: 的

 case WM_PAINT:
      hdc = BeginPaint (hwnd, &ps) ;

      if(fIsTime)
          ShowTime(hdc, &st);
      else
          ShowDate(hdc, &st);

      EndPaint (hwnd, &ps) ;
      return 0 ;

这是失败者: 的

 case WM_PAINT:
      hdc = BeginPaint (hwnd, &ps) ;
      hdcMem = ::CreateCompatibleDC(hdc);
      hBitmap = ::CreateCompatibleBitmap(hdc, cxClient, cyClient);
      ::SelectObject(hdcMem, hBitmap);

      if(fIsTime)
          ShowTime(hdcMem, &st);
      else
          ShowDate(hdcMem, &st);
      ::BitBlt(hdcMem, 0, 0, cxClient, cyClient, hdc, 0, 0, SRCCOPY);

      ::DeleteObject(hBitmap);
      ::DeleteDC(hdcMem);
      EndPaint (hwnd, &ps) ;
      return 0 ;

两个代码之间的唯一区别是WM_Paint代码块,后者无法显示任何内容。我对后一个代码中的错误位置感到困惑?

1 个答案:

答案 0 :(得分:5)

你最大的问题是你有BitBlt电话交换的源和目的地DC。第一个参数应该是目的地,而不是源。

此外,当您将位图设置为DC时,您必须记住返回给您的旧值,并在完成后将其恢复。

尝试以下方法:

  hdc = BeginPaint (hwnd, &ps) ;
  hdcMem = ::CreateCompatibleDC(hdc);
  hBitmap = ::CreateCompatibleBitmap(hdc, cxClient, cyClient);
  hbmpOld = ::SelectObject(hdcMem, hBitmap);

  if(fIsTime)
      ShowTime(hdcMem, &st);
  else
      ShowDate(hdcMem, &st);
  ::BitBlt(hdc, 0, 0, cxClient, cyClient, hdcMem, 0, 0, SRCCOPY);

  ::SelectObject(hdcMem, hbmpOld);
  ::DeleteObject(hBitmap);
  ::DeleteDC(hdcMem);
  EndPaint (hwnd, &ps) ;
  return 0 ;