CanExecuteRoutedEventArgs.CanExecute Propiedad

Definición

Obtiene o establece un valor que indica si el RoutedCommand asociado a este evento puede ejecutarse en el destino de comando.

public:
 property bool CanExecute { bool get(); void set(bool value); };
public bool CanExecute { get; set; }
member this.CanExecute : bool with get, set
Public Property CanExecute As Boolean

Valor de propiedad

Es true si el evento puede ejecutarse en el destino de comando; de lo contrario, es false. El valor predeterminado es false.

Ejemplos

En el ejemplo siguiente se crea un CanExecuteRoutedEventHandler objeto que solo devuelve true si el destino del comando es un control . En primer lugar, los datos del Source evento se convierten en .Control Si es , ControlCanExecute se establece trueen ; de lo contrario, se establece en false.

// CanExecuteRoutedEventHandler that only returns true if
// the source is a control.
private void CanExecuteCustomCommand(object sender, 
    CanExecuteRoutedEventArgs e)
{
    Control target = e.Source as Control;
    
    if(target != null)
    {
        e.CanExecute = true;
    }
    else
    {
        e.CanExecute = false;
    }
}
' CanExecuteRoutedEventHandler that only returns true if
' the source is a control.
Private Sub CanExecuteCustomCommand(ByVal sender As Object, ByVal e As CanExecuteRoutedEventArgs)
    Dim target As Control = TryCast(e.Source, Control)

    If target IsNot Nothing Then
        e.CanExecute = True
    Else
        e.CanExecute = False
    End If
End Sub

Comentarios

Muchos orígenes de comandos, como MenuItem y Button, se deshabilitan cuando CanExecute es false y se habilitan cuando CanExecute es true.

Se aplica a

Consulte también