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

OptionsWindows.RemindersWindowType Property

Gets or sets the object type inherited from the Window class which is instantiated and shown instead of the default Reminders window.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public Type RemindersWindowType { get; set; }

Property Value

Type Description
Type

A Type of a window which replaces default Reminders window.

Property Paths

You can access this nested property as listed below:

Object Type Path to RemindersWindowType
SchedulerControl
.OptionsWindows .RemindersWindowType

Remarks

The default window class whose instance is displayed on a reminder alert is the RemindersWindow class. The RemindersWindowType property allows you to specify another default window class.

You can also specify a window class to display instead of the Reminders window by subscribing to the SchedulerControl.RemindersWindowShowing event and assigning the appropriate window type to the WindowShowingEventArgs<T>.Window property.

Example

View Example

<dxsch:SchedulerControl.OptionsWindows>
    <dxsch:OptionsWindows RemindersWindowType="{x:Type local:CustomReminderWindow}" />
</dxsch:SchedulerControl.OptionsWindows>
See Also