Skip to main content

HamburgerMenuNavigationButton.RightContent Property

Gets or sets the additional button content displayed to the right of the main content.

Namespace: DevExpress.UI.Xaml.Layout

Assembly: DevExpress.UI.Xaml.Layout.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public object RightContent { get; set; }

Property Value

Type Description
Object

The additional button content.

Remarks

Use the HamburgerMenuNavigationButton‘s Content property to specify the button content, and the ContentTemlate property to provide a data template used to render the data object. The RightContent property allows you to specify additional content displayed to the right of the main content. For instance, if a given button opens a folder in the mail box, you can use this property to indicate to the end-user the number of unread messages in the folder. Use the HamburgerMenuNavigationButton.RightContentTemplate property to specify a data template used to render the data object. If the data template is not specified, the string representation of the object is used. The HamburgerMenuNavigationButton.RightContentMargin property sets the outer margin of the content.

See Also