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

SchedulerControl.ShowEditRecurrentAppointmentForm(Appointment, Boolean) Method

Invokes the Appointment Recurrence dialog for the specified appointment.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduler, DevExpress.Wpf.Scheduler

Declaration

public virtual void ShowEditRecurrentAppointmentForm(
    Appointment appointment,
    bool readOnly
)

Parameters

Name Type Description
appointment Appointment

An Appointment object whose recurrent information will be edited in the dialog.

readOnly Boolean

True to open this dialog only to display recurrence information with all editors disabled; otherwise, false.

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.

This dialog allows end-users to change recurrence information of any appointment. The standard Recurrence dialog is shown in the image below.

DXScheduler_EditRecurrentAppointmentDialog

Tip

Use the SchedulerControl.RecurrenceFormShowing event to handle the showing of this dialog, and to invoke your own custom dialog instead of the standard one.

See Also