Basically, i am creating a button in Oval shape. But my button label is too long to display in one line. So i wanted to split in to multiple lines. So the Oval button looks good.

My Problem is, How to enable word wrap on a Button?

Any suggestions?

link|improve this question

78% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Set the label text on form load and add Environment.Newline as the newline string, like this:

btnOK.Text = "OK" + Environment.NewLine + "true";
link|improve this answer
feedback

What if you just add newline in the text at the place where it should split?

link|improve this answer
It's not working. I tried that also. – Dinesh Jun 4 '10 at 7:17
@Dimesh, and if you make your button a little bigger (or test with a smaller font)? – Henk Holterman Jun 4 '10 at 8:33
feedback

Try to add "\n" to button's Text property in the places you want to wrap.

link|improve this answer
\r\n is also working. But \n alone is not working for me. – Dinesh Jun 4 '10 at 9:49
feedback

two options

  1. If you are creating a custom control , then place a label control on it with Autosize = true option. and adjust its size as per the buttons size.
  2. Next way is a bit crude as you need to add new line wherever you want.
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.