NavigationView.ItemInvoked Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when an item in the menu receives an interaction such a a click or tap.
// 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" />