NavigationView.SelectionChanged 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 the currently selected item changes.
Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.NavigationView.SelectionChanged (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
// Register
event_token SelectionChanged(TypedEventHandler<NavigationView, NavigationViewSelectionChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void SelectionChanged(event_token const* cookie) const;
// Revoke with event_revoker
NavigationView::SelectionChanged_revoker SelectionChanged(auto_revoke_t, TypedEventHandler<NavigationView, NavigationViewSelectionChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<NavigationView,NavigationViewSelectionChangedEventArgs> SelectionChanged;
function onSelectionChanged(eventArgs) { /* Your code */ }
navigationView.addEventListener("selectionchanged", onSelectionChanged);
navigationView.removeEventListener("selectionchanged", onSelectionChanged);
- or -
navigationView.onselectionchanged = onSelectionChanged;
Public Custom Event SelectionChanged As TypedEventHandler(Of NavigationView, NavigationViewSelectionChangedEventArgs)
<NavigationView SelectionChanged="eventhandler" />