Skip to main content
.NET 6.0+

NavigationItemCreatedEventArgs(IModelNavigationItem, ChoiceActionItem) Constructor

Initializes a new instance of the NavigationItemCreatedEventArgs class.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public NavigationItemCreatedEventArgs(
    IModelNavigationItem item,
    ChoiceActionItem navigationItem
)

Parameters

Name Type Description
item IModelNavigationItem

An IModelNavigationItem object which represents the Application Model node representing the created navigation item. This parameter value is assigned to the NavigationItemCreatedEventArgs.ModelNavigationItem property.

navigationItem ChoiceActionItem

A ChoiceActionItem object which represents the created navigation item. This parameter value is assigned to the NavigationItemCreatedEventArgs.NavigationItem property.

Remarks

Since instances of the NavigationItemCreatedEventArgs class are automatically created and passed to handlers of the ShowNavigationItemController.NavigationItemCreated event, you do not need to call this constructor from your applications.

See Also