Skip to main content
A newer version of this page is available. .

ToastNotificationsManager.Dropped Event

Occurs when a notification owned by this ToastNotificationsManager could not be displayed due to end-user system settings.

Namespace: DevExpress.XtraBars.ToastNotifications

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Behavior")]
public event EventHandler<ToastNotificationEventArgs> Dropped

Event Data

The Dropped event's data class is ToastNotificationEventArgs. The following properties provide information specific to this event:

Property Description
NotificationID Gets the ID of a notification related to the current event.

Remarks

End-users can disable notifications for certain applications via operating system settings. If a notification cannot be shown due to end-user system settings, the Dropped event fires. Handle this event to show alternate notifications (e.g., using Alert Windows) if toast notifications are currently unavailable.

See Also