I know TextBox/TextBlock already support text word wrap very well. (Windows WPF)

the question is how can I reuse that logic? so I don't need to write an other word wrap util class for this purpose.

Any feedback would be great appericated!

link|improve this question

Where are you wanting to reuse it? In UI code, or in back-end code of some sort? If UI, TextBlock already supports word-wrap. – Joe White Jul 5 '11 at 19:05
feedback

1 Answer

up vote 1 down vote accepted

Algorithms to do this have been around for ages and are relatively simple. You'd be a lot better off using one of the standard algorithms rather than trying to duct-tape something to a textbox. Try the wikipedia page for starters: Word Wrap

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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