Share via


ScrollView.StateChanged Événement

Définition

Se produit lorsque l’état d’interaction actuel du contrôle a changé.

// Register
event_token StateChanged(TypedEventHandler<ScrollView, IInspectable const&> const& handler) const;

// Revoke with event_token
void StateChanged(event_token const* cookie) const;

// Revoke with event_revoker
ScrollView::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<ScrollView, IInspectable const&> const& handler) const;
public event TypedEventHandler<ScrollView,object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
scrollView.addEventListener("statechanged", onStateChanged);
scrollView.removeEventListener("statechanged", onStateChanged);
- or -
scrollView.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of ScrollView, Object) 

Type d'événement

S’applique à

Voir aussi