RoutedCommand Class
Defines a command that implements ICommand and is routed through the element tree.
Assembly: PresentationCore (in PresentationCore.dll)
| Name | Description | |
|---|---|---|
![]() | RoutedCommand() | Initializes a new instance of the RoutedCommand class. |
![]() | RoutedCommand(String^, Type^) | Initializes a new instance of the RoutedCommand class with the specified name and owner type. |
![]() | RoutedCommand(String^, Type^, InputGestureCollection^) | Initializes a new instance of the RoutedCommand class with the specified name, owner type, and collection of gestures. |
| Name | Description | |
|---|---|---|
![]() | InputGestures | Gets the collection of InputGesture objects that are associated with this command. |
![]() | Name | Gets the name of the command. |
![]() | OwnerType | Gets the type that is registered with the command. |
| Name | Description | |
|---|---|---|
![]() | CanExecute(Object^, IInputElement^) | Determines whether this RoutedCommand can execute in its current state. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Execute(Object^, IInputElement^) | Executes the RoutedCommand on the current command target. |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | CanExecuteChanged | Occurs when changes to the command source are detected by the command manager. These changes often affect whether the command should execute on the current command target. |
| Name | Description | |
|---|---|---|
![]() ![]() | ICommand::CanExecute(Object^) | For a description of this members, see CanExecute. |
![]() ![]() | ICommand::Execute(Object^) | For a description of this members, see Execute. |
The Execute and CanExecute methods on a RoutedCommand do not contain the application logic for the command as is the case with a typical ICommand, but rather, these methods raise events that traverse the element tree looking for an object with a CommandBinding. The event handlers attached to the CommandBinding contain the command logic.
The Execute method raises the PreviewExecuted and Executed events. The CanExecute method raises the PreviewCanExecute and CanExecute events.
<object property="predefinedCommandName"/>
- or -
<object property="predefinedClassName.predefinedCommandName"/>
- or -
<object property="{ customClassName.customCommandName}"/>
- predefinedClassName
One of the predefined command classes.
- predefinedCommandName
One of the predefined commands.
- customClassName
A custom class which contains the custom command. Custom classes generally require an xlmns prefix mapping; see XAML Namespaces and Namespace Mapping for WPF XAML.
- customCommandName
A custom command.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





