SplitView.PaneOpened Evento

Definizione

Si verifica quando viene aperto il riquadro SplitView .

// Register
event_token PaneOpened(TypedEventHandler<SplitView, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SplitView::PaneOpened_revoker PaneOpened(auto_revoke_t, TypedEventHandler<SplitView, IInspectable const&> const& handler) const;
public event TypedEventHandler<SplitView,object> PaneOpened;
function onPaneOpened(eventArgs) { /* Your code */ }
splitView.addEventListener("paneopened", onPaneOpened);
splitView.removeEventListener("paneopened", onPaneOpened);
- or -
splitView.onpaneopened = onPaneOpened;
Public Custom Event PaneOpened As TypedEventHandler(Of SplitView, Object) 
<SplitView PaneOpened="eventhandler"/>

Tipo evento

Requisiti Windows

Famiglia di dispositivi
Windows 10 Fall Creators Update (è stato introdotto in 10.0.16299.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v5.0)

Si applica a