c# – 模拟拖动窗口标题栏的控件

前端之家收集整理的这篇文章主要介绍了c# – 模拟拖动窗口标题栏的控件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经构建了一个自定义控件,我想让人们点击并拖动我的控件,就像他们在窗口标题栏上拖动一样.做这个的最好方式是什么?

到目前为止,当窗口需要移动时,我没有成功地利用鼠标按下,向上和移动事件来解密.

解决方法

除了我的其他答案,您可以在控件中手动执行此操作,如下所示:
Point dragOffset;

protected override void OnMouseDown(MouseEventArgs e) {
    base.OnMouseDown(e);
    if (e.Button == MouseButtons.Left) {
        dragOffset = this.PointToScreen(e.Location);
        var formLocation = FindForm().Location;
        dragOffset.X -= formLocation.X;
        dragOffset.Y -= formLocation.Y;
    }
}

protected override void OnMouseMove(MouseEventArgs e) {
    base.OnMouseMove(e);

    if (e.Button == MouseButtons.Left) {
        Point newLocation = this.PointToScreen(e.Location);

        newLocation.X -= dragOffset.X;
        newLocation.Y -= dragOffset.Y;

        FindForm().Location = newLocation;
    }
}

编辑:测试和修复 – 现在实际上工作.

原文链接:https://www.f2er.com/csharp/98318.html

猜你在找的C#相关文章