CommandBinding.Executed Event
Occurs when the command associated with this CommandBinding executes.
Assembly: PresentationCore (in PresentationCore.dll)
When a RoutedCommand executes, it raises the PreviewExecuted event on the command target. If the PreviewExecuted event is not handled, the Executed event is raised on the command target. If the command target has a CommandBinding for the specific command, the Executed handler for that CommandBinding is called. If the command target does not have a CommandBinding for that specific command the Executed event bubbles up the element tree searching for an element that has a CommandBinding associated with the command. If a CommandBinding is not found, the command is not handled.
Identifier field | |
Routing strategy | Bubbling |
Delegate |
The corresponding tunneling event is PreviewExecuted.
The following example creates a CommandBinding that maps an ExecutedRoutedEventHandler and a CanExecuteRoutedEventArgs handler to the Open command.
<Window.CommandBindings> <CommandBinding Command="ApplicationCommands.Open" Executed="OpenCmdExecuted" CanExecute="OpenCmdCanExecute"/> </Window.CommandBindings>
The following shows the ExecutedRoutedEventHandler which creates a MessageBox when the command is executed.
Available since 3.0