Share via


NavigationView.PaneOpened 이벤트

정의

NavigationView 창이 열릴 때 발생합니다.

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

이벤트 유형

적용 대상