他の実行中のアプリケーションに関する情報を取得する方法はありますか? 例: Windows フォーム アプリケーションに、実行中のすべてのアプリケーションとそのウィンドウ サイズを一覧表示させます。
Firefox: (情報はこちら)
メモ帳: (情報はこちら)
最終的に開いているすべてのウィンドウを並べて表示したい。ありがとう!
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