別のアプリmainWindowhandleを指定して、ウィンドウの状態に関する情報を収集するアプリを構築しています。子ウィンドウに関する情報を収集しても問題ありませんが、アプリケーションの他の開いているウィンドウやメニューにアクセスできません。アプリケーションのすべてのウィンドウハンドルを取得する方法はありますか?
Process.MainWindowHandle
が行うように見えることを実行できます。P/ Invokeを使用して EnumWindows
関数を呼び出します。これにより、システム内のすべてのトップレベルウィンドウのコールバックメソッドが呼び出されます。
コールバックで GetWindowThreadProcessId
を呼び出し、ウィンドウのプロセスIDをProcess.Id
と比較します。プロセスIDが一致する場合は、ウィンドウハンドルをリストに追加します。
まず、アプリケーションのメインウィンドウのウィンドウハンドルを取得する必要があります。
[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
IntPtr hWnd = (IntPtr)FindWindow(windowName, null);
次に、このハンドルを使用してすべての子ウィンドウを取得できます。
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool EnumChildWindows(IntPtr hwndParent, EnumWindowsProc lpEnumFunc, IntPtr lParam);
private List<IntPtr> GetChildWindows(IntPtr parent)
{
List<IntPtr> result = new List<IntPtr>();
GCHandle listHandle = GCHandle.Alloc(result);
try
{
EnumWindowProc childProc = new EnumWindowProc(EnumWindow);
EnumChildWindows(parent, childProc, GCHandle.ToIntPtr(listHandle));
}
finally
{
if (listHandle.IsAllocated)
listHandle.Free();
}
return result;
}