c# - How can i get lis of all running applications including if application have sub windows open? -
now can processes way:
foreach (process p in process.getprocesses()) { var icon = icon.extractassociatedicon(p.mainmodule.filename); image ima = icon.tobitmap(); ima = resizeimage(ima, new size(25, 25)); ima = (image)(new bitmap(ima, new size(25, 25))); string status = p.responding ? "running" : "not responding"; } the problem don't processes sub windows or tabs in windows task manager. in windows task manager example see 28 windows of internet explorer 19.

you can see example first process internet explorer , if click on , expand see inside 28 internet explorer windows(and tabs too).
or windows explorer there (7) near meaning 7 processes of that.
how can processes in windows task manager ?
Comments
Post a Comment