ToolboxItemWrapper 构造函数

定义

初始化 ToolboxItemWrapper 类的新实例。

重载

ToolboxItemWrapper()

初始化 ToolboxItemWrapper 类的新实例。

ToolboxItemWrapper(Type)

用工具的类型来初始化 ToolboxItemWrapper 类的新实例。

ToolboxItemWrapper(Type, String)

用工具的类型和指定的显示名称来初始化 ToolboxItemWrapper 类的新实例。

ToolboxItemWrapper(Type, String, String)

用工具的类型以及位图和显示的指定名称来初始化 ToolboxItemWrapper 类的新实例。

ToolboxItemWrapper(String, String, String, String)

用工具、程序集、位图和显示的指定名称来初始化 ToolboxItemWrapper 类的新实例。

ToolboxItemWrapper()

初始化 ToolboxItemWrapper 类的新实例。

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

注解

无参数构造函数使用空 string初始化 ToolNameAssemblyNameBitmapNameDisplayName 属性。

适用于

ToolboxItemWrapper(Type)

用工具的类型来初始化 ToolboxItemWrapper 类的新实例。

public:
 ToolboxItemWrapper(Type ^ toolType);
public ToolboxItemWrapper (Type toolType);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type)

参数

toolType
Type

工具的类型。

注解

可从 ToolName 参数提取 AssemblyNametoolType 属性。 BitmapNameDisplayName 属性均使用空 string初始化。

适用于

ToolboxItemWrapper(Type, String)

用工具的类型和指定的显示名称来初始化 ToolboxItemWrapper 类的新实例。

public:
 ToolboxItemWrapper(Type ^ toolType, System::String ^ displayName);
public ToolboxItemWrapper (Type toolType, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type, displayName As String)

参数

toolType
Type

工具的类型。

displayName
String

显示的名称。

注解

可从 ToolName 参数提取 AssemblyNametoolType 属性。 使用 BitmapNamestring的 初始化属性。

适用于

ToolboxItemWrapper(Type, String, String)

用工具的类型以及位图和显示的指定名称来初始化 ToolboxItemWrapper 类的新实例。

public:
 ToolboxItemWrapper(Type ^ toolType, System::String ^ bitmapName, System::String ^ displayName);
public ToolboxItemWrapper (Type toolType, string bitmapName, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type * string * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type, bitmapName As String, displayName As String)

参数

toolType
Type

工具的类型。

bitmapName
String

一个包含位图名称的 string

displayName
String

一个包含显示名的 string

注解

可从 ToolName 参数提取 AssemblyNametoolType 属性。

适用于

ToolboxItemWrapper(String, String, String, String)

用工具、程序集、位图和显示的指定名称来初始化 ToolboxItemWrapper 类的新实例。

public:
 ToolboxItemWrapper(System::String ^ toolName, System::String ^ assemblyName, System::String ^ bitmapName, System::String ^ displayName);
public ToolboxItemWrapper (string toolName, string assemblyName, string bitmapName, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : string * string * string * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolName As String, assemblyName As String, bitmapName As String, displayName As String)

参数

toolName
String

工具的名称。

assemblyName
String

程序集的名称。

bitmapName
String

位图的名称。

displayName
String

显示的名称。

适用于