SplitView.PaneOpening 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 PaneOpening(TypedEventHandler<SplitView, IInspectable const&> const& handler) const;
// Revoke with event_token
void PaneOpening(event_token const* cookie) const;
// Revoke with event_revoker
SplitView::PaneOpening_revoker PaneOpening(auto_revoke_t, TypedEventHandler<SplitView, IInspectable const&> const& handler) const;
public event TypedEventHandler<SplitView,object> PaneOpening;
function onPaneOpening(eventArgs) { /* Your code */ }
splitView.addEventListener("paneopening", onPaneOpening);
splitView.removeEventListener("paneopening", onPaneOpening);
- or -
splitView.onpaneopening = onPaneOpening;
Public Custom Event PaneOpening As TypedEventHandler(Of SplitView, Object)
<SplitView PaneOpening="eventhandler"/>
Tipo evento
TypedEventHandler<SplitView,IInspectable>
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)
|