标签: c# winforms
我想在一条线上画一个圆。
我正在使用e.Graphics.DrawLine(blackPen, x1, y1, x2, y2);画线,使用e.Graphics.DrawArc(greenPen, rect1, 0, 360);画圆。
e.Graphics.DrawLine(blackPen, x1, y1, x2, y2);
e.Graphics.DrawArc(greenPen, rect1, 0, 360);
Here是我程序的输出。我希望那个绿色圆圈在黑线上方。