Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerControl.TriggeredReminders Property

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