SplitView.PaneOpened Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
// 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
TypedEventHandler<SplitView,IInspectable>