ApplicationView.VisibleBoundsChanged É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.
Cet événement est déclenché lorsque la valeur de VisibleBounds change, généralement en raison de l’affichage ou de la masquer de la barre d’status, de la barre de l’application ou d’un autre chrome.
// Register
event_token VisibleBoundsChanged(TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
// Revoke with event_token
void VisibleBoundsChanged(event_token const* cookie) const;
// Revoke with event_revoker
ApplicationView::VisibleBoundsChanged_revoker VisibleBoundsChanged(auto_revoke_t, TypedEventHandler<ApplicationView, IInspectable const&> const& handler) const;
public event TypedEventHandler<ApplicationView,object> VisibleBoundsChanged;
function onVisibleBoundsChanged(eventArgs) { /* Your code */ }
applicationView.addEventListener("visibleboundschanged", onVisibleBoundsChanged);
applicationView.removeEventListener("visibleboundschanged", onVisibleBoundsChanged);
- or -
applicationView.onvisibleboundschanged = onVisibleBoundsChanged;
Public Custom Event VisibleBoundsChanged As TypedEventHandler(Of ApplicationView, Object)
Type d'événement
TypedEventHandler<ApplicationView,IInspectable>