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

RemindersWindow Class

A window invoked when the reminder triggers an alert.

Namespace: DevExpress.Xpf.Scheduling.Visual

Assembly: DevExpress.Xpf.Scheduling.v21.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public class RemindersWindow :
    ThemedWindow,
    IComponentConnector

Remarks

When a reminder is due, the built-in Reminder controller adds it to the SchedulerControl.TriggeredReminders collection and fires the SchedulerControl.RemindersWindowShowingEvent event. Unless the event handler sets e.Cancel to true, or specifies another window using the WindowShowingEventArgs<T>.Window property, the RemindersWindow is displayed.

You can call the SchedulerControl.ShowRemindersWindow method to display the window at any time. Note that the RemindersWindow shows information on reminders contained in the SchedulerControl.TriggeredReminders collection, so it is empty if a collection is empty.

A window containing two triggered reminders is illustrated in the picture below.

ReminderWindow

See Also