NavigationView.ItemInvoked Event

Definition

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

Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.NavigationView.ItemInvoked (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;
function onItemInvoked(eventArgs) { /* Your code */ }
navigationView.addEventListener("iteminvoked", onItemInvoked);
navigationView.removeEventListener("iteminvoked", onItemInvoked);
- or -
navigationView.oniteminvoked = onItemInvoked;
Public Custom Event ItemInvoked As TypedEventHandler(Of NavigationView, NavigationViewItemInvokedEventArgs) 
<NavigationView ItemInvoked="eventhandler" />

Event Type

Applies to