I sometimes have labels where the content changes dynamically with the values of some objects. The strings are static though, but they need to be changed accordingly to my attributes.
An easy way would be, to implement a converter which takes my object and returns my desired string. This would result in many converters which only have one task and can't be used in different cases.
I could also change my title in my ViewModel -> Is this the better approach?