I want to create a composite wpf application with ribbon control using Prism, and I have some thoughts about commanding:
The ribbon tab is in different view, so i guess it will have specific view model. but the command should be in another view model, because when I click on button in the ribbon, I want to do some action in the view below, so how can I bind it? should I use Event Aggregator to communicate between the view models? maybe Composite command? any other approch?
Thanks.