NavigationView.PaneClosing 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 NavigationView pane is closing.
Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.NavigationView.PaneClosing (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
// Register
event_token PaneClosing(TypedEventHandler<NavigationView, NavigationViewPaneClosingEventArgs const&> const& handler) const;
// Revoke with event_token
void PaneClosing(event_token const* cookie) const;
// Revoke with event_revoker
NavigationView::PaneClosing_revoker PaneClosing(auto_revoke_t, TypedEventHandler<NavigationView, NavigationViewPaneClosingEventArgs const&> const& handler) const;
public event TypedEventHandler<NavigationView,NavigationViewPaneClosingEventArgs> PaneClosing;
function onPaneClosing(eventArgs) { /* Your code */ }
navigationView.addEventListener("paneclosing", onPaneClosing);
navigationView.removeEventListener("paneclosing", onPaneClosing);
- or -
navigationView.onpaneclosing = onPaneClosing;
Public Custom Event PaneClosing As TypedEventHandler(Of NavigationView, NavigationViewPaneClosingEventArgs)
<NavigationView PaneClosing="eventhandler" />
Event Type
Windows requirements
Device family |
Windows 10, version 1803 (introduced in 10.0.17134.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v6.0)
|