MediaSource.StateChanged É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’état actuel de MediaSource change.
// Register
event_token StateChanged(TypedEventHandler<MediaSource, MediaSourceStateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void StateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaSource::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<MediaSource, MediaSourceStateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaSource,MediaSourceStateChangedEventArgs> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
mediaSource.addEventListener("statechanged", onStateChanged);
mediaSource.removeEventListener("statechanged", onStateChanged);
- or -
mediaSource.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of MediaSource, MediaSourceStateChangedEventArgs)
Type d'événement
Configuration requise pour Windows
Famille d’appareils |
Windows 10 (introduit dans 10.0.10586.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v2.0)
|