Skip to main content

SchedulerControl.ShowEditAppointmentForm(Appointment) Method

Invokes the Appointment editing dialog for the specified appointment.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public virtual void ShowEditAppointmentForm(
    Appointment apt
)

Parameters

Name Type Description
apt Appointment

A Appointment instance for which the dialog is invoked.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

This dialog allows end-users to change the properties of any appointment, or add a new one to the data. The standard dialog is shown in the image below.

DXScheduler_EditAppointmentDialog

Tip

Use the SchedulerControl.EditAppointmentFormShowing event to handle the showing of this dialog, and to invoke your own custom dialog instead of the default.

See Also