Use Commands with RadRibbonView Buttons
All RadRibbonView buttons provide a standard ICommandSource implementation. This is why you can bind the RadRibbonButtons to commands that will get executed when a button is clicked. For this purpose you can use the following properties.
Command - gets the command that will be executed when the command source is invoked.
CommandParameter - represents a user defined data value that can be passed to the command when it is executed.
CommandTarget - the object on which the command is being executed.
As all butons implement the ICommandSource interface, you can use them with any command that implements the ICommand interface, for example the DelegateCommands.
Here is an example of a command usage in a MVVM scenario. The command is located in the ButtonViewModel class.
Set the ButtonViewModel as the DataContext of your UserControl.
In the XAML provide the bindings for the command and set the command parameter.
This can be applied to each of the RadRibbonButtons. To learn more about them read here. Commands can be used with any control, placed in the RadRibbonView, that implements the ICommandSource interface.