Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
MediaPlayer.MediaOpened Event
Definition
- Namespace:
- Windows.Media.Playback
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 media is opened.
// Register
event_token MediaOpened(TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
// Revoke with event_token
void MediaOpened(event_token const* cookie) const;
// Revoke with event_revoker
MediaPlayer::MediaOpened_revoker MediaOpened(auto_revoke_t, TypedEventHandler<MediaPlayer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaPlayer,object> MediaOpened;
function onMediaOpened(eventArgs) { /* Your code */ }
mediaPlayer.addEventListener("mediaopened", onMediaOpened);
mediaPlayer.removeEventListener("mediaopened", onMediaOpened);
- or -
mediaPlayer.onmediaopened = onMediaOpened;
Public Custom Event MediaOpened As TypedEventHandler(Of MediaPlayer, Object)
Event Type
TypedEventHandler<MediaPlayer,IInspectable>
Applies to
Feedback
Was this page helpful?
