NavigationView.ItemInvoked Event

Definition

Occurs when an item in the menu receives an interaction such a a click or tap.

This documentation applies to WinUI 2 for UWP (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

// Register
event_token ItemInvoked(TypedEventHandler<NavigationView, NavigationViewItemInvokedEventArgs const&> const& handler) const;

// Revoke with event_token
void ItemInvoked(event_token const* cookie) const;

// Revoke with event_revoker
NavigationView::ItemInvoked_revoker ItemInvoked(auto_revoke_t, TypedEventHandler<NavigationView, NavigationViewItemInvokedEventArgs const&> const& handler) const;
public event TypedEventHandler<NavigationView,NavigationViewItemInvokedEventArgs> ItemInvoked;
Public Custom Event ItemInvoked As TypedEventHandler(Of NavigationView, NavigationViewItemInvokedEventArgs) 
<NavigationView ItemInvoked="eventhandler" />

Event Type

Applies to