$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Calendar Controls for WinForms UI Tutorial
Customize column and row headers in C# for .NET Windows Forms template projects
Home > WinForms UI Controls > User Manual > Customize Behavior Column and Row Header in C#

Column & Row Headers Customizing - WinForms Calendar Controls

The WinForms Calendar component supports not only all features of the standard Calendar control in the Visual Studio toolbox, like first day of week, special days, show today, show week numbers, and hide week numbers, but also additional features that the standard Calendar control do not support, including focused date, show week days, hide week days, date zoom, read only mode as well as show other month days. Furthermore, the Calendar controls provide the support of footer, customizable header and footer, and navigation buttons. Cell formatting including padding, borders, margins, spacing, and alignment is supported by the Calendar Control for WinForms applications.

Customize Calendar Row & Column Headers in C#

The WinForms Calendar component provides several properties to customize the appearance of row and column headers in Calendar. To enable the customizing functionality, use the below properties
  • DisplayRowHeaders, the property is used for determining whether the row of the headers will be displayed or not.
  • DisplayColumnHeaders, the property is used for controling whether the column of the headers will be displayed or not
  • DisplayViewSelector, the property is used for determining whether the selector of view will be displayed or not
The following are C# code for configuring the appearance of row and column headers in Calendar for Windows Forms application interface.

this.calendar1.DisplayRowHeaders = true;
this.calendar1.DisplayColumnHeaders = true;
this.calendar1.DisplayViewSelector = true;
The headers of Calendar are able to be used as selectors to choose groups of dates in multiple select modes. The View Selector is provided for .NET Forms developers to select the whole month view at once when designing the Calendar user interface for WinForms applications. The below C# code shows how to enable the View Selectors for customizing the appearance of row and column headers in Calendar for Windows Forms application

this.calendar1.EnableMultipleSelect = true;
this.calendar1.EnableColumnHeaderSelectors = true;
this.calendar1.EnableRowHeaderSelectors = true;
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls