SchedulerControl.TriggeredReminders Property
Provides access to a collection of reminders which are due.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
Property Value
Type | Description |
---|---|
ObservableCollection<TriggeredReminder> | A ObservableCollection<T><TriggeredReminder,> collection of objects originated from reminders which are about to send alerts. |
Remarks
When a reminder becomes due, a TriggeredReminder is created and added to the TriggeredReminders collection. You can handle its CollectionChanged event to perform a custom action on a reminder alert. Subsequently, the SchedulerControl.RemindersWindowShowing event occurs, which allows you to show a custom window or hide the default Reminders Window.
See Also