I\'m working on a WPF-application in which the user can change the language (not the current culture!) at runtime. So i have multiple resource dictionaries of type XAML to w
To look up app-wide resources from code, use Application.Current.Resources to get the app's resource dictionary, as shown here:
string insertFirstName = Application.Current.Resources["insert_first_name"];
Source