我用钩子函数截获一个窗体的窗口过程WH_CALLWNDPROC,当这个窗体被选中时先接收到WM_NCACTIVATE、然后再接收到WM_ACTIVATE,当选中其它窗体时也同样接收到这两个消息,而且顺序一样,为什么?

解决方案 »

  1.   

    WM_ACTIVATE Notification--------------------------------------------------------------------------------The WM_ACTIVATE message is sent to both the window being activated and the window being deactivated. If the windows use the same input queue, the message is sent synchronously, first to the window procedure of the top-level window being deactivated, then to the window procedure of the top-level window being activated. If the windows use different input queues, the message is sent asynchronously, so the window is activated immediately. SyntaxWM_ACTIVATE    WPARAM wParam
        LPARAM lParam;
        
    ParameterswParam
    The low-order word specifies whether the window is being activated or deactivated. This parameter can be one of the following values. The high-order word specifies the minimized state of the window being activated or deactivated. A nonzero value indicates the window is minimized. 
    WA_ACTIVE
    Activated by some method other than a mouse click (for example, by a call to the SetActiveWindow function or by use of the keyboard interface to select the window).
    WA_CLICKACTIVE
    Activated by a mouse click.
    WA_INACTIVE
    Deactivated.lParam
    Handle to the window being activated or deactivated, depending on the value of the wParam parameter. If the low-order word of wParam is WA_INACTIVE, lParam is the handle to the window being activated. If the low-order word of wParam is WA_ACTIVE or WA_CLICKACTIVE, lParam is the handle to the window being deactivated. This handle can be NULL.