Skip to main content

SchedulerControl.Views Property

Returns the collection of the SchedulerControl’s views.

Namespace: DevExpress.WinUI.Scheduler

Assembly: DevExpress.WinUI.Scheduler.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public SchedulerViewCollection Views { get; }

Property Value

Type Description
SchedulerViewCollection

A collection that stores all views specified in the scheduler.

Remarks

Views help organize Scheduler data by levels of detail.

  • DayView - the most detailed view that displays appointments for a specific date.

  • WorkWeekView - displays appointments for work days in a specific week. The SchedulerControl.WorkDays property specifies the work days.

  • WeekView - displays appointments for a specific week.

  • MonthView - displays appointments for a specific month.

End-users can select the desired view in the panel at the top right.

The Views property returns the collection of available views. If you declare any view in XAML, the Views collection is overwritten to include only the specified views. The SchedulerControl.ActiveViewIndex property specifies the displayed view by its zero-based index in the Views collection.

See Also