次の方法で共有


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 で導入)

適用対象