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

VisualDayViewResourcesBasedViewInfo Class

Serves as a base for classes that provide information on the visual representation of the Day or Work-Week view’s elements displayed in the SchedulerControl, based on resources.

Namespace: DevExpress.Xpf.Scheduler.Drawing

Assembly: DevExpress.Xpf.Scheduler.v18.2.dll

Declaration

public abstract class VisualDayViewResourcesBasedViewInfo :
    VisualResourcesBasedViewInfo,
    IVisualDayView,
    IAppointmentsInfoChangedListener<DayViewAppointmentInfo>

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.

Example

This example demonstrates how to handle the SchedulerControl.CustomizeVisualViewInfo event to hide day headers and time ruler headers in the Scheduler Control when the Day View is currently active and the view is grouped by resources. To do this, set the VisualDayViewResourcesBasedViewInfo.ShowDayHeaders and VisualDayViewResourcesBasedViewInfo.ShowTimeRulerHeader properties to false.

private void schedulerControl1_CustomizeVisualViewInfo(object sender, DevExpress.Xpf.Scheduler.CustomizeVisualViewInfoEventArgs e) {
    // Determine whether the currently active view is the Day View and appointments are grouped by resource.
    if (e.VisualViewInfo is VisualDayViewGroupByResource) {
        VisualDayViewGroupByResource dayViewByResource = (VisualDayViewGroupByResource)e.VisualViewInfo;
        // Hide day headers.
       dayViewByResource.ShowDayHeaders = false;
        // Hide time ruler headers.
        dayViewByResource.ShowTimeRulerHeader = false;
    }
}
See Also