Skip to main content

AppointmentInplaceEditorBase Class

Provides all the settings which are required to edit a particular appointment in a custom in-place editor.

Namespace: DevExpress.Xpf.Scheduler.UI

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public class AppointmentInplaceEditorBase :
    UserControl,
    ISchedulerInplaceEditorEx,
    IDisposable

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.

The AppointmentInplaceEditorBase class enables you to create your own custom in-place editor, and use it instead of the default editor. It can be helpful, for example, when it is necessary to create something between an Edit Appointment form and simple subject in-place editor.

Note

To substitute the standard in-place editor with your own custom editor, handle the SchedulerControl.InplaceEditorShowing event and use the InplaceEditorEventArgs.InplaceEditor property.

See Also