如何:在窗体上绘制直线
更新:2007 年 11 月
此示例说明如何在窗体上绘制线条。
示例
System.Drawing.Pen myPen;
myPen = new System.Drawing.Pen(System.Drawing.Color.Red);
System.Drawing.Graphics formGraphics = this.CreateGraphics();
formGraphics.DrawLine(myPen, 0, 0, 200, 200);
myPen.Dispose();
formGraphics.Dispose();
编译代码
此示例需要:
- 一个 Windows 窗体应用程序项目,其中带有一个名为 formGraphics 的窗体。
代码必须处于 Form 类的范围内。该窗体的实例由 this 表示。
可靠编程
对任何消耗系统资源的对象(如 Brush 和 Graphics 对象)都应调用 Dispose。