Compartir a través de


MenuActionEventArgs.Selection (Propiedad)

Obtiene la selección actual en la superficie de diseño.

Espacio de nombres:  Microsoft.Windows.Design.Interaction
Ensamblado:  Microsoft.Windows.Design.Interaction (en Microsoft.Windows.Design.Interaction.dll)

Sintaxis

'Declaración
Public ReadOnly Property Selection As Selection
    Get
public Selection Selection { get; }
public:
property Selection^ Selection {
    Selection^ get ();
}
member Selection : Selection
function get Selection () : Selection

Valor de propiedad

Tipo: Microsoft.Windows.Design.Interaction.Selection
Selection que representa el control seleccionado actualmente.

Ejemplos

En el siguiente ejemplo de código se muestra cómo controlar el evento Execute. Establece la propiedad Background del control seleccionado en su valor predeterminado. Para obtener más información, vea Tutorial: Crear un proveedor de menús.

' The following method handles the Execute event. 
' It sets the Background property to its default value.
Sub ClearBackground_Execute( _
    ByVal sender As Object, _
    ByVal e As MenuActionEventArgs)

    Dim selectedControl As ModelItem = e.Selection.PrimarySelection
    selectedControl.Properties("Background").ClearValue()

End Sub
// The following method handles the Execute event. 
// It sets the Background property to its default value.
void ClearBackground_Execute(
    object sender, 
    MenuActionEventArgs e)
{
    ModelItem selectedControl = e.Selection.PrimarySelection;
    selectedControl.Properties["Background"].ClearValue();
}

Seguridad de .NET Framework

Vea también

Referencia

MenuActionEventArgs Clase

Microsoft.Windows.Design.Interaction (Espacio de nombres)

PrimarySelectionContextMenuProvider

MenuAction

MenuGroup

ModelItem

Otros recursos

Tutorial: Crear un proveedor de menús