Style 构造函数

定义

初始化 Style 类的新实例。

重载

Style()

初始化 Style 类的新实例。

Style(Type)

初始化 Style 类的一个新实例,以便在指定的 Type 上使用。

Style(Type, Style)

基于指定的 Style 初始化 Type 类的一个新实例,以便在指定的 Style 上使用。

Style()

初始化 Style 类的新实例。

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

注解

此构造函数调用需要延迟验证 TargetTypeBasedOn 样式类型。 如果在分析程序上下文之外使用,则行为未定义。

适用于

Style(Type)

初始化 Style 类的一个新实例,以便在指定的 Type 上使用。

public:
 Style(Type ^ targetType);
public Style (Type targetType);
new System.Windows.Style : Type -> System.Windows.Style
Public Sub New (targetType As Type)

参数

targetType
Type

要应用该样式的类型。

适用于

Style(Type, Style)

基于指定的 Style 初始化 Type 类的一个新实例,以便在指定的 Style 上使用。

public:
 Style(Type ^ targetType, System::Windows::Style ^ basedOn);
public Style (Type targetType, System.Windows.Style basedOn);
new System.Windows.Style : Type * System.Windows.Style -> System.Windows.Style
Public Sub New (targetType As Type, basedOn As Style)

参数

targetType
Type

要应用该样式的类型。

basedOn
Style

此样式所基于的样式。

适用于