13

我正在制作一个将 ListView 设置为详细信息的 WinForms 应用程序,以便可以显示几列。

当鼠标悬停在控件上并且用户使用鼠标滚轮时,我希望此列表滚动。现在,滚动只发生在 ListView 有焦点时。

即使没有焦点,如何使 ListView 滚动?

4

2 回答 2

7

“简单”和有效的解决方案:

public class FormContainingListView : Form, IMessageFilter
{
    public FormContainingListView()
    {
        // ...
        Application.AddMessageFilter(this);
    }

    #region mouse wheel without focus

    // P/Invoke declarations
    [DllImport("user32.dll")]
    private static extern IntPtr WindowFromPoint(Point pt);
    [DllImport("user32.dll")]
    private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);

    public bool PreFilterMessage(ref Message m)
    {
        if (m.Msg == 0x20a)
        {
            // WM_MOUSEWHEEL, find the control at screen position m.LParam
            Point pos = new Point(m.LParam.ToInt32() & 0xffff, m.LParam.ToInt32() >> 16);
            IntPtr hWnd = WindowFromPoint(pos);
            if (hWnd != IntPtr.Zero && hWnd != m.HWnd && System.Windows.Forms.Control.FromHandle(hWnd) != null)
            {
                SendMessage(hWnd, m.Msg, m.WParam, m.LParam);
                return true;
            }
        }
        return false;
    }

    #endregion
}
于 2014-09-12T21:11:23.133 回答
2

您通常只会在获得焦点时将鼠标/键盘事件发送到窗口或控件。如果您想在没有焦点的情况下看到它们,那么您将不得不放置一个较低级别的钩子。

这是一个示例低级鼠标钩子

于 2008-09-17T20:22:39.030 回答