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

ToastNotificationsManager.Activated Event

Fires when an end-user clicks an active notification.

Namespace: DevExpress.XtraBars.ToastNotifications

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

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

Event Data

The Activated 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

Handle the Activated event to perform specific actions when an end-user clicks a ToastNotification, owned by this ToastNotificationsManager. To determine which notification has been clicked, use the ToastNotificationEventArgs.NotificationID property of the e parameter.

If an end-user does not click a notification during its lifetime, the ToastNotificationsManager.TimedOut event fires. See the Toast Notification Manager topic to learn more.

See Also