ScrollView.ViewChanged 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 le manipolazioni, ad esempio lo scorrimento e lo zoom, hanno causato la modifica della visualizzazione.
// 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)
Tipo evento
TypedEventHandler<ScrollView,IInspectable>