Hello all:
I want to use a RoutedUICommand in my store app, but my application can't recognize it.
Should I how to use RoutedUICommand in store app?
Routed Command are not available to Windows Store apps.
You can expose an ICommand from your ViewModel and call it directly rather than relying on routing.
--Rob