been looking through Google results for quite some hours now and all i was finding were examples of how to use RoutedCommand to catch MouseClicks and Keyboard Shortcuts to do the same actions.
I've read some sources about RoutedCommand like MSDN and https://joshsmithonwpf.wordpress.com/2008/03/18/understanding-routed-commands/ and if i still understand it right, it should also be able to do what i need:
The use case would be a Settings window which holds Language settings and upon clicking OK in the settings all active windows should change their language strings. I've put up a Method which reloads the strings with the language identifier.
So in general i want the ButtonClick in Window2 to pass the Command to call Method "ChangeLanguage(lng)" to all active Windows be it the parent MainWindow or another ChildWindow not related to the Settings at all. The Window classes have their own ChangeLanguage() functions to alter their own strings.
I wonder if using a custom EventHandler would be better in this case and somehow make it global so every active Window will listen to the Event which is fired when the language is being changed in the Settings Window. I found an example for a global CommandHandler at another question here but that's not working for an Event i suppose.