ItemsPresenter.VerticalSnapPointsChanged 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.
Si verifica quando i punti di snap verticale cambiano.
// Register
event_token VerticalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VerticalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
ItemsPresenter::VerticalSnapPointsChanged_revoker VerticalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> VerticalSnapPointsChanged;
function onVerticalSnapPointsChanged(eventArgs) { /* Your code */ }
itemsPresenter.addEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
itemsPresenter.removeEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
- or -
itemsPresenter.onverticalsnappointschanged = onVerticalSnapPointsChanged;
Public Custom Event VerticalSnapPointsChanged As EventHandler(Of Object) Implements VerticalSnapPointsChanged
<ItemsPresenter VerticalSnapPointsChanged="eventhandler" />