SchedulerControl.WeekView Property
Provides access to an object that defines the settings of the scheduler’s Week View.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduler
#Declaration
#Property Value
Type | Description |
---|---|
Week |
A Week |
#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.
Use the WeekView property to customize the settings of the Week View.
The Week View enables end-users to schedule and display appointments by week. The scheduling area is divided into seven regions which correspond to the seven week days.
Note
To make the Scheduler
#Example
This example demonstrates how to customize the Week View within the Scheduler control.
To do this, it is necessary to modify the WeekView object accessed via the SchedulerControl.WeekView
property.
<dxsch:SchedulerControl.WeekView>
<dxsch:WeekView>
<dxsch:WeekView.AppointmentDisplayOptions>
<dxsch:SchedulerWeekViewAppointmentDisplayOptions ShowRecurrence="True"
ShowReminder="True"
StartTimeVisibility="Never"
EndTimeVisibility="Never" />
</dxsch:WeekView.AppointmentDisplayOptions>
</dxsch:WeekView>
</dxsch:SchedulerControl.WeekView>
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the WeekView 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.