Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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