Release
Q2 and Q3 releases brought up support for commands usable in a similar way as the commanding mechanism from WPF. In a few points the Commanding mechanism provides several classes: RoutedCommand and RoutedUICommand – ICommand implementations, the second has a Text property ICommandSource – once an object implement it, it knows how to invoke a command, i.e. it receives Command, CommandParameter and CommandTarget properties. CommandBinding – maps the command logic to the command CommandManager – provides methods that register CommandBinding and InputBinding objects, add and remove command event handlers, and provides services for querying the status of a command. Creating a command Basically, we can implement the...