RoutedCommand::Execute Method (Object^, IInputElement^)
Executes the RoutedCommand on the current command target.
Assembly: PresentationCore (in PresentationCore.dll)
public: [SecurityCriticalAttribute] void Execute( Object^ parameter, IInputElement^ target )
Parameters
- parameter
-
Type:
System::Object^
User defined parameter to be passed to the handler.
- target
-
Type:
System.Windows::IInputElement^
Element at which to begin looking for command handlers.
| Exception | Condition |
|---|---|
| InvalidOperationException | target is not a UIElement or ContentElement. |
The actual logic that executes the RoutedCommand is not contained in the Execute methods. Execute raises the PreviewExecuted and Executed events, which tunnel and bubble through the element tree looking for an object with a CommandBinding. If a CommandBinding for that RoutedCommand is found, then the ExecutedRoutedEventHandler attached to CommandBinding is called. These handlers supply the programming logic that performs the RoutedCommand.
The PreviewExecuted and Executed events are raised on the CommandTarget. If the CommandTarget is not set on the ICommandSource, the PreviewExecuted and Executed events are raised on the element with keyboard focus.
The following example is from a custom implementation of ICommandSource sample.
this.Command in this example is the Command property on the ICommandSource. If the command is not null, the command is cast to a RoutedCommand. If it is a RoutedCommand, then the Execute method is called passing the CommandTarget and the CommandParameter. If the command is not a RoutedCommand, it is cast to an ICommand and the Execute method is called passing the CommandParameter.
Available since 3.0