다음을 통해 공유


CWindow::GetWindowThreadID

지정한 창을 만든 스레드의 식별자를 검색 합니다.

DWORD GetWindowThreadID( ) throw();

설명

참조 GetWindowThreadProcessID 에 있는 Windows SDK.

예제

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::GetWindowThreadID() to retrieve the id of the thread 
//that created the window

CWindow myWindow;
myWindow.Attach(hWnd);
DWORD dwID = myWindow.GetWindowThreadID();

요구 사항

헤더: atlwin.h

참고 항목

참조

CWindow 클래스

CWindow::GetWindowProcessID