Skip to main content

SchedulerControl.EditAppointmentDialogShowing Event

Occurs before invoking the Edit Appointment dialog.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public event EventHandler<EditAppointmentDialogShowingEventArgs> EditAppointmentDialogShowing

Event Data

The EditAppointmentDialogShowing event's data class is EditAppointmentDialogShowingEventArgs. The following properties provide information specific to this event:

Property
Appointment
CancelResult
Commands
ViewModel

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.

See Also