ToolboxItemAttribute 构造函数

定义

初始化 ToolboxItemAttribute 类的新实例,并指定是否使用默认初始化值。

重载

ToolboxItemAttribute(Boolean)

初始化 ToolboxItemAttribute 类的新实例,并指定是否使用默认初始化值。

ToolboxItemAttribute(String)

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

ToolboxItemAttribute(Type)

使用工具箱项的指定类型初始化 ToolboxItemAttribute 类的新实例。

ToolboxItemAttribute(Boolean)

Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs

初始化 ToolboxItemAttribute 类的新实例,并指定是否使用默认初始化值。

public:
 ToolboxItemAttribute(bool defaultType);
public ToolboxItemAttribute (bool defaultType);
new System.ComponentModel.ToolboxItemAttribute : bool -> System.ComponentModel.ToolboxItemAttribute
Public Sub New (defaultType As Boolean)

参数

defaultType
Boolean

如果为 true,则创建默认类型的工具箱项特性;如果为 false,则不为该特性关联默认工具箱项支持。

注解

默认情况下,ToolboxItemType 属性设置为 ToolboxItem

适用于

ToolboxItemAttribute(String)

Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs

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

public:
 ToolboxItemAttribute(System::String ^ toolboxItemTypeName);
public ToolboxItemAttribute (string toolboxItemTypeName);
new System.ComponentModel.ToolboxItemAttribute : string -> System.ComponentModel.ToolboxItemAttribute
Public Sub New (toolboxItemTypeName As String)

参数

toolboxItemTypeName
String

工具箱项的类型名称和包含该类型的程序集的名称。

注解

此构造函数要求toolboxItemTypeName参数采用项类型的>格式<名称<程序集>的名称 (例如 System.Drawing.Design.ToolboxItem System.Drawing.Design) 。

适用于

ToolboxItemAttribute(Type)

Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs
Source:
ToolboxItemAttribute.cs

使用工具箱项的指定类型初始化 ToolboxItemAttribute 类的新实例。

public:
 ToolboxItemAttribute(Type ^ toolboxItemType);
public ToolboxItemAttribute (Type toolboxItemType);
new System.ComponentModel.ToolboxItemAttribute : Type -> System.ComponentModel.ToolboxItemAttribute
Public Sub New (toolboxItemType As Type)

参数

toolboxItemType
Type

工具箱项的类型。

适用于