Compartir a través de


ToolBoxItems.SelectedItem (Propiedad)

Obtiene el elemento seleccionado actualmente en la ficha del Cuadro de herramientas, si hay alguno.

Espacio de nombres:  EnvDTE
Ensamblado:  EnvDTE (en EnvDTE.dll)

Sintaxis

'Declaración
ReadOnly Property SelectedItem As ToolBoxItem
ToolBoxItem SelectedItem { get; }
property ToolBoxItem^ SelectedItem {
    ToolBoxItem^ get ();
}
abstract SelectedItem : ToolBoxItem
function get SelectedItem () : ToolBoxItem

Valor de propiedad

Tipo: EnvDTE.ToolBoxItem
Un objeto ToolBoxItem.

Comentarios

Si la ficha del Cuadro de herramientas no contiene ningún elemento o no hay ningún elemento seleccionado, SelectedItem devuelve Nothing.

Ejemplos

Sub SelectedItemExample(ByVal dte As DTE2)

    ' Before running this example, select an item in the 
    ' ToolBox window.

    Dim tab As ToolBoxTab = dte.ToolWindows.ToolBox.ActiveTab
    Dim item As ToolBoxItem = tab.ToolBoxItems.SelectedItem

    If IsNothing(tab) = False Then
        MsgBox("The selected toolbox item is " & item.Name)
    Else
        MsgBox("No toolbox item is selected")
    End If

End Sub
public void SelectedItemExample(DTE2 dte)
{
    // Before running this example, select an item in the 
    // ToolBox window.

    ToolBoxTab tab = dte.ToolWindows.ToolBox.ActiveTab;
    ToolBoxItem item = tab.ToolBoxItems.SelectedItem;

    if (tab != null)
        MessageBox.Show("The selected toolbox item is " + item.Name);
    else
        MessageBox.Show("No toolbox item is selected");
}

Seguridad de .NET Framework

Vea también

Referencia

ToolBoxItems Interfaz

EnvDTE (Espacio de nombres)

Otros recursos

Cómo: Controlar el Cuadro de herramientas