CWindow::GetWindowThreadID

Recupera l'identificatore del thread che ha creato la finestra specificata.

DWORD GetWindowThreadID( ) throw();

Note

Vedere GetWindowThreadProcessID in Windows SDK.

Esempio

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

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::GetWindowProcessID