如何:在窗体上绘制曲线

更新:2007 年 11 月

本示例演示了在窗体上绘制曲线的多种不同方法。

示例

System.Drawing.Graphics formGraphics = this.CreateGraphics();
System.Drawing.Pen myPen;
myPen = new System.Drawing.Pen(System.Drawing.Color.Black);

// Draw head with an ellipse.
formGraphics.DrawEllipse(myPen, 0, 0, 200, 200);

// Draw winking eye with an arc.
formGraphics.DrawArc(myPen, 40, 40, 40, 40, 180, -180);

// Draw open eye with an ellipse.
formGraphics.DrawEllipse(myPen, 120, 40, 40, 40);

// Draw nose with a Bezier spline.
formGraphics.DrawBezier(myPen, 100, 60, 120, 100, 90, 120, 80, 100);

// Draw mouth with a canonical spline.
Point[] apt = new Point[4];
apt[0] = new Point(60, 140);
apt[1] = new Point(140, 140);
apt[2] = new Point(100, 180);
apt[3] = new Point(60, 140);
formGraphics.DrawCurve(myPen, apt, 0, 3, 0.9f);

myPen.Dispose();
formGraphics.Dispose();

编译代码

此示例需要:

  • 一个 Windows 窗体应用程序项目,其中带有一个名为 formGraphics 的窗体。

此代码必须处于 Form 类的范围内。该窗体的实例由 this 表示。

可靠编程

对任何消耗系统资源的对象(如 BrushGraphics 对象)都应调用 Dispose

请参见

概念

在 Visual C# 中设计用户界面

其他资源

绘制文本和图形

Visual C# 指导教程