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

RemindersWindow Class

A window invoked when the reminder triggers an alert.

Namespace: DevExpress.Xpf.Scheduling.Visual

Assembly: DevExpress.Xpf.Scheduling.v24.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