Henrik,
According to
the shared details, we have checked your requirement. You can get the recurrence use edit mode details by using the “RecurringAppointmentEditMode” property from
the AppointmentDeleting event and AppointmentEditorOpening event.
Code Snippet
private void Schedule_AppointmentEditorOpening(object sender, AppointmentEditorOpeningEventArgs e)
{
var recurringAppointmentEditMode
= e.RecurringAppointmentEditMode;
}
private void Schedule_AppointmentDeleting(object sender, AppointmentDeletingEventArgs e)
{
var recurringAppointmentEditMode
= e.RecurringAppointmentEditMode;
}
|
The current implementation
of the WPF Scheduler does not have support to get the recurrence editing dialog
details in the “AppointmentEditorClosing”
event.