Partager via


ScrollView.ViewChanged Événement

Définition

Se produit lorsque des manipulations telles que le défilement et le zoom ont provoqué la modification de la vue.

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

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

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

Type d'événement

S’applique à