ToastNotifier.ScheduledToastNotificationShowing 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 el sistema muestra la notificación del sistema programada.
// Register
event_token ScheduledToastNotificationShowing(TypedEventHandler<ToastNotifier, ScheduledToastNotificationShowingEventArgs const&> const& handler) const;
// Revoke with event_token
void ScheduledToastNotificationShowing(event_token const* cookie) const;
// Revoke with event_revoker
ToastNotifier::ScheduledToastNotificationShowing_revoker ScheduledToastNotificationShowing(auto_revoke_t, TypedEventHandler<ToastNotifier, ScheduledToastNotificationShowingEventArgs const&> const& handler) const;
public event TypedEventHandler<ToastNotifier,ScheduledToastNotificationShowingEventArgs> ScheduledToastNotificationShowing;
function onScheduledToastNotificationShowing(eventArgs) { /* Your code */ }
toastNotifier.addEventListener("scheduledtoastnotificationshowing", onScheduledToastNotificationShowing);
toastNotifier.removeEventListener("scheduledtoastnotificationshowing", onScheduledToastNotificationShowing);
- or -
toastNotifier.onscheduledtoastnotificationshowing = onScheduledToastNotificationShowing;
Public Custom Event ScheduledToastNotificationShowing As TypedEventHandler(Of ToastNotifier, ScheduledToastNotificationShowingEventArgs)
Tipo de evento
Requisitos de Windows
Familia de dispositivos |
Windows 10, version 1809 (se introdujo en la versión 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (se introdujo en la versión v7.0)
|