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.

Is there any way to implement custom text wrapping algorithm in TextBlock element? I mean automatic wrapping depending on control size. Currently I use TextWrapping property, but it doesn't work as I expected. For example I have this string:

pleasant /'plez(ə)nt/

Currently this text can be wrapped like:

pleasant /'plez
(ə)nt/

But I need something like this (wrap only on white spaces):

pleasant
/'plez(ə)nt/

As I understand current implementation wraps on punctuation symbols also, but this cause to unexpected behavior with complicated text like word transcription.

share|improve this question

1 Answer

did you try

string s = "pleasant /'plez(ə)nt/";
string[] words = s.Split(' ');
foreach (string word in words)
{
    Console.WriteLine(word);
}

output should be:
pleasant
/'plez(ə)nt/

share|improve this answer
Yes, but this should be done automatically by the control (TextBlock), it should go to new line only if there is not enough space to draw all words. User also can change window size and size of the control will be changed too. – Roman Popov Nov 6 '12 at 9:26
Probably it would help if you could edit your original question and add the comment you just gave here into it. As your question now is able to be interpreted in a few ways. in case I thought this answer was what you meant. – FlorisPrijt Nov 6 '12 at 9:35
OK, thanks for your advice! – Roman Popov Nov 6 '12 at 9:54

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.