NavigationView.PaneOpening Evento

Definición

Se produce cuando se abre el panel NavigationView.

API de WinUI 2 equivalente para UWP: Microsoft.UI.Xaml.Controls.NavigationView.PaneOpening (para WinUI en el SDK de Aplicaciones para Windows, consulta los espacios de nombres SDK de Aplicaciones para Windows).

// Register
event_token PaneOpening(TypedEventHandler<NavigationView, IInspectable const&> const& handler) const;

// Revoke with event_token
void PaneOpening(event_token const* cookie) const;

// Revoke with event_revoker
NavigationView::PaneOpening_revoker PaneOpening(auto_revoke_t, TypedEventHandler<NavigationView, IInspectable const&> const& handler) const;
public event TypedEventHandler<NavigationView,object> PaneOpening;
function onPaneOpening(eventArgs) { /* Your code */ }
navigationView.addEventListener("paneopening", onPaneOpening);
navigationView.removeEventListener("paneopening", onPaneOpening);
- or -
navigationView.onpaneopening = onPaneOpening;
Public Custom Event PaneOpening As TypedEventHandler(Of NavigationView, Object) 
<NavigationView PaneOpening="eventhandler" />

Tipo de evento

Requisitos de Windows

Familia de dispositivos
Windows 10, version 1803 (se introdujo en la versión 10.0.17134.0)
API contract
Windows.Foundation.UniversalApiContract (se introdujo en la versión v6.0)

Se aplica a