如何:使用 .NET Framework 绘制形状
更新:2007 年 11 月
下面的代码示例使用 Graphics 类来修改 OnPaint 事件处理程序,以便检索指向主窗体的 Graphics 对象的指针。然后,此指针将用于设置窗体的背景色,并通过使用 Graphics.DrawLine 和 DrawArc 方法来绘制直线和弧形。
说明: |
---|
GDI+ 由 Windows XP 附带并且是 Windows NT 4.0 SP 6、Windows 2000、Windows 98 及 Windows Me 的可再发行组件。若要下载最新的可再发行组件,请参见 https://go.microsoft.com/fwlink/?linkid=11232。有关更多信息,请参见 GDI+。 |
示例
#using <system.drawing.dll>
using namespace System;
using namespace System::Drawing;
// ...
protected:
Void Form1::OnPaint(PaintEventArgs^ pe )
{
Graphics^ g = pe->Graphics;
g->Clear(Color::AntiqueWhite);
Rectangle rect = Form::ClientRectangle;
Rectangle smallRect;
smallRect.X = rect.X + rect.Width / 4;
smallRect.Y = rect.Y + rect.Height / 4;
smallRect.Width = rect.Width / 2;
smallRect.Height = rect.Height / 2;
Pen^ redPen = gcnew Pen(Color::Red);
redPen->Width = 4;
g->DrawLine(redPen, 0, 0, rect.Width, rect.Height);
Pen^ bluePen = gcnew Pen(Color::Blue);
bluePen->Width = 10;
g->DrawArc( bluePen, smallRect, 90, 270 );
}