Graphics 类

封装一个 GDI+ 绘图图面。无法继承此类。

**命名空间:**System.Drawing
**程序集:**System.Drawing(在 system.drawing.dll 中)

语法

声明
Public NotInheritable Class Graphics
    Inherits MarshalByRefObject
    Implements IDeviceContext, IDisposable
用法
Dim instance As Graphics
public sealed class Graphics : MarshalByRefObject, IDeviceContext, IDisposable
public ref class Graphics sealed : public MarshalByRefObject, IDeviceContext, IDisposable
public final class Graphics extends MarshalByRefObject implements IDeviceContext, IDisposable
public final class Graphics extends MarshalByRefObject implements IDeviceContext, IDisposable

备注

Graphics 类提供将对象绘制到显示设备的方法。Graphics 与特定的设备上下文关联。

通过调用从 System.Windows.Forms.Control 继承的对象的 Control.CreateGraphics 方法,或通过处理控件的 Control.Paint 事件并访问 System.Windows.Forms.PaintEventArgs 类的 Graphics 属性,可以获取 Graphics

继承层次结构

System.Object
   System.MarshalByRefObject
    System.Drawing.Graphics

线程安全

此类型的任何公共静态(Visual Basic 中的 Shared)成员都是线程安全的,但不保证所有实例成员都是线程安全的。

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

.NET Compact Framework

受以下版本支持:2.0、1.0

请参见

参考

Graphics 成员
System.Drawing 命名空间

其他资源

如何:创建用于绘制的 Graphics 对象
图形编程入门