So, let's say I have a really long text:
One Two Three Four Five Six Seven Eight Nine Ten
And I have this textblock:
---------------
|One Two Three|
|Four Five Six|
|Seven Eight |
|Nine Ten |
---------------
Now, what I need to do is make this box smaller, and let the remaining text to overflow on a different textblock:
---------------
|One Two Three|
|Four Five Six|
---------------
---------------
|Seven Eight |
|Nine Ten |
---------------
Text must not be trimmed with ellipses, nor cut-off. THe first textblock needs to be filled as much as possible.
I could not find a way to do this in xaml/code-behind. The length of the text could be unknown, but the size of the textblocks are fixed. Textblocks need to wrapped, with no trimming/cut-off words. No scroll bars, no tool tips. Fontsize/fontweight/font family could also differ.
Any ideas?