I need to style a WPF TextBlock, like
<TextBlock Text="- Test text text text text" TextWrapping="Wrap"/>
that will show the
- Test text text text
text
and not the
- Test text text text
text
Do you know the solution of the problem?
I need to style a WPF TextBlock, like
<TextBlock Text="- Test text text text text" TextWrapping="Wrap"/>
that will show the
- Test text text text
text
and not the
- Test text text text
text
Do you know the solution of the problem?
If you need to apply advanced local formatting to your text you'd better use a RichTextBox that will offer you more control.