gpt4 book ai didi

c# - 设置事件的 Chrome 窗口 (C++)

转载 作者:搜寻专家 更新时间:2023-10-31 01:05:57 25 4
gpt4 key购买 nike

我正在尝试将 Chrome 窗口设置为前台并激活它以获得键盘的焦点。我的代码适用于记事本或 IE,但不适用于 Google Chrome。

//Getting the HWND of Chrome
HWND chromeWindow = FindWindow("Chrome_WidgetWin_1", NULL);

DWORD dwCurrentThread = GetCurrentThreadId();
DWORD dwFGThread = GetWindowThreadProcessId(GetForegroundWindow(), NULL);
AttachThreadInput(dwCurrentThread, dwFGThread, TRUE);

//Actions
AllowSetForegroundWindow(ASFW_ANY);
bool fore =SetForegroundWindow(chromeWindow);
if(fore==false){cout << "fore failed"<<endl;}

bool capture = SetCapture(chromeWindow);
if(capture==false){cout << "capture failed" <<endl;}

bool focus = SetFocus(chromeWindow);
if(focus==false){cout << "focus failed"<<endl;}

bool active = SetActiveWindow(chromeWindow);
if(active==false){cout << "active failed"<<endl;}

//Finishing
AttachThreadInput(dwCurrentThread, dwFGThread, FALSE);

代码将 Google Chrome 窗口设置为前台,但不会激活它或将键盘聚焦在它上面。我不知道出了什么问题。显示的结果是:

capture failed.
focus failed.
active failed.

我能做什么?

最佳答案

嗯,我几天前就找到了答案。

有两个具有相同类名“Chrome_WidgetWin_1”的 Google Chrome 浏览器窗口,我试图激活第一个,但有用的窗口是第二个。因此,我搜索了第二个窗口,然后对该窗口使用了 SetForegroundWindow()。

结果是:

//Getting the HWND of Chrome
HWND chromeWindow = FindWindow("Chrome_WidgetWin_1", NULL);
HWND chrome = GetWindow(chromeWindow, GW_HWNDNEXT);

//Setting the window to the foreground (implies focus and activating)
SetForegroundWindow(chrome);

还是谢谢你

关于c# - 设置事件的 Chrome 窗口 (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21776450/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com