MediaElement.MediaEnded É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 l’élément MediaElement termine la lecture audio ou vidéo.
// Register
event_token MediaEnded(RoutedEventHandler const& handler) const;
// Revoke with event_token
void MediaEnded(event_token const* cookie) const;
// Revoke with event_revoker
MediaElement::MediaEnded_revoker MediaEnded(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler MediaEnded;
function onMediaEnded(eventArgs) { /* Your code */ }
mediaElement.addEventListener("mediaended", onMediaEnded);
mediaElement.removeEventListener("mediaended", onMediaEnded);
- or -
mediaElement.onmediaended = onMediaEnded;
Public Custom Event MediaEnded As RoutedEventHandler
<MediaElement MediaEnded="eventhandler" ../>