Default ValueConverter for a class in WPF
I'm just about to start a new project of mine and am currently evaluating some techniques for localization, modularity etc. I have (at least in my opinion) a pretty good approach to localization but now I struggle to find a good solution for databinding. I want to bind values of textfields etc. (UIElements in general) to a specific method in the DataContext of the form. The method looks like this: public void GetValue(string name) where name is a "path" in the form of "node/subnode/subsubnode". I thought about using a ValueConverter for the binding and this worked out pretty good till now. My