Let’s say I have a label and the following string of characters:
The quick, brown fox, jumps over, the lazy dog
What is the way to set the text wrapping behavior so that every piece of text between 2 commas should be kept together (in other words, should be considered as a word)?
So for example if the line breaks at the “z”, the rendered result would be:
The quick, brown fox, jumps over,
the lazy dog
How do one achieve this in XAML ?