MediaPlayer.MediaPlayerRateChanged 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 la velocidad de reproducción multimedia ha cambiado.
Nota
MediaPlayer.MediaPlayerRateChanged puede modificarse o no estar disponible después de Windows 10, versión 1607. En su lugar, utilice la propiedad MediaPlayer.PlaybackSession para obtener un objeto MediaPlaybackSession y, a continuación, use el evento MediaPlaybackSession.PlaybackRateChanged .
// Register
event_token MediaPlayerRateChanged(TypedEventHandler<MediaPlayer, MediaPlayerRateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void MediaPlayerRateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaPlayer::MediaPlayerRateChanged_revoker MediaPlayerRateChanged(auto_revoke_t, TypedEventHandler<MediaPlayer, MediaPlayerRateChangedEventArgs const&> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackRateChanged instead of MediaPlayerRateChanged. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackRateChanged instead of MediaPlayerRateChanged. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
// Register
event_token MediaPlayerRateChanged(TypedEventHandler<MediaPlayer, MediaPlayerRateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void MediaPlayerRateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaPlayer::MediaPlayerRateChanged_revoker MediaPlayerRateChanged(auto_revoke_t, TypedEventHandler<MediaPlayer, MediaPlayerRateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaPlayer,MediaPlayerRateChangedEventArgs> MediaPlayerRateChanged;
[add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackRateChanged instead of MediaPlayerRateChanged. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackRateChanged instead of MediaPlayerRateChanged. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
public event TypedEventHandler<MediaPlayer,MediaPlayerRateChangedEventArgs> MediaPlayerRateChanged;
function onMediaPlayerRateChanged(eventArgs) { /* Your code */ }
mediaPlayer.addEventListener("mediaplayerratechanged", onMediaPlayerRateChanged);
mediaPlayer.removeEventListener("mediaplayerratechanged", onMediaPlayerRateChanged);
- or -
mediaPlayer.onmediaplayerratechanged = onMediaPlayerRateChanged;
Public Custom Event MediaPlayerRateChanged As TypedEventHandler(Of MediaPlayer, MediaPlayerRateChangedEventArgs)
Tipo de evento
- Atributos