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.v24.1.dll
NuGet Package: DevExpress.Wpf.Scheduling
Declaration
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 |
|
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>
Related GitHub Examples
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.