Is there any way to implement custom text wrapping algorithm in TextBlock element? I mean automatic wrapping depending on control size. Currently I use TextWrapping property, but it doesn't work as I expected. For example I have this string:
pleasant /'plez(ə)nt/
Currently this text can be wrapped like:
pleasant /'plez (ə)nt/
But I need something like this (wrap only on white spaces):
pleasant /'plez(ə)nt/
As I understand current implementation wraps on punctuation symbols also, but this cause to unexpected behavior with complicated text like word transcription.