MediaTimelineController.StateChanged 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 cambia el estado de MediaTimelineController .
// Register
event_token StateChanged(TypedEventHandler<MediaTimelineController, IInspectable const&> const& handler) const;
// Revoke with event_token
void StateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaTimelineController::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<MediaTimelineController, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaTimelineController,object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
mediaTimelineController.addEventListener("statechanged", onStateChanged);
mediaTimelineController.removeEventListener("statechanged", onStateChanged);
- or -
mediaTimelineController.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of MediaTimelineController, Object)
Tipo de evento
TypedEventHandler<MediaTimelineController,IInspectable>