MediaPlayer.CurrentStateChanged Событие

Определение

Происходит при изменении состояния проигрывателя мультимедиа.

Примечание

MediaPlayer.CurrentStateChanged может быть изменен или недоступен после Windows 10 версии 1607. Вместо этого используйте свойство MediaPlayer.PlaybackSession , чтобы получить объект MediaPlaybackSession , а затем используйте событие MediaPlaybackSession.PlaybackStateChanged .

// Register
event_token CurrentStateChanged(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;

// Revoke with event_token
void CurrentStateChanged(event_token const* cookie) const;

// Revoke with event_revoker
MediaPlayer::CurrentStateChanged_revoker CurrentStateChanged(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackStateChanged instead of CurrentStateChanged.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackStateChanged instead of CurrentStateChanged.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
// Register
event_token CurrentStateChanged(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;

// Revoke with event_token
void CurrentStateChanged(event_token const* cookie) const;

// Revoke with event_revoker
MediaPlayer::CurrentStateChanged_revoker CurrentStateChanged(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaPlayer,object> CurrentStateChanged;
[add: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackStateChanged instead of CurrentStateChanged.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Use PlaybackSession.PlaybackStateChanged instead of CurrentStateChanged.  For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 196608, "Windows.Foundation.UniversalApiContract")]
public event TypedEventHandler<MediaPlayer,object> CurrentStateChanged;
function onCurrentStateChanged(eventArgs) { /* Your code */ }
mediaPlayer.addEventListener("currentstatechanged", onCurrentStateChanged);
mediaPlayer.removeEventListener("currentstatechanged", onCurrentStateChanged);
- or -
mediaPlayer.oncurrentstatechanged = onCurrentStateChanged;
Public Custom Event CurrentStateChanged As TypedEventHandler(Of MediaPlayer, Object) 

Тип события

Атрибуты

Применяется к