CalendarMode Enum

Definition

Specifies whether a Calendar displays a month, year, or decade.

public enum CalendarMode
Inheritance
CalendarMode

Fields

Name Value Description
Month 0

The Calendar displays a month at a time.

Year 1

The Calendar displays a year at a time.

Decade 2

The Calendar displays a decade at a time.

Examples

The following example creates a calendar that displays the months in a year and handles the DisplayModeChanged event so that when the user clicks on a month or the year, the calendar does not change its DisplayMode.

Calendar yearCalendar = new Calendar();
yearCalendar.DisplayMode = CalendarMode.Year;
yearCalendar.DisplayModeChanged +=
    new EventHandler<CalendarModeChangedEventArgs>(Calendar_DisplayModeChanged);

// root is a Panel that is defined elswhere.
root.Children.Add(yearCalendar);
<Calendar DisplayMode="Year" DisplayModeChanged="Calendar_DisplayModeChanged" />
private void Calendar_DisplayModeChanged(object sender,
                                         CalendarModeChangedEventArgs e)
{
    Calendar calObj = sender as Calendar;

    calObj.DisplayMode = CalendarMode.Year;
}

Remarks

A Calendar can display a month, a year, or a decade at a time. The following table lists how the user navigates to each mode.

DisplayMode Action
Month To navigate to Year mode, click the month heading.
Year To navigate to Decade mode, click the year heading. To navigate to Month mode, click one of the displayed months.
Decade To navigate to Year mode, click one of the displayed years.

Applies to

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9