Style 构造函数

定义

重载

Style()

初始化 Style 类的新实例,其中没有初始 TargetType 和空 的 Setters 集合。

Style(TypeName)

使用指定的初始 TargetType 和空的 Setters 集合初始化 Style 类的新实例。

Style()

初始化 Style 类的新实例,其中没有初始 TargetType 和空 的 Setters 集合。

public:
 Style();
 Style();
public Style();
function Style()
Public Sub New ()

另请参阅

适用于

Style(TypeName)

使用指定的初始 TargetType 和空的 Setters 集合初始化 Style 类的新实例。

public:
 Style(TypeName targetType);
 Style(TypeName const& targetType);
public Style(System.Type targetType);
function Style(targetType)
Public Sub New (targetType As Type)

参数

targetType
TypeName Type

要为 Style 设置的 TargetType

注解

重要

如果使用 .NET 语言 (C# 或 Visual Basic) 进行编程, TypeName 类型将投影为 System.Type。 上述 C# 和 Visual Basic 语法中未正确指示这一点; targetType 参数应采用 System.Type。 使用 C# 编程时,通常使用 typeof 运算符来获取对某个类型的 System.Type 的引用。 在 Visual Basic 中,使用 GetType

适用于