ToastNotifier.ScheduledToastNotificationShowing 事件

定義

發生于系統顯示排程的快顯通知時。

// 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) 

事件類型

Windows 需求

裝置系列
Windows 10, version 1809 (已於 10.0.17763.0 引進)
API contract
Windows.Foundation.UniversalApiContract (已於 v7.0 引進)

適用於