MediaElement.DownloadProgressChanged É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 la propriété DownloadProgress a changé.
// Register
event_token DownloadProgressChanged(RoutedEventHandler const& handler) const;
// Revoke with event_token
void DownloadProgressChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaElement::DownloadProgressChanged_revoker DownloadProgressChanged(auto_revoke_t, RoutedEventHandler const& handler) const;
public event RoutedEventHandler DownloadProgressChanged;
function onDownloadProgressChanged(eventArgs) { /* Your code */ }
mediaElement.addEventListener("downloadprogresschanged", onDownloadProgressChanged);
mediaElement.removeEventListener("downloadprogresschanged", onDownloadProgressChanged);
- or -
mediaElement.ondownloadprogresschanged = onDownloadProgressChanged;
Public Custom Event DownloadProgressChanged As RoutedEventHandler
<MediaElement DownloadProgressChanged="eventhandler"/>