SchedulerControl.FullWeekView Property
Provides access to an object that defines the settings of the scheduler’s Full Week View.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduler
#Declaration
public FullWeekView FullWeekView { get; set; }
#Property Value
Type | Description |
---|---|
Full |
A Full |
#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 FullWeekView property to customize the settings of the Week View.
The Full Week View enables end-users to schedule and display appointments for the entire week. The scheduling area is divided into seven regions which correspond to the seven week days.
Note
To display information using the Full Week View, set the Scheduler
This example demonstrates how to customize the Full Week View within the Scheduler control.
Modify the FullWeekView object accessed via the SchedulerControl.FullWeekView
property.
<dxsch:SchedulerControl.OptionsView>
<dxsch:OptionsView FirstDayOfWeek="Monday" />
</dxsch:SchedulerControl.OptionsView>
<dxsch:SchedulerControl.FullWeekView>
<dxsch:FullWeekView AllDayAreaScrollBarVisible="True" AppointmentPadding="0" Enabled="True">
<dxsch:FullWeekView.WorkTime>
<dxschcore:WorkTimeInterval End="18:0:0" Start="9:0:0"/>
</dxsch:FullWeekView.WorkTime>
</dxsch:FullWeekView>
</dxsch:SchedulerControl.FullWeekView>