共用方式為


CWindow::GetDC

擷取工作區的裝置內容。

HDC GetDC( ) throw();

備註

請參閱在 Windows SDK的 GetDC

範例

// 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;

需求

Header: atlwin.h

請參閱

參考

CWindow 類別

CWindow::GetDCEx

CWindow::GetWindowDC

CWindow::ReleaseDC