Skip to main content
.NET 6.0+

ShowNavigationItemController.NavigationItemCreated Event

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

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.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