MVVM Routed and Relay Command

MvvmCommandRelaycommandRoutedcommand

Mvvm Problem Overview


What is the Difference between the RoutedCommand and RelayCommand ? When to use RoutedCommand and when to use RelayCommand in MVVM pattern ?

Mvvm Solutions


Solution 1 - Mvvm

RoutedCommand is part of WPF, while RelayCommand was created by a WPF Disciple, Josh Smith ;).

Seriously, though, RS Conley described some of the differences. The key difference is that RoutedCommand is an ICommand implementation that uses a RoutedEvent to route through the tree until a CommandBinding for the command is found, while RelayCommand does no routing and instead directly executes some delegate. In a M-V-VM scenario a RelayCommand (DelegateCommand in Prism) is probably the better choice all around.

Solution 2 - Mvvm

Regarding the use of RelayCommand and RoutedCommand in MVVM the main difference for me is the following:

Location of code

RelayCommand allows you to implement the command in any class (as ICommand-property with delegates), which then is conventionally databound to the control, which invokes the command. This class is the ViewModel. If you use a routed command, you will have to implement the methods related to the command in the codebehind of the control, because the methods are specified by the attributes of the CommandBinding-element. Assumed that strict MVVM means having an "empty" codebehind-file, there actually is no possibility of using standard routed commands with MVVM.

What RS Conley said, that RelayCommand allows you to define the RelayCommand outside the ViewModel is right, but first of all it allows you to define it inside the ViewModel, which RoutedCommand doesn't.

Routing

On the other hand, RelayCommands do not support routing through the tree (as said before), which is not a problem, as long as your interface is based on a single viewModel. If it is not, for example if you have a collection of items with their own viewModels and want to invoke a command of the child ViewModel for each item out of the parent element at once, you will have to use routing (see also CompositeCommands).

All in all, I would say, that standard RoutedCommands are not usable in strict MVVM. RelayCommands are perfect for MVVM but do not support routing, which you might need.

Solution 3 - Mvvm

The difference is that RelayCommand can accept delegates. You can define the RelayCommand outside of the ViewModel. The ViewModel can then add delegates to the command when it creates and binds the command to an UI object like a control. The delegates in turn can access the private variable of the ViewModel as they are defined in the scope of the View Model itself.

It is used to cut down on the amount of code contained in the ViewModel as the trend is to define a Routed command as a nested class inside the ViewModel. The functionality of the two is otherwise similar.

Solution 4 - Mvvm

I would argue that RoutedCommands are perfectly legal in strict MVVM. Although RelayCommands are often preferable for their simplicity, RoutedCommands sometimes offer organizational advantages. For example, you might want several different views to connect to a shared ICommand instance without directly exposing that command to the underlying ViewModels.

As a side note, remember that strict MVVM does not prohibit the use of code-behind. If that were true then you could never define custom dependency properties in your views!

In order to use a RoutedCommand within a strict MVVM framework you could follow these steps:

  1. Declare a static RoutedCommand instance for your custom command. You can skip this step if you plan to use a predefined command from the ApplicationCommands class. For example:

     public static class MyCommands {
         public static RoutedCommand MyCustomCommand = new RoutedCommand();
     }
    
  2. Attach the desired views to the RoutedCommand using XAML:

     <Button Command="{x:Static local:MyCommands.MyCustomCommand}" />
    
  3. One of your views which is bound to a suitable ViewModel (i.e. whichever ViewModel implements the command functionality) needs to expose a custom DependencyProperty which will be bound to your ViewModel's implementation:

     public partial class MainView : UserControl
     {
         public static readonly DependencyProperty MyCustomCommandProperty =
             DependencyProperty.Register("MyCustomCommand",
             typeof(ICommand), typeof(MainView), new UIPropertyMetadata(null));
    
         public ICommand MyCustomCommand {
             get { return (ICommand)GetValue(MyCustomCommandProperty); }
             set { SetValue(MyCustomCommandProperty, value); }
         }
    
  4. The same view should bind itself to the RoutedCommand from step 1. In the XAML:

     <UserControl.CommandBindings>
         <CommandBinding Command="{x:Static local:MyCommands.MyCustomCommand}"
                         CanExecute="MyCustomCommand_CanExecute"
                         Executed="MyCustomCommand_Executed"
                         />
     </UserControl.CommandBindings>
    

    In the code-behind for your view the associated event handlers will just delegate to the ICommand from the dependency property declared in step 3:

     private void MyCustomCommand_CanExecute(object sender, CanExecuteRoutedEventArgs e) {
         var command = this.MyCustomCommand;
         if (command != null) {
             e.Handled = true;
             e.CanExecute = command.CanExecute(e.Parameter);
         }
     }
     private void MyCustomCommand_Executed(object sender, ExecutedRoutedEventArgs e) {
         var command = this.MyCustomCommand;
         if (command != null) {
             e.Handled = true;
             command.Execute(e.Parameter);
         }
     }
    
  5. Finally, bind your ViewModel's command implementation (which should be an ICommand) to the custom dependency property in XAML:

     <local:MainView DataContext="{Binding MainViewModel}"
                     MyCustomCommand="{Binding CustomCommand}" />
    

The advantage of this approach is that your ViewModel only needs to provide a single implementation of the ICommand interface (and it can even be a RelayCommand), while any number of Views can attach to it via the RoutedCommand without needing to be directly bound to that ViewModel.

Unfortunately there is a downside in that the ICommand.CanExecuteChanged event will not work. When your ViewModel wants the View to refresh the CanExecute property then you must call CommandManager.InvalidateRequerySuggested().

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser72799View Question on Stackoverflow
Solution 1 - MvvmwekempfView Answer on Stackoverflow
Solution 2 - MvvmMarcView Answer on Stackoverflow
Solution 3 - MvvmRS ConleyView Answer on Stackoverflow
Solution 4 - MvvmRogerNView Answer on Stackoverflow