Skip to main content
A newer version of this page is available. .

OptionsWindows.AppointmentWindowType Property

Gets or sets the type for the Appointment Window. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public Type AppointmentWindowType { get; set; }

Property Value

Type Description
Type

A Type value indicating the window type.

Property Paths

You can access this nested property as listed below:

Object Type Path to AppointmentWindowType
SchedulerControl
.OptionsWindows .AppointmentWindowType

Remarks

Use the AppointmentWindowType property to replace the default dialog with a custom window.

Example

Set the OptionsWindows.AppointmentWindowType value to the type of a custom appointment editing window (HospitalAppointmentWindow). Set the OptionsWindows.RecurrenceWindowType value to the type of a custom recurrence window (HospitalRecurrenceWindow).

View Example

<dxsch:SchedulerControl.OptionsWindows>
    <dxsch:OptionsWindows AppointmentWindowType="{x:Type local:HospitalAppointmentWindow}" RecurrenceWindowType="{x:Type local:HospitalRecurrenceWindow}" />
</dxsch:SchedulerControl.OptionsWindows>
See Also