19

I have tried to do some reading about it, but I failed to find documentation that explains the difference between RoutedCommand and RoutedUICommand satisfactorily.

Dabblernl
  • 15,831
  • 18
  • 96
  • 148

1 Answers1

25

RoutedUICommand derives from RoutedCommand and adds a text field used to provide a description of the command. This is useful when the command is bound to be accessed from the UI.

I got this from here.

The difference between a RoutedUICommand and RoutedCommand is that RoutedUICommand includes a Text property.

DerApe
  • 3,097
  • 2
  • 35
  • 55
o.k.w
  • 25,490
  • 6
  • 66
  • 63
  • As if now (November, 2020) the exact link for the above code is [here](https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.routeduicommand?view=netframework-4.8#remarks) – nam Nov 07 '20 at 14:55