RadControls for WinForms

RadCalendar supports row and column headers that can be enabled by setting the ShowRowHeaders, ShowColumnHeaders and ShowViewSelector properties:

calendar-customizing-behavior-column-and-row-headers 001

Copy[C#]
this.radCalendar1.ShowRowHeaders = true;
this.radCalendar1.ShowColumnHeaders = true;
this.radCalendar1.ShowViewSelector = true;
Copy[VB.NET]
Me.RadCalendar1.ShowRowHeaders = True
Me.RadCalendar1.ShowColumnHeaders = True
Me.RadCalendar1.ShowViewSelector = True

These headers can be used as selectors which which allow you to quickly select groups of days in multi-select mode. The View Selector allows you to select the whole month view at once.

Copy[C#]
this.radCalendar1.AllowMultipleSelect = true;
this.radCalendar1.AllowColumnHeaderSelectors = true;
this.radCalendar1.AllowRowHeaderSelectors = true;
Copy[VB.NET]
Me.RadCalendar1.AllowMultipleSelect = True
Me.RadCalendar1.AllowColumnHeaderSelectors = True
Me.RadCalendar1.AllowRowHeaderSelectors = True

calendar-customizing-behavior-column-and-row-headers 002