Condividi tramite


XamlUICommand.CanExecuteChanged Evento

Definizione

Si verifica ogni volta che accade qualcosa che influisce sul fatto che il comando possa essere eseguito.

// 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 evento

Implementazioni

Commenti

Chiamare CanExecute nell'elemento di comando quando si verifica questo evento.

Un elemento di comando disabilita in genere se il comando associato a non può essere eseguito. Ad esempio, un MenuItem oggetto associato al Paste comando è disabilitato quando non è presente alcun elemento negli Appunti da incollare.

Si applica a

Vedi anche