New to Telerik UI for WinFormsStart a free 30-day trial

Multi-Line Menu Item Text

Updated over 6 months ago

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:

C#
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.

C#
radMenu1.AllItemsEqualHeight = true;

See Also

In this article
Menu Item HeightSee Also
Not finding the help you need?
Contact Support