NavigationView.PaneOpened 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 painel NavigationView é aberto.
API equivalente do WinUI 2 para UWP: Microsoft.UI.Xaml.Controls.NavigationView.PaneOpened (para WinUI no SDK do Aplicativo Windows, consulte os namespaces SDK do Aplicativo Windows).
// Register
event_token PaneOpened(TypedEventHandler<NavigationView, IInspectable const&> const& handler) const;
// Revoke with event_token
void PaneOpened(event_token const* cookie) const;
// Revoke with event_revoker
NavigationView::PaneOpened_revoker PaneOpened(auto_revoke_t, TypedEventHandler<NavigationView, IInspectable const&> const& handler) const;
public event TypedEventHandler<NavigationView,object> PaneOpened;
function onPaneOpened(eventArgs) { /* Your code */ }
navigationView.addEventListener("paneopened", onPaneOpened);
navigationView.removeEventListener("paneopened", onPaneOpened);
- or -
navigationView.onpaneopened = onPaneOpened;
Public Custom Event PaneOpened As TypedEventHandler(Of NavigationView, Object)
<NavigationView PaneOpened="eventhandler" />
Tipo de evento
TypedEventHandler<NavigationView,IInspectable>
Requisitos do Windows
Família de dispositivos |
Windows 10, version 1803 (introduzida na 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v6.0)
|