I want to move my application settings out of XAML and into a config file. For example, ToolTips and Content strings for Buttons/CheckBoxes and Labels. Is this the job of a ResourceDictionary, or should I use the App.Config or Settings.settings file?
The ToolTips and Content strings are not really per user, they are more Application wide and may change if the UI is internationalized.
EDIT:
I hear use a Resource Dictionary
or use a App.Config
, what is the difference?
Thanks!