あなたが説明することは、マウスホイールを使用するために実際にクリックしてコントロールにフォーカスする必要がない、たとえば Microsoft Outlook の機能を複製したいように聞こえます。
これは、解決すべき比較的高度な問題です。IMessageFilter
フォームを含むインターフェイスを実装し、イベントを探しWM_MOUSEWHEEL
て、マウスがホバリングしているコントロールにイベントを誘導する必要があります。
ここに例があります(ここから):
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);
}
}
このコードは、メイン フォームだけでなく、アプリケーション内のすべてのフォームに対してアクティブであることに注意してください。