I'm developing a Windows Phone 8 application. I've got a ContentControl:
<ContentControl Content="{Binding Text, Converter={StaticResource TextConverter}}" />
TextConverter converts plain text to formatted text, returning a TextBlock object. That works fine, but I need to apply additional formatting to this TextBlock. In WPF, I could do something like that:
<ContentControl Content="{Binding Text, Converter={StaticResource TextConverter}}" TextBlock.TextWrapping="Wrap" />
Unfortunately, that doesn't seem to work for WP8. How can I implement this kind of functionality in Windows Phone application?