Compartir a través de


XamlUICommand.CanExecuteChanged Evento

Definición

Se produce cada vez que ocurre algo que afecta a si el comando se puede ejecutar.

// Register
event_token CanExecuteChanged(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
void CanExecuteChanged(event_token const* cookie) const;

// Revoke with event_revoker
XamlUICommand::CanExecuteChanged_revoker CanExecuteChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> CanExecuteChanged;
function onCanExecuteChanged(eventArgs) { /* Your code */ }
xamlUICommand.addEventListener("canexecutechanged", onCanExecuteChanged);
xamlUICommand.removeEventListener("canexecutechanged", onCanExecuteChanged);
- or -
xamlUICommand.oncanexecutechanged = onCanExecuteChanged;
Public Custom Event CanExecuteChanged As EventHandler(Of Object) Implements CanExecuteChanged

Tipo de evento

Implementaciones

Comentarios

Llame a CanExecute en el elemento command cuando se produzca este evento.

Normalmente, un elemento de comando se deshabilita si el comando al que está asociado no se puede ejecutar. Por ejemplo, un MenuItem asociado al Paste comando está deshabilitado cuando no hay nada en el Portapapeles que se va a pegar.

Se aplica a

Consulte también