Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerControl.ShowRecurrenceWindow(AppointmentItem) Method

Shows the Recurrence Window for the given appointment.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v24.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