gpt4 book ai didi

.net - Windows 窗体 : capturing MouseWheel

转载 作者:行者123 更新时间:2023-12-04 13:35:02 26 4
gpt4 key购买 nike

我有一个 Windows 窗体(在 C#.NET 中工作)。

该表单顶部有几个面板,底部有一些 ComboBoxes 和 DataGridViews。

我想在顶部面板上使用滚动事件,但是如果选择例如ComboBox 失去焦点。面板包含各种其他控件。

当鼠标悬停在任何面板上时,我怎么能总是收到鼠标滚轮事件?
到目前为止,我尝试使用 MouseEnter/MouseEnter 事件,但没有运气。

最佳答案

您所描述的内容听起来像是您想要复制例如 Microsoft Outlook 的功能,您无需实际单击即可将控件集中在其上以使用鼠标滚轮。

这是一个需要解决的相对高级的问题:它涉及实现 IMessageFilter包含表单的界面,寻找WM_MOUSEWHEEL事件并将它们引导到鼠标悬停的控件。

这是一个示例(来自 here ):

using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
using System.Runtime.InteropServices;

namespace WindowsApplication1 {
public partial class Form1 : Form, IMessageFilter {
public Form1() {
InitializeComponent();
Application.AddMessageFilter(this);
}

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());
IntPtr hWnd = WindowFromPoint(pos);
if (hWnd != IntPtr.Zero && hWnd != m.HWnd && Control.FromHandle(hWnd) != null) {
SendMessage(hWnd, m.Msg, m.WParam, m.LParam);
return true;
}
}
return false;
}

// 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);
}
}

请注意,此代码对应用程序中的所有表单都有效,而不仅仅是主表单。

关于.net - Windows 窗体 : capturing MouseWheel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4769854/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com