Skip to main content

HamburgerMenu.AllowBuiltInNavigation Property

Gets or sets whether to automatically set the Hamburger Menu content to a NavigationFrame instance, enabling the navigation capability. This is a dependency property.

Namespace: DevExpress.Xpf.WindowsUI

Assembly: DevExpress.Xpf.Controls.v23.2.dll

NuGet Package: DevExpress.Wpf.Controls

Declaration

public bool AllowBuiltInNavigation { get; set; }

Property Value

Type Description
Boolean

true, to enable navigation by automatically set the menu content to a NavigationFrame; otherwise, false.

Remarks

The AllowBuiltInNavigation property is only in effect if the menu’s Content property is set to null (the default value).

Use the menu item’s HamburgerMenuNavigationButtonBase<TOwner>.NavigationTargetType/HamburgerMenuNavigationButtonBase<TOwner>.NavigationTargetTypeName property to specify the page to be opened when an end-user clicks the menu item. However, to enable this functionality, you should do one of the following:

Important

If both the HamburgerMenu.NavigationTarget and Content properties are set to a valid value, the HamburgerMenu.NavigationTarget property will be prioritized.

See Also