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.
我必须处理一个讨厌的 MS Windows 应用程序,它一旦失去焦点就退出工作。我的问题是,我怎样才能以某种方式欺骗这个应用程序以相信它仍然是焦点,尽管它真的不是?
我的想法是:
发送 WM_ACTIVATE 消息适用于某些应用程序:
SendMessage(hWnd, WM_ACTIVATE, WA_CLICKACTIVE, hWnd);
将最后一个参数保留为 NULL 也可能有效。