Back to Devexpress

SchedulerControl.OptionsWindows Property

wpf-devexpress-dot-xpf-dot-scheduling-dot-schedulercontrol-56a70735.md

latest3.4 KB
Original Source

SchedulerControl.OptionsWindows Property

Gets or sets the options used to customize the scheduler windows.

Namespace : DevExpress.Xpf.Scheduling

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

NuGet Package : DevExpress.Wpf.Scheduling

Declaration

csharp
public OptionsWindows OptionsWindows { get; set; }
vb
Public Property OptionsWindows As OptionsWindows

Property Value

TypeDescription
OptionsWindows

A OptionsWindows object containing window options.

|

Remarks

Use the OptionsWindows property to replace one of the built-in scheduler windows with a custom one.

Tip

Generate one of the default windows and customize it as required using the Scheduler smart tag. Refer to the Create Custom Appointment Window and Create Custom Recurrence Window topics for details.

The following code snippets (auto-collected from DevExpress Examples) contain references to the OptionsWindows property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-scheduler-specify-custom-edit-and-recurrence-dialogs/CS/CustomMvvmFormWithRecurrenceExample/MainWindow.xaml#L39

xml
<!--region #WindowTypes-->
<dxsch:SchedulerControl.OptionsWindows>
    <dxsch:OptionsWindows AppointmentWindowType="{x:Type local:HospitalAppointmentWindow}" RecurrenceWindowType="{x:Type local:HospitalRecurrenceWindow}" />

wpf-scheduler-create-reminders-in-code-and-implement-custom-reminder-window/CS/CustomReminderExample/MainWindow.xaml#L28

xml
<!--region #WindowsOptions-->
<dxsch:SchedulerControl.OptionsWindows>
    <dxsch:OptionsWindows RemindersWindowType="{x:Type local:CustomReminderWindow}" />

See Also

SchedulerControl Class

SchedulerControl Members

DevExpress.Xpf.Scheduling Namespace