AnnotationResource 构造函数

定义

初始化 AnnotationResource 类的新实例。

重载

AnnotationResource()

此构造函数支持 Windows Presentation Foundation 基础结构,且不应在代码中直接使用。

AnnotationResource(Guid)

此构造函数支持 Windows Presentation Foundation 基础结构,且不应在代码中直接使用。

AnnotationResource(String)

使用指定的名称初始化 AnnotationResource 类的新实例。

AnnotationResource()

此构造函数支持 Windows Presentation Foundation 基础结构,且不应在代码中直接使用。

public:
 AnnotationResource();
public AnnotationResource ();
Public Sub New ()

注解

此构造函数仅用于注释序列化程序。 对于应用程序需求,请使用 AnnotationResource 接受指定 name 参数的构造函数。

适用于

AnnotationResource(Guid)

此构造函数支持 Windows Presentation Foundation 基础结构,且不应在代码中直接使用。

public:
 AnnotationResource(Guid id);
public AnnotationResource (Guid id);
new System.Windows.Annotations.AnnotationResource : Guid -> System.Windows.Annotations.AnnotationResource
Public Sub New (id As Guid)

参数

id
Guid

标识此资源的全局唯一标识符 (GUID)。

例外

id 等于 Guid.Empty。

注解

此构造函数仅用于注释序列化程序。 对于应用程序需求,请使用 AnnotationResource 接受指定 name 参数的构造函数。

适用于

AnnotationResource(String)

使用指定的名称初始化 AnnotationResource 类的新实例。

public:
 AnnotationResource(System::String ^ name);
public AnnotationResource (string name);
new System.Windows.Annotations.AnnotationResource : string -> System.Windows.Annotations.AnnotationResource
Public Sub New (name As String)

参数

name
String

用于从在同一批注中定义的其他 AnchorsCargos 标识此资源的名称。

例外

namenull

注解

name 为方便起见提供参数,不会对字符串执行验证。

构造 AnnotationResource 函数会自动创建可通过该属性访问的 Id GUID。

适用于