Skip to main content
.NET 8.0+

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

IModelRootNavigationItems Interface

The NavigationItems node specifies the navigation structure used by the ShowNavigationItem Action.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

[ModelNodesGenerator(typeof(NavigationItemNodeGenerator))]
[ImageName("ModelEditor_Navigation_Items")]
public interface IModelRootNavigationItems :
    IModelNode

The following members return IModelRootNavigationItems objects:

#Remarks

The ShowNavigationItem Action is displayed via the navigation control on the main Window. The navigation control comprises the navigation items. This node defines these items. You can add items by selecting the Add Item menu item in the context menu.

You can add child nodes to the NavigationItems node in code. Use the DefaultClassOptionsAttribute or NavigationItemAttribute attribute for this purpose.

This interface is a part of the Application Model infrastructure. You do not need to implement this interface in most cases.

To customize the default content of this node, implement a Generator Updater for the NavigationItemNodeGenerator Nodes Generator.

See Also