Scrolling the Window Under the Mouse

后端 未结 4 785
眼角桃花
眼角桃花 2021-01-06 06:54

If you take a look at Visual Studio 2012, you\'ll notice that if you use the mouse wheel, the window under your mouse will scroll, and not the focused window. That is, if yo

4条回答
  •  感情败类
    2021-01-06 07:29

    Apparently we can address this issue at the heart of the program. Look at your code for the message loop, which should be in your WinMain method:

    while (GetMessage (&msg, NULL, 0, 0) > 0)
    {
        TranslateMessage (&msg);
        DispatchMessage (&msg);
    }
    

    Here, we just need to say that if the message is a WM_MOUSEWHEEL message, that we want to pass it to the window under the mouse, and not the focus window:

    POINT mouse;
    
    while (GetMessage (&msg, NULL, 0, 0) > 0)
    {
        //Any other message.
        if (msg.message != WM_MOUSEWHEEL)
        {
            TranslateMessage (&msg);
            DispatchMessage (&msg);
        }
        //Send the message to the window over which the mouse is hovering.
        else
        {
            GetCursorPos (&mouse);
            msg.hwnd = WindowFromPoint (mouse);
            TranslateMessage (&msg);
            DispatchMessage (&msg);
        }
    }
    

    And now, the window under your mouse will always get scroll messages, and not the focused window.

提交回复
热议问题