New to Telerik UI for WinForms? Download free 30-day trial

Multi-Line Menu Item Text

The RadMenuItem.Text property can be displayed on multiple lines as shown in the screenshot below.

WinForms RadMenu Multi-Line Menu Item Text

In the Properties Window for a RadMenuItem use the drop down list to invoke the editor for multiple lines. Ctrl+Enter creates a new line in the editor. Esc cancels changes and closes the editor. 

WinForms RadMenu Properties Window Text Property

In code use Environment.NewLine to separate strings:

radMenuItem1.Text = "Bar Chart - " +
 Environment.NewLine +
 "Compare multiple series of data";

radMenuItem1.Text = "Bar Chart - " & Environment.NewLine & "Compare multiple series of data"

The AllItemsEqualHeight property controls whether the RadMenu allows some menu items to be higher than others. By default, menu items with multiple lines of text are higher than menu items with single lines of text. If you set this property to true, the height of all items increases to match that of the tallest items.

radMenu1.AllItemsEqualHeight = true;

radMenu1.AllItemsEqualHeight = True

See Also

In this article