Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

MediaPlaybackList.CurrentItemChanged Event

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when the currently playing MediaPlaybackItem changes.

// Register
event_token CurrentItemChanged(TypedEventHandler<MediaPlaybackList, CurrentMediaPlaybackItemChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
MediaPlaybackList::CurrentItemChanged_revoker CurrentItemChanged(auto_revoke_t, TypedEventHandler<MediaPlaybackList, CurrentMediaPlaybackItemChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaPlaybackList,CurrentMediaPlaybackItemChangedEventArgs> CurrentItemChanged;
function onCurrentItemChanged(eventArgs) { /* Your code */ }
mediaPlaybackList.addEventListener("currentitemchanged", onCurrentItemChanged);
mediaPlaybackList.removeEventListener("currentitemchanged", onCurrentItemChanged);
- or -
mediaPlaybackList.oncurrentitemchanged = onCurrentItemChanged;
Public Custom Event CurrentItemChanged As TypedEventHandler(Of MediaPlaybackList, CurrentMediaPlaybackItemChangedEventArgs) 

Event Type

Applies to


Feedback

Was this page helpful?