ToolboxItemWrapper Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Inicializa uma nova instância da classe ToolboxItemWrapper.
Sobrecargas
ToolboxItemWrapper() |
Inicializa uma nova instância da classe ToolboxItemWrapper. |
ToolboxItemWrapper(Type) |
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo da ferramenta. |
ToolboxItemWrapper(Type, String) |
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo da ferramenta e o nome de exibição especificado. |
ToolboxItemWrapper(Type, String, String) |
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo de ferramenta e os nomes especificados do bitmap e da exibição. |
ToolboxItemWrapper(String, String, String, String) |
Inicializa uma nova instância da classe ToolboxItemWrapper com os nomes especificados da ferramenta, do assembly, do bitmap e da exibição. |
ToolboxItemWrapper()
Inicializa uma nova instância da classe ToolboxItemWrapper.
public:
ToolboxItemWrapper();
public ToolboxItemWrapper ();
Public Sub New ()
Comentários
O construtor sem parâmetros inicializa as ToolNamepropriedades , AssemblyNameBitmapName, e DisplayName com um vaziostring
.
Aplica-se a
ToolboxItemWrapper(Type)
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo da ferramenta.
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)
Parâmetros
- toolType
- Type
O tipo da ferramenta.
Comentários
As ToolName propriedades e AssemblyName podem ser extraídas do toolType
parâmetro . As BitmapName propriedades e DisplayName são inicializadas com um vazio string
.
Aplica-se a
ToolboxItemWrapper(Type, String)
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo da ferramenta e o nome de exibição especificado.
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)
Parâmetros
- toolType
- Type
O tipo da ferramenta.
- displayName
- String
O nome da exibição.
Comentários
As ToolName propriedades e AssemblyName podem ser extraídas do toolType
parâmetro . A BitmapName propriedade é inicializada com um vazio string
.
Aplica-se a
ToolboxItemWrapper(Type, String, String)
Inicializa uma nova instância da classe ToolboxItemWrapper com o tipo de ferramenta e os nomes especificados do bitmap e da exibição.
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)
Parâmetros
- toolType
- Type
O tipo da ferramenta.
- bitmapName
- String
Um string
que contém o nome do bitmap.
- displayName
- String
Um string
que contém o nome da exibição.
Comentários
As ToolName propriedades e AssemblyName podem ser extraídas do toolType
parâmetro .
Aplica-se a
ToolboxItemWrapper(String, String, String, String)
Inicializa uma nova instância da classe ToolboxItemWrapper com os nomes especificados da ferramenta, do assembly, do bitmap e da exibição.
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)
Parâmetros
- toolName
- String
O nome da ferramenta.
- assemblyName
- String
O nome do assembly.
- bitmapName
- String
O nome do bitmap.
- displayName
- String
O nome da exibição.