0

我试图在功能 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

感谢您的帮助:)

4

1 回答 1

0

它曾经与:

FindWindowEx(hChrome, IntPtr.Zero, "Chrome_OmniboxView", IntPtr.Zero);

但我不知道它是否已经工作了。

于 2013-09-16T07:19:26.390 回答