Visual Studio - Add a line break in a label via the designer?

c#, label, visual-studio, winforms

Solution

Select the dropdown next to the label. Then you can just use the `Enter` key to enter line breaks.

Problem

I have a label that I want to use to show some text. I want to show a few paragraphs of text. Is there a way via the designer to make a line break in the text? (\n\r just shows \n\r) This is WinForms (actually it is Compact Framework.)

Original source