using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace diandian
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
int clickCount = 0;
Point[] d = new Point[4];
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
Graphics g = this.CreateGraphics();
Pen pen = new Pen(Color.Blue, 2);
Brush brush = new SolidBrush(Color.Blue);
g.DrawEllipse(pen, e.X, e.Y, 7, 7);
g.FillEllipse(brush, e.X, e.Y, 7, 7);
d[clickCount] = e.Location;
//延长线
if (clickCount >= 1)
{
g.DrawLine(pen, d[clickCount], d[clickCount - 1]);
if (clickCount == 1)
{
d[2].X = 2 * d[1].X - d[0].X;
d[2].Y = 2 * d[1].Y - d[0].Y;
g.DrawLine(pen, d[2], d[1]);
}
}
clickCount++;
if (clickCount == 2)
clickCount = 0;
}
}
}
【C#】延长线
最新推荐文章于 2023-01-03 15:29:50 发布