在 C# 中拖放矩形 [英] Drag and drop rectangle in C#

查看:27
本文介绍了在 C# 中拖放矩形的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道如何在 C# 中绘制矩形并将其拖放到页面中我的代码来绘制它但我无法拖放它.

I want to know how to draw rectangle in C# and make it dragged and dropped in the page here my code to draw it but I cannot drag or drop it.

public partial class Form1 : Form
{
    public bool drag = false;
    int cur_x, cur_y;
    Rectangle rec = new Rectangle(10, 10, 100, 100);
    public Form1()
    {
        InitializeComponent();
    }

    protected override void OnPaint(PaintEventArgs r)
    {
        base.OnPaint(r);
        Graphics g = r.Graphics;
        //g.DrawRectangle(Pens.Black, rec);
        g.FillRectangle(Brushes.Aquamarine, rec);

    }
    private void recmousedown(object sender, MouseEventArgs m)
    {
        if (m.Button != MouseButtons.Left)
            return;
        rec = new Rectangle(m.X, m.Y,100,100);

        drag = true;
        cur_x = m.X;
        cur_y = m.Y;
    }

    private void recmousemove(object sender, MouseEventArgs m)
    {
        if (m.Button != MouseButtons.Left)
            return;

       rec.X = m.X;
       rec.Y = m.Y;
       Invalidate();
    }
}

推荐答案

你已经很接近了,你只需要更好地初始化矩形并在 Move 事件中调整矩形大小:

You're pretty close, you just need to initialize the rectangle better and adjust the rectangle size in the Move event:

  public partial class Form1 : Form {
    public Form1() {
      InitializeComponent();
      this.DoubleBuffered = true;
    }
    Rectangle rec = new Rectangle(0, 0, 0, 0);

    protected override void OnPaint(PaintEventArgs e) {
      e.Graphics.FillRectangle(Brushes.Aquamarine, rec);
    }
    protected override void OnMouseDown(MouseEventArgs e) {
      if (e.Button == MouseButtons.Left) {
        rec = new Rectangle(e.X, e.Y, 0, 0);
        Invalidate();
      }
    }
    protected override void OnMouseMove(MouseEventArgs e) {
      if (e.Button == MouseButtons.Left) {
        rec.Width = e.X - rec.X;
        rec.Height = e.Y - rec.Y;
        Invalidate();
      }
    }
  }

这篇关于在 C# 中拖放矩形的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆