ScrollView.ViewChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
TypedEventHandler<ScrollView,IInspectable>