Reputation: 163
Is there a way to get information about other running applications? for example: have my windows form application list all the running applications and their windows size.
Firefox: (info here)
Notepad: (info here)
I want to ultimately tile all open windows. Thanks!
Upvotes: 2
Views: 240
Reputation: 1806
You should be able to retrieve a list of the processes running on the current machine by using
System.Diagnostics.Process.GetProcesses()
See this msdn link for further info
Upvotes: 1