SchedulerControl.EditAppointmentDialogShowing Event
Occurs before invoking the Edit Appointment dialog.
Namespace: DevExpress.UI.Xaml.Scheduler
Assembly: DevExpress.UI.Xaml.Scheduler.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
Declaration
public event EventHandler<EditAppointmentDialogShowingEventArgs> EditAppointmentDialogShowing
Event Data
The EditAppointmentDialogShowing event's data class is DevExpress.UI.Xaml.Scheduler.EditAppointmentDialogShowingEventArgs.
Remarks
The EditAppointmentDialogShowing is a deferred event. You can process the event in a synchronous mode pausing the SchedulerControl.
To pause the SchedulerControl, use the event’s GetDeferral method. It returns an EventDeferral object. To resume the SchedulerControl’s processing, call the EventDeferral.Complete method.
Important
If you don’t call the EventDeferral.Complete method after calling the GetDeferral method, the SchedulerControl’s processing never resumes.
The EditAppointmentDialogShowing event allows you to create a custom edit form. Use the event’s EditAppointmentDialogShowingEventArgs.ViewModel property to obtain the appointment data (the ViewModel.EditedItem property) and default dialog settings.
If the EditAppointmentDialogShowingEventArgs.Cancel property is set to true, the changes applied to the EditedItem property depend on the event’s EditAppointmentDialogShowingEventArgs.CancelResult property.
CancelResult | Description |
---|---|
Apply | Changes are applied to the selected appointment |
ApplyToPattern | Changes are applied to the selected recurrence’s pattern appointment |
Cancel (default) | Changes are ignored |
Delete | The selected appointment is deleted |
DeletePattern | The selected recurrence’s pattern and all recurrences of this pattern are deleted |
Tip
If the EditedItem is not a recurring appointment, setting the CancelResult property to either ApplyToPattern or DeletePattern throws the InvalidOperationException.