Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

If you need to apply advanced local formatting to your text you'd better use a RichTextBox that will offer you more control.

share|improve this answer
unfortunally, this is not an equivalent replacement of the TextBlock, especially if you need a flexible binding. – Shurup Jun 2 '10 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.