我知道哪个使用
GetForegroundWindow
功能我可以获得当前活动窗口句柄,但现在我想检测活动窗口(任何应用程序)何时更改(变为活动状态).我想到的第一个解决方案是
>存储GetForegroundWindow函数返回的当前值(句柄).
>使用计时器组件再次检查GetForegroundWindow返回的值并与旧值进行比较.
我想知道是否存在更好的方法来执行此操作可能使用Windows消息或其他东西.
解决方法
使用
SetWindowsHookEx
安装CBT挂钩. MSDN描述了您将提供的
callback function:
The system calls this function before activating,creating,destroying,minimizing,maximizing,moving,or sizing a window; before completing a system command; before removing a mouse or keyboard event from the system message queue; before setting the keyboard focus; or before synchronizing with the system message queue. A computer-based training (CBT) application uses this hook procedure to receive useful notifications from the system.
您感兴趣的电话是第一个参数是HCBT_Activate的电话. wParam参数将告诉您窗口句柄.