Skip to main content

SchedulerControl.ShowRecurrenceWindow(AppointmentItem) Method

Shows the Recurrence Window for the given appointment.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public void ShowRecurrenceWindow(
    AppointmentItem appointment
)

Parameters

Name Type Description
appointment AppointmentItem

An AppointmentItem instance that is the target appointment.

Remarks

This dialog window allows end-users to change the recurrence information of any appointment.

WPFScheduler_RecurrenceWindow

Use the OptionsWindows.RecurrenceWindowType property to customize the window appearance, for example, to substitute the built-in window with a custom one.

Handle the SchedulerControl.RecurrenceWindowShowing event to handle the display of this window.

Note

The ShowRecurrenceWindow method fires the SchedulerControl.RecurrenceWindowShowing event and displays the window specified by the WindowShowingEventArgs<T>.Window event arguments property. If the event is not handled, default window is the RecurrenceWindow instance.

See Also