Skip to main content

SchedulerControl.ShowNewAppointmentWindow(Boolean, Boolean) Method

Shows an Appointment Window to create a new appointment.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public void ShowNewAppointmentWindow(
    bool allDay,
    bool recurring
)

Parameters

Name Type Description
allDay Boolean

true, to create an all-day appointment; otherwise, false.

recurring Boolean

true, to create a recurring appointment; otherwise, false.

Remarks

The ShowNewAppointmentWindow method invokes the SchedulerControl.AppointmentWindowShowing event and displays the window specified by the WindowShowingEventArgs<T>.Window event argument property. If the event is not handled, default window is the RecurrenceWindow instance.

See Also