MediaTimelineController.Ended Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит, когда контроллер временная шкала достигает конца периода времени, указанного в параметре Duration, если isLoopingEnabled имеет значение false.
// Register
event_token Ended(TypedEventHandler<MediaTimelineController, IInspectable const&> const& handler) const;
// Revoke with event_token
void Ended(event_token const* cookie) const;
// Revoke with event_revoker
MediaTimelineController::Ended_revoker Ended(auto_revoke_t, TypedEventHandler<MediaTimelineController, IInspectable const&> const& handler) const;
public event TypedEventHandler<MediaTimelineController,object> Ended;
function onEnded(eventArgs) { /* Your code */ }
mediaTimelineController.addEventListener("ended", onEnded);
mediaTimelineController.removeEventListener("ended", onEnded);
- or -
mediaTimelineController.onended = onEnded;
Public Custom Event Ended As TypedEventHandler(Of MediaTimelineController, Object)
Тип события
TypedEventHandler<MediaTimelineController,IInspectable>
Требования к Windows
Семейство устройств |
Windows 10 Creators Update (появилось в 10.0.15063.0)
|
API contract |
Windows.Foundation.UniversalApiContract (появилось в v4.0)
|