Skip to main content
.NET 6.0+

ShowNavigationItemController.UpdateSelectedItem(ViewShortcut) Method

Changes the ShowNavigationItemController.ShowNavigationItemAction‘s selected item to the specified one.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public void UpdateSelectedItem(
    ViewShortcut currentViewShortcut
)

Parameters

Name Type Description
currentViewShortcut ViewShortcut

A ViewShortcut object that specifies a View which has a corresponding ShowNavigationItemAction‘s item.

Remarks

This method is used by the ShowNavigationItemController to change the ShowNavigationItemAction‘s selected item to the appropriate one when the active View is changed. The ShowNavigationItemController tracks the active View changes, so you do not have to do any additional programming. However, if you need to perform custom actions when this method is called, or want to perform the change of the selected item in a custom way, handle the ShowNavigationItemController.CustomUpdateSelectedItem event.

See Also