Skip to main content

OptionsBehavior.ShowRemindersForm Property

Gets or sets whether a Reminders form is shown, when the time has come for the reminder to alert.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public bool ShowRemindersForm { get; set; }

Property Value

Type Description
Boolean

true if a Reminders form is shown; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowRemindersForm
SchedulerControl
.OptionsBehavior .ShowRemindersForm

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Use the ShowRemindersForm property to specify whether the Reminders form should be shown or not.

DXScheduler_ReminderForm

If ShowRemindersForm is set to false, then the reminder will be silently dismissed, instead of displaying the Reminders form.

Example

This example demonstrates how to specify basic characteristics of the Scheduler control using the SchedulerControl.OptionsBehavior property.

<dxsch:SchedulerControl.OptionsBehavior>
    <dxsch:OptionsBehavior ClientTimeZoneId="Central Pacific Standard Time" 
                           RecurrentAppointmentDeleteAction="Ask" 
                           RecurrentAppointmentEditAction="Occurrence"
                           RemindersFormDefaultAction="DismissAll"
                           ShowRemindersForm="True" 
                           SelectOnRightClick="True"/>
</dxsch:SchedulerControl.OptionsBehavior>
See Also