Skip to main content

SchedulerControl.WorkTime Property

Gets or sets the work time interval. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public TimeSpanRange WorkTime { get; set; }

Property Value

Type Description
TimeSpanRange

A TimeSpanRange object which specifies the work time interval.

Remarks

Use the WorkTime property when the DayViewBase.ShowWorkTimeOnly property is set to true to limit the data shown in a Day View, Work Week View, and Week View to the hours in a working day. Note that working hours are painted with a lighter color than non-working hours. This allows end-users to easily distinguish these two periods within a view, if both working and non-working hours are visible.

The image below shows the Day view with the working time set to 10:00 AM - 13:00 PM.

WPFScheduler_DayView_WorkTime

The WorkTime property also specifies the work time interval for the Timeline View when the it is scaled to hours or work hours.

<dxsch:SchedulerControl x:Name="scheduler" WorkTime="10:00:00-13:00:00">
    <dxsch:TimelineView x:Name="timelineView" IntervalCount="9">
        <dxsch:TimelineView.TimeScales>
            <dxsch:TimeScaleWorkDay x:Name="scaleWorkDay" IsEnabled="True"/>
            <dxsch:TimeScaleWorkHour x:Name="scaleWorkHour" IsEnabled="True"/>
        </dxsch:TimelineView.TimeScales>
    </dxsch:TimelineView>
</dxsch:SchedulerControl>

WPFScheduler_TimelineView_WorkTime

The following code snippets (auto-collected from DevExpress Examples) contain references to the WorkTime 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