Partager via


CWindow::BeginPaint

Prépare la fenêtre pour la peinture.

HDC BeginPaint(
   LPPAINTSTRUCT lpPaint 
) throw();

Notes

Consultez BeginPaint dans Kit de développement logiciel Windows.

Exemple

//The following example attaches an HWND to the CWindow object
//and calls CWindow::BeginPaint() and CWindow::EndPaint() in the 
// WM_PAINT handler of a CWindowImpl-derived class
LRESULT CMyCtrl::OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, 
   BOOL& /*bHandled*/)
{
   CWindow myWindow;
   myWindow.Attach(m_hWnd);
   PAINTSTRUCT ps;
   HDC hDC  = myWindow.BeginPaint(&ps);
   //Use the hDC as much as you want
   ::Rectangle(hDC, 0, 0, 50, 50);

   myWindow.EndPaint(&ps);

   return 0;
}

Configuration requise

Header: atlwin.h

Voir aussi

Référence

Classe de CWindow

CWindow::EndPaint