如何在C#中绘制半圆?

时间:2013-01-18 19:27:00

标签: c#

我发现了这段代码,但我不知道如何在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);
    }

1 个答案:

答案 0 :(得分:4)

使用Graphics.DrawPie绘制圆形的饼图。半圆是一个180度扫描的扇形切片。