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