Skip to main content
.NET Framework 4.6.2+

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

ShowNavigationItemController.NavigationItemCreated Event

Occurs after a navigation item has been created in the navigation control.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public event EventHandler<NavigationItemCreatedEventArgs> NavigationItemCreated

#Event Data

The NavigationItemCreated event's data class is NavigationItemCreatedEventArgs. The following properties provide information specific to this event:

Property Description
ModelNavigationItem Specifies the Application Model node which represents the created navigation item.
NavigationItem Represents a navigation Action‘s item for which the navigation item has been created in the navigation control.

#Remarks

Handle this event to perform custom actions when navigation items are created in the navigation control. Primarily, this event is used when implementing custom context navigation (see Navigation System). To see an example of handling the NavigationItemCreated event, refer to the How to: Implement Custom Context Navigation topic.

See Also