AppActivate似乎是我所需要的,我相当确定必须有一个c++ / mfc等效项。有一个吗?

最佳答案

您可以尝试以下方法:

SetForegroundWindow(FindWindow(NULL, "window title"));
// or
SetForegroundWindow(AfxGetMainWnd());

10-04 14:05