CommandBinding.Executed Événement

Définition

Se produit quand la commande associée à ce CommandBinding s’exécute.

public:
 event System::Windows::Input::ExecutedRoutedEventHandler ^ Executed;
public event System.Windows.Input.ExecutedRoutedEventHandler Executed;
member this.Executed : System.Windows.Input.ExecutedRoutedEventHandler 
Public Custom Event Executed As ExecutedRoutedEventHandler 
Public Event Executed As ExecutedRoutedEventHandler 

Type d'événement

Exemples

L’exemple suivant crée un CommandBinding qui mappe un ExecutedRoutedEventHandler et un CanExecuteRoutedEventArgs gestionnaire à la Open commande.

<Window.CommandBindings>
  <CommandBinding Command="ApplicationCommands.Open"
                  Executed="OpenCmdExecuted"
                  CanExecute="OpenCmdCanExecute"/>
</Window.CommandBindings>
// Creating CommandBinding and attaching an Executed and CanExecute handler
CommandBinding OpenCmdBinding = new CommandBinding(
    ApplicationCommands.Open,
    OpenCmdExecuted,
    OpenCmdCanExecute);

this.CommandBindings.Add(OpenCmdBinding);
' Creating CommandBinding and attaching an Executed and CanExecute handler
Dim OpenCmdBinding As New CommandBinding(ApplicationCommands.Open, AddressOf OpenCmdExecuted, AddressOf OpenCmdCanExecute)

Me.CommandBindings.Add(OpenCmdBinding)

L’exemple suivant montre qui ExecutedRoutedEventHandler crée un MessageBox lors de l’exécution de la commande.

void OpenCmdExecuted(object target, ExecutedRoutedEventArgs e)
{
    String command, targetobj;
    command = ((RoutedCommand)e.Command).Name;
    targetobj = ((FrameworkElement)target).Name;
    MessageBox.Show("The " + command +  " command has been invoked on target object " + targetobj);
}
Private Sub OpenCmdExecuted(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
    Dim command, targetobj As String
    command = CType(e.Command, RoutedCommand).Name
    targetobj = CType(sender, FrameworkElement).Name
    MessageBox.Show("The " + command + " command has been invoked on target object " + targetobj)
End Sub

Remarques

Lorsqu’un RoutedCommand s’exécute, il déclenche l’événement PreviewExecuted sur la cible de commande. Si l’événement PreviewExecuted n’est pas géré, l’événement Executed est déclenché sur la cible de commande. Si la cible de commande a un CommandBinding pour la commande spécifique, le Executed gestionnaire de cette CommandBinding commande est appelé. Si la cible de commande n’a pas de CommandBinding pour cette commande spécifique, l’événement Executed bulle dans l’arborescence d’éléments à la recherche d’un élément CommandBinding associé à la commande. Si un CommandBinding est introuvable, la commande n’est pas gérée.

Informations sur les événements acheminés

Champ Identificateur ExecutedEvent
Stratégie de routage Bouillonnant
Délégué ExecutedRoutedEventHandler

S’applique à

Voir aussi