本节内容
ms-help://MS.MSDNQTR.2003FEB.2052/cscon/html/vcsorigraphicsprogrammingexampletopics.htm

在运行时创建位图 
创建笔 
创建实心画笔 
在窗体上绘制实心椭圆 
在窗体上绘制实心矩形 
在窗体上绘制线条 
绘制空心形状 
在窗体上绘制文本 
在窗体上绘制竖向文本 
打印预览窗体 
打印 DataGrid 
打印文本文件 
打印窗体 
设置笔的颜色 
创建 SolidBrush 对象。
示例
System.Drawing.SolidBrush myBrush;
myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Black);

在窗体上绘制实心椭圆。
示例
System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);
System.Drawing.Graphics formGraphics = this.CreateGraphics();
formGraphics.FillEllipse(myBrush, new Rectangle(0,0,200,300));
myBrush.Dispose();
formGraphics.Dispose();

在窗体上绘制实心矩形。
示例

System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);
 System.Drawing.Graphics formGraphics = this.CreateGraphics();
 formGraphics.FillRectangle(myBrush, new Rectangle(0,0,200,300));
 myBrush.Dispose();
 formGraphics.Dispose();


在窗体上绘制线条。
示例

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();