次の方法で共有


CWindow::GetDC

更新 : 2007 年 11 月

クライアント領域のデバイス コンテキストを取得します。

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;

必要条件

ヘッダー : atlwin.h

参照

参照

CWindow クラス

CWindow::GetDCEx

CWindow::GetWindowDC

CWindow::ReleaseDC

その他の技術情報

CWindow のメンバ