Skip to main content
.NET 6.0+

IModelRootNavigationItems Interface

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

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

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

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