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.

link|improve this question

1  
Duplicate of stackoverflow.com/questions/2281429/… – Peter Lillevold Mar 28 '10 at 3:54
@Brian - wouldn't keying off from Process.MainWindowHandle and EnumChildWindows work as opposed to enumerating all open windows ? – Gishu Mar 28 '10 at 4:06
@Gishu: No but you may be able to use the MainWindowHandle inside the Win32 API FindWindowEx – Brian R. Bondy Mar 28 '10 at 12:38
feedback

2 Answers

up vote 4 down vote accepted

Use the Win32 API EnumWindows (if you want child windows EnumChildWindows)), or alternatively you can use EnumThreadWindows .

[DllImport("user32.dll", CharSet=CharSet.Auto, SetLastError=true)]
public static extern bool EnumWindows(EnumThreadWindowsCallback callback, IntPtr extraData);

Then check which process each window belongs to by using the Win32 API GetWindowThreadProcessId

[DllImport("user32.dll", CharSet=CharSet.Auto, SetLastError=true)]
public static extern int GetWindowThreadProcessId(HandleRef handle, out int processId);
link|improve this answer
1  
C# example: pinvoke.net/default.aspx/user32/EnumWindows.html – shf301 Mar 28 '10 at 3:55
Hmm, this enumerates the windows per thread. It requires a little more work to find the windows per process. See Konstantin's answer below. – Abel Apr 1 at 23:46
feedback
delegate bool EnumThreadDelegate(IntPtr hWnd, IntPtr lParam);

[DllImport("user32.dll")]
static extern bool EnumThreadWindows(int dwThreadId, EnumThreadDelegate lpfn, IntPtr lParam);

static IEnumerable<IntPtr> EnumerateProcessWindowHandles(int processId)
{
    var handles = new List<IntPtr>();

    foreach (ProcessThread thread in Process.GetProcessById(processId).Threads)
        EnumThreadWindows(thread.Id, (hWnd, lParam) => { handles.Add(hWnd); return true; }, IntPtr.Zero);

    return handles;
}

and sample usage:

private const uint WM_GETTEXT = 0x000D;

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, int wParam, StringBuilder lParam);

[STAThread]
static void Main(string[] args)
{
    foreach (var handle in EnumerateProcessWindowHandles(Process.GetProcessesByName("explorer").First().Id))
    {
        StringBuilder message = new StringBuilder(1000);
        SendMessage(handle, WM_GETTEXT, message.Capacity, message);
        Console.WriteLine(message);
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.