我试图在两条线之间画一条路径,如下图所示。
我用下面的代码来做到这一点
Pen usedpen= new Pen(Color.Black, 2);
//Point[] p = {
// new Point(518,10),
// new Point(518,20),
// new Point(518-85,15)
//};
GraphicsPath path = new GraphicsPath();
path.StartFigure();
path.AddLine(new Point(518, 10), new Point(433, 10));
path.AddLine(new Point(518, 40), new Point(433, 40));
path.AddLine(new Point(433,10), new Point(433,40));
//usedpen.LineJoin = LineJoin.Round;
e.Graphics.DrawPath(usedpen, path);
但是在使用此代码后,将绘制以下图形:
手掌心
相关分类