StackPanel.VerticalSnapPointsChanged Evento

Definizione

Si verifica quando le misurazioni per i punti di ancoraggio 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
StackPanel::VerticalSnapPointsChanged_revoker VerticalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> VerticalSnapPointsChanged;
function onVerticalSnapPointsChanged(eventArgs) { /* Your code */ }
stackPanel.addEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
stackPanel.removeEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
- or -
stackPanel.onverticalsnappointschanged = onVerticalSnapPointsChanged;
Public Custom Event VerticalSnapPointsChanged As EventHandler(Of Object) Implements VerticalSnapPointsChanged
<StackPanel VerticalSnapPointsChanged="eventhandler" />

Tipo evento

Implementazioni

Si applica a