Skip to main content

MonthView Class

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public class MonthView :
    WeekViewBase,
    IMonthViewProperties,
    IWeekViewProperties,
    ISchedulerViewPropertiesBase,
    ISchedulerPropertiesBase,
    INotifyPropertyChanging,
    INotifyPropertyChanged

#Returned By

Properties that return MonthView instances:

#Remarks

The scheduler control has five view types that provide different arrangements and formats for scheduling and viewing appointments. The MonthView class represents a Month View. This type of view enables end-users to schedule and view user events by month (several weeks).

DXScheduler_MonthView

To specify the number of weeks displayed within the Month View, use the MonthView.WeekCount property.

All views are stored in the scheduler control's view repository, which can be accessed via the SchedulerControl.Views property. To access the settings of the Month View, use the SchedulerViewRepository.MonthView or SchedulerControl.MonthView property.

#Examples

This example demonstrates how to customize the Month View within the SchedulerControl. To do this, it is necessary to modify the MonthView object accessed via the SchedulerControl.MonthView property.

See Also