117.info
人生若只如初见

C#中子窗口的拖拽与缩放功能如何实现

在C#中,要实现子窗口的拖拽和缩放功能,可以使用Windows Forms或WPF。这里分别给出两种方法的实现方法:

  1. Windows Forms:

拖拽功能:

首先,需要在子窗口上添加一个Panel控件作为标题栏。然后,为该Panel添加MouseDown、MouseMove和MouseUp事件。

public partial class ChildForm : Form
{
    public ChildForm()
    {
        InitializeComponent();
    }

    private bool dragging = false;
    private Point dragCursorPoint;
    private Point dragFormPoint;

    private void panelTitleBar_MouseDown(object sender, MouseEventArgs e)
    {
        dragging = true;
        dragCursorPoint = Cursor.Position;
        dragFormPoint = this.Location;
    }

    private void panelTitleBar_MouseMove(object sender, MouseEventArgs e)
    {
        if (dragging)
        {
            Point dif = Point.Subtract(Cursor.Position, new Size(dragCursorPoint));
            this.Location = Point.Add(dragFormPoint, new Size(dif));
        }
    }

    private void panelTitleBar_MouseUp(object sender, MouseEventArgs e)
    {
        dragging = false;
    }
}

缩放功能:

在子窗口的边缘添加一个透明的Panel控件作为缩放区域。然后,为该Panel添加MouseDown、MouseMove和MouseUp事件。

private bool resizing = false;
private Point resizeCursorPoint;
private Point resizeFormSize;

private void panelResize_MouseDown(object sender, MouseEventArgs e)
{
    resizing = true;
    resizeCursorPoint = Cursor.Position;
    resizeFormSize = this.Size;
}

private void panelResize_MouseMove(object sender, MouseEventArgs e)
{
    if (resizing)
    {
        Point dif = Point.Subtract(Cursor.Position, new Size(resizeCursorPoint));
        this.Size = new Size(resizeFormSize.Width + dif.X, resizeFormSize.Height + dif.Y);
    }
}

private void panelResize_MouseUp(object sender, MouseEventArgs e)
{
    resizing = false;
}
  1. WPF:

拖拽功能:

在子窗口的标题栏上添加鼠标事件。

    

private bool dragging = false;
private Point dragStartPosition;

private void titleBar_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    dragging = true;
    dragStartPosition = e.GetPosition(this);
    this.CaptureMouse();
}

private void titleBar_MouseMove(object sender, MouseEventArgs e)
{
    if (dragging)
    {
        Point currentPosition = e.GetPosition(this);
        double offsetX = currentPosition.X - dragStartPosition.X;
        double offsetY = currentPosition.Y - dragStartPosition.Y;
        this.Left += offsetX;
        this.Top += offsetY;
    }
}

protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
{
    base.OnMouseLeftButtonUp(e);
    dragging = false;
    this.ReleaseMouseCapture();
}

缩放功能:

在子窗口的边缘添加一个透明的Border控件作为缩放区域。然后,为该Border添加鼠标事件。


private bool resizing = false;
private Point resizeStartPosition;

private void resizeGrip_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    resizing = true;
    resizeStartPosition = e.GetPosition(this);
    this.CaptureMouse();
}

private void resizeGrip_MouseMove(object sender, MouseEventArgs e)
{
    if (resizing)
    {
        Point currentPosition = e.GetPosition(this);
        double offsetX = currentPosition.X - resizeStartPosition.X;
        double offsetY = currentPosition.Y - resizeStartPosition.Y;
        this.Width += offsetX;
        this.Height += offsetY;
    }
}

protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
{
    base.OnMouseLeftButtonUp(e);
    resizing = false;
    this.ReleaseMouseCapture();
}

这样就实现了子窗口的拖拽和缩放功能。

未经允许不得转载 » 本文链接:https://www.117.info/ask/fe5c0AzsOCQVUBQ.html

推荐文章

  • c# winform的性能优化方法

    在C# WinForm应用程序中,性能优化是一个重要的任务。以下是一些建议和技巧,可以帮助您提高WinForm应用程序的性能: 减少不必要的控件:尽量减少在窗体上使用的...

  • c# winform的异常处理策略

    在C# WinForm应用程序中,异常处理策略主要包括以下几个方面: 使用try-catch语句块:在可能出现异常的代码段周围使用try-catch语句块。这样,当异常发生时,程序...

  • c# winform的事件处理机制

    C# WinForm 是一种基于 Windows 操作系统的图形用户界面(GUI)编程模型 事件:事件是由控件(如按钮、文本框等)触发的操作。例如,当用户点击按钮时,会触发一...

  • c# winform的图形绘制技巧

    在C# WinForm中,图形绘制是一个常见的任务。以下是一些建议和技巧,可以帮助您更有效地进行图形绘制: 使用System.Drawing命名空间:这个命名空间包含了所有与图...

  • 利用C#实现子窗口的自定义绘制

    在C#中,可以通过创建一个自定义的子窗口类并重写其OnPaint方法来实现子窗口的自定义绘制
    using System;
    using System.Drawing;
    using System.Wi...

  • C# Vector集合的内存管理需要注意什么

    在C#中,Vector集合的内存管理需要注意以下几点: 预先分配容量:在创建Vector集合时,如果已知其大小,可以预先分配足够的容量,以减少动态扩展带来的性能开销。...

  • 利用C# Vector实现数据的批量处理

    在C#中,Vector通常指的是System.Numerics.Vector类,它是一个用于表示向量的结构
    首先,确保已经安装了System.Numerics.Vectors包。如果没有,请使用以下命...

  • 在C#中如何自定义Vector的排序规则

    在C#中,你可以使用List和自定义的比较器来实现自定义的Vector排序规则
    using System;
    using System.Collections.Generic; class Program
    { stat...