NavigationView.PaneClosing イベント

定義

NavigationView ペインが閉じているときに発生します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.NavigationView.PaneClosing (Windows App SDKの WinUI の場合は、Windows App SDK名前空間を参照してください)。

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

イベントの種類

Windows の要件

デバイス ファミリ
Windows 10, version 1803 (10.0.17134.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v6.0 で導入)

適用対象