小编典典

将鼠标事件传递给父控件

c#

环境:.NET Framework 2.0,VS 2008。

我试图创建将通过某些鼠标事件(一定的.NET控件(标签,面板)的子类MouseDownMouseMoveMouseUp)到它的父控制(或可替换地到顶层形式)。我可以通过在标准控件的实例中为这些事件创建处理程序来做到这一点,例如:

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子类中控件的方法,但希望有人可以给我更干净的解决方案。


阅读 556

收藏
2020-05-19

共1个答案

小编典典

是。经过大量搜索,我发现了文章“工具提示样式的浮动控件”,该文章用于WndProc将消息从更改WM_NCHITTESTHTTRANSPARENT,使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中对此进行了测试。

2020-05-19