我试图在功能 FindWindowEx 的任务栏中查找在 Google Chrome 中打开的文件。这就是我所做的,帮助我纠正错误,因为我不明白该怎么做。
bool show = true;
const int SW_HIDE = 0;
const int SW_SHOW = 5;
taskbarWnd = FindWindow("Shell_TrayWnd", null);
chromeWnd = FindWindowEx(taskbarWnd, IntPtr.Zero, "Google Chrome", null);
ShowWindow(chromeWnd, show ? SW_HIDE : SW_SHOW);
show = !show
感谢您的帮助:)