我发现了这段代码,但我不知道如何在WinForms中使用它?我的问题是我需要如何逐步使用此代码在表单中绘制半圆。
private void DrawEllipseRectangle(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.Black, 3);
// Create rectangle for ellipse.
Rectangle rect = new Rectangle(0, 0, 200, 100);
// Draw ellipse to screen.
e.Graphics.DrawEllipse(blackPen, rect);
}
答案 0 :(得分:4)
使用Graphics.DrawPie
绘制圆形的饼图。半圆是一个180度扫描的扇形切片。