How i can find all the windows created by a particular process using c#?
UPDATE
i need enumerate all the windows belonging to an particular process using the PID (process ID) of the an application.
feedback
|
|
Use the Win32 API EnumWindows (if you want child windows EnumChildWindows)), or alternatively you can use EnumThreadWindows .
Then check which process each window belongs to by using the Win32 API GetWindowThreadProcessId
| |||||||
feedback
|
and sample usage:
| |||
|
feedback
|