I'm wondering what the best way is to communicate between Controllers in MVVM.
- I could work with Dependency Injection so that every Controllers automatically gets a reference to the controllers it like to communicate with.
- I could have references in my MainController and every other controller has to ask the MainController for communication.
Anyway I'm also wondering if it is a good idea to communicate between controllers in the first place. Could you provide me any information about this?