PivotPanel.HorizontalSnapPointsChanged 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.
Questa proprietà è riservata per l'uso interno e non deve essere usata nel codice.
// Register
event_token HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void HorizontalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
PivotPanel::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
pivotPanel.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
pivotPanel.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
pivotPanel.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Public Custom Event HorizontalSnapPointsChanged As EventHandler(Of Object) Implements HorizontalSnapPointsChanged