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.v18.2.dll

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

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the RemindersWindowType property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also