tags:

views:

95

answers:

2

Say I have a label control in Winforms and I want to do some thing like:

1) One
2) Two

How do I to that? If I add a "\n" to the string it does not seem to work. Is the label control inherently single line?

+2  A: 

In the Designer select the Label.
In the Label's property sheet click the Text property item. The property will display as a combo.
Expand the combo and enter your text, including line returns.

Jay Riggs
A: 

Have you tried in code?

http://www.knowdotnet.com/articles/labelcontrolformatting.html

CodeByMoonlight