Im using label control.
The row that contained in label control is too long and i want
half of the line to move down.
for example label looks like that:
Follow American politics, keep up with the hottest political debates.
I want it to be like this:
Follow American politics, keep up with the
hottest political debates, and share your.
Any idea how to implemet this?
Thank you in advance.
If all you need is text wrapping, try the below:
First, set the label’s property
AutoSizetoTrue.Then, the next key property is
MaximumSize. You should set its width (or height) to a fixed value, not the default 0. If the text goes over that width, the label will auto-wrap.