I have a converter that takes in a IEnumerable and returns one string with multiple lines. The convertback function does the opposite, takes in a string with multiple lines and returns a List. I’m using it in a few places and it works great.
My question is, I now have locations where I want to use the Convert and ConvertBack functions in reverse (e.g. on a OneWay binding, it uses the ConvertBack function) Is this possible in XAML?
Creating such a converter is possible, for example:
In the XAML you can declare it like this