Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public WeekView WeekView { get; set; }

Property Value

Type Description
WeekView

A WeekView object representing the Week View in the scheduling area.

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.

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.

DXScheduler_WeekView

Note

To make the SchedulerControl control display information using the Week View, set the SchedulerControl.ActiveViewType property to SchedulerViewType.Week.

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 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.

See Also