DrawingAttributes 构造函数 (Color)

使用指定的 Color 对象初始化 DrawingAttributes 类的新实例。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public Sub New ( _
    color As Color _
)
用法
Dim color As Color

Dim instance As New DrawingAttributes(color)
public DrawingAttributes(
    Color color
)
public:
DrawingAttributes(
    Color color
)
public DrawingAttributes(
    Color color
)
public function DrawingAttributes(
    color : Color
)

参数

备注

修改笔画的绘制属性时,请尝试重复使用某个现有的 DrawingAttributes 对象,而不是每次均创建一个新的对象。创建新的 DrawingAttributes 对象所分配的内存在 DrawingAttributes 对象生存期之后仍随 Ink 对象保留。

示例

此 C# 示例使用某个特定颜色初始化 DrawingAttributes 类的新实例 theDrawingAttributes。

DrawingAttributes theDrawingAttributes = new DrawingAttributes(Color.Red);

此 Microsoft Visual Basic .NET 示例使用某个特定颜色初始化 DrawingAttributes 类的新实例 theDrawingAttributes。

Dim theDrawingAttributes As New DrawingAttributes(Color.Red)

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

DrawingAttributes 类

DrawingAttributes 成员

DrawingAttributes 重载

Microsoft.Ink 命名空间

DrawingAttributes