将鼠标事件传递给父控件
环境:.NET Framework 2.0,VS 2008。
我试图创建将通过某些鼠标事件(一定的.NET控件(标签,面板)的子类MouseDown
,MouseMove
,MouseUp
)到它的父控制(或可替换地到顶层形式)。我可以通过在标准控件的实例中为这些事件创建处理程序来做到这一点,例如:
public class TheForm : Form{
private Label theLabel;
private void InitializeComponent()
{
theLabel = new Label();
theLabel.MouseDown += new MouseEventHandler(theLabel_MouseDown);
}
private void theLabel_MouseDown(object sender, MouseEventArgs e)
{
int xTrans = e.X + this.Location.X;
int yTrans = e.Y + this.Location.Y;
MouseEventArgs eTrans = new MouseEventArgs(e.Button, e.Clicks, xTrans, yTrans, e.Delta);
this.OnMouseDown(eTrans);
}
}
我无法将事件处理程序移到控件的子类中,因为引发父控件中事件的方法受到保护,并且我没有父控件的限定符:
无法
System.Windows.Forms.Control.OnMouseDown(System.Windows.Forms.MouseEventArgs)
通过类型的限定符访问受保护的成员System.Windows.Forms.Control
;限定符必须是类型TheProject.NoCaptureLabel
(或从其派生)。
我正在研究重写WndProc
子类中控件的方法,但希望有人可以给我更干净的解决方案。
回答:
是。经过大量搜索,我发现了文章“工具提示样式的浮动控件”,该文章用于WndProc
将消息从更改WM_NCHITTEST
为HTTRANSPARENT
,使Control
鼠标事件透明。
为此,创建一个继承自的控件,Label
然后简单地添加以下代码。
protected override void WndProc(ref Message m){
const int WM_NCHITTEST = 0x0084;
const int HTTRANSPARENT = (-1);
if (m.Msg == WM_NCHITTEST)
{
m.Result = (IntPtr)HTTRANSPARENT;
}
else
{
base.WndProc(ref m);
}
}
我已经在.NET Framework 4客户端配置文件的Visual Studio 2010中对此进行了测试。
以上是 将鼠标事件传递给父控件 的全部内容, 来源链接: utcz.com/qa/417173.html