NavigationView.SelectionChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando o item selecionado no momento é alterado.
API equivalente do WinUI 2 para UWP: Microsoft.UI.Xaml.Controls.NavigationView.SelectionChanged (para WinUI no SDK do Aplicativo Windows, consulte os namespaces SDK do Aplicativo Windows).
// 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" />