Freigeben über


NavigationView.PaneOpened Ereignis

Definition

Tritt auf, wenn der NavigationView-Bereich geöffnet wird.

Entsprechende WinUI 2-API für UWP: Microsoft.UI.Xaml.Controls.NavigationView.PaneOpened (für WinUI in der Windows App SDK siehe Windows App SDK Namespaces).

// 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" />

Ereignistyp

Windows-Anforderungen

Gerätefamilie
Windows 10, version 1803 (eingeführt in 10.0.17134.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v6.0)

Gilt für: