Skip to main content

RecurrenceFormEventArgs.Controller Property

Gets or sets the controller providing settings which are required to edit appointment recurrence in the Appointment Recurrence form.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public AppointmentFormController Controller { get; set; }

#Property Value

Type Description
AppointmentFormController

An AppointmentFormController object.

#Remarks

Specify the Controller property to invoke the default Appointment Recurrence dialog from the custom Edit Appointment form.

#Examples

This example demonstrates how to handle the SchedulerControl.RecurrenceFormShowing event to invoke the default Appointment Recurrence dialog from the custom Edit Appointment form. To do this, set the RecurrenceFormEventArgs.Controller property to the AppointmentFormController instance, which is created within the appointment editing form initialization code. To get the object specifying the Edit Appointment form from which the Appointment Recurrence form is invoked, use the RecurrenceFormEventArgs.ParentForm property.

See Also