The Symphony.Conductor.Commands namespace contains a number of powerful commanding classes to provide quick and easy data-binding between user interface commands and application logic.
Classes
| Class | Description |
| GenericCommand | The GenericCommand exntends the RoutedCommandBase base class used throughout the Symphony Framework.This command allows you to create and data bind a command to one or more UI controls.When creating the command you specify the name of the command.The name value can be used to identify the GenericCommand in the RoutedCommandBase.Execute event handler routine. |
| NavigateStateCommand |
The NavigateStateCommand extends the base RoutedCommandBase class to define a bind-able command
that will alolow the navigation to a new visual state.
|
| QuitStateCommand | The QuitStateCommand extends the base RoutedCommandBase class to define a bind-able command which when executed will pop the current visual state from the visual state stack. |
| RoutedCommandBase |
The RoutedCommandBase is the base class from which all commanding classes are derived. This class should not be instaciated and is extended by all other commanding classes.
|
Delegates
See Also