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

WeekView Class

Displays events across a week in a compact form.

This view is outdated and provided for compatibility with the earlier versions of the Scheduler Control. Use the FullWeekView instead.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.1.dll

Declaration

public class WeekView :
    WeekViewBase,
    IWeekViewProperties,
    ISchedulerViewPropertiesBase,
    ISchedulerPropertiesBase,
    INotifyPropertyChanging,
    INotifyPropertyChanged

The following members return WeekView objects:

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 Scheduler control has several types of view that provide different arrangements and formats for scheduling and viewing appointments. The WeekView class represents a Week View. This type of view enables end-users to schedule and view user events for a single week.

DXScheduler_WeekView

All views are stored in the Scheduler control’s view repository, which can be accessed via the SchedulerControl.Views property. To access the settings of the Week View, use the SchedulerViewRepository.WeekView and SchedulerControl.WeekView properties.

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>

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

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.

See Also