XamlUICommand.CanExecuteChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica ogni volta che si verifica un evento 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;
// This member is not implemented in C#
function onCanExecuteChanged(eventArgs) { /* Your code */ }
xamlUICommand.addEventListener("canexecutechanged", onCanExecuteChanged);
xamlUICommand.removeEventListener("canexecutechanged", onCanExecuteChanged);
- or -
xamlUICommand.oncanexecutechanged = onCanExecuteChanged;
' This member is not implemented in VB.NET
Tipo evento
Implementazioni
Commenti
Chiamare CanExecute sull'elemento di comando quando si verifica questo evento.
Un elemento di comando si disabilita in genere se il comando a cui è associato non può essere eseguito. Ad esempio, un oggetto MenuItem associato al comando Incolla è disabilitato quando non è presente alcun elemento negli Appunti da incollare.