ScrollPresenter.ViewChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando las manipulaciones, como el desplazamiento y el zoom, han provocado que la vista cambie.
// Register
event_token ViewChanged(TypedEventHandler<ScrollPresenter, IInspectable const&> const& handler) const;
// Revoke with event_token
void ViewChanged(event_token const* cookie) const;
// Revoke with event_revoker
ScrollPresenter::ViewChanged_revoker ViewChanged(auto_revoke_t, TypedEventHandler<ScrollPresenter, IInspectable const&> const& handler) const;
public event TypedEventHandler<ScrollPresenter,object> ViewChanged;
function onViewChanged(eventArgs) { /* Your code */ }
scrollPresenter.addEventListener("viewchanged", onViewChanged);
scrollPresenter.removeEventListener("viewchanged", onViewChanged);
- or -
scrollPresenter.onviewchanged = onViewChanged;
Public Custom Event ViewChanged As TypedEventHandler(Of ScrollPresenter, Object)
Tipo de evento
TypedEventHandler<ScrollPresenter,IInspectable>