SchedulerControl.TriggeredReminders Property
In This Article
Provides access to a collection of reminders which are due.
Namespace: DevExpress.Xpf.Scheduling
Assembly: DevExpress.Xpf.Scheduling.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduling
#Declaration
public ObservableCollection<TriggeredReminder> TriggeredReminders { get; }
#Property Value
Type | Description |
---|---|
Observable |
A Observable |
#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