Udostępnij za pośrednictwem


CWindow::ReleaseDC

Zwalnia kontekstu urządzenia.

int ReleaseDC(
   HDC hDC 
);

Uwagi

Zobacz ReleaseDC w Windows SDK.

Przykład

// The following example attaches a HWND to the CWindow object,
// calls CWindow::GetDC to retrieve the DC of the client
// area of the window wrapped by CWindow Object, and calls
// CWindow::ReleaseDC to release the DC. 

CWindow myWindow;
myWindow.Attach(hWnd);   
HDC hDC = myWindow.GetDC();

// Use the DC

myWindow.ReleaseDC(hDC);
hDC = NULL;

Wymagania

Nagłówek: atlwin.h

Zobacz też

Informacje

Klasa CWindow

CWindow::GetDC

CWindow::GetDCEx

CWindow::GetWindowDC