Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下行
SetForegroundWindow(hWnd);
在 C++ 中获得焦点到 ie8 窗口。实际发生的是,我获得了 2 次焦点,然后如果我下次打开而不是获得焦点,它只会在任务栏中以橙色闪烁。请为此提供一个解决方案。有什么选择SetForegroundWindow()吗?我试过使用
SetForegroundWindow()
SendMessage(hWnd, WM_SYSCOMMAND, SW_SHOW,0);
那没起效。
尝试这个:
ShowWindow(hWnd,SW_SHOWMAXIMIZED);