如前所述,不同线条窗口的输入是独立处理的。 AttachThreadInput API允许共享线条状态, 特别是 :
By using the AttachThreadInput function, a thread can attach its input
processing mechanism to another thread. [...] This also allows threads
to share their input states, so they can call the SetFocus function to
set the keyboard focus to a window of a different thread.
现在,当你看到当前在前景的窗口时, 如果您与前景窗口的窗口线共享您的线状状态, 您的 < code> SetFocus 将会从那里窃取焦点 。
CWindow Window = GetForegroundWindow();
if(Window)
{
const DWORD nWindowThreadIdentifier = Window.GetWindowThreadID();
const DWORD nThreadIdentifier = GetCurrentThreadId();
AttachThreadInput(nThreadIdentifier, nWindowThreadIdentifier, TRUE);
GetDlgItem(IDC_EDIT).SetFocus(); // This succeeds now as we are sharing thread state with foreground window
AttachThreadInput(nThreadIdentifier, nWindowThreadIdentifier, FALSE);
m_sAction = _T("Done");
} else
m_sAction = _T("Nothing to do");
另见:,