Hi how can we get word wrap functionality to a label in winforms?
I place a label in a panel and added some text to label dyanamically. But it exceeds the panel length. How can i solve this?
Thanks in advance
|
|
|
|
|
|
|
The quick answer: switch off AutoSize. The big problem here is that the label will not change it's height automatically (only width). To get this right you will need to subclass the label and include vertical resize logic. Basically what you need to do in OnPaint is:
You will also need to set the ResizeRedraw style flag in the constructor. |
||
|
|
|
As Jonathan said, you need to switch AutoSize off. But I see no reason to handle painting as you can set label's vertical extent to a convenient value (aka not overlapping other controls but able to hold the largest dynamic text) and it will do the word wrap just fine. What could do any custom painting better than this? EDIT: actually, wether to handle painting or not is a question of preference: would you prefer the label overlap other controls or have its text truncated sometimes? |
||
|
|
|
|
Found on msdn: http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/97c18a1d-729e-4a68-8223-0fcc9ab9012b
|
||
|
|