Version

Display Weekends As Full Days

By default WinMonthViewSingle™ displays Saturday and Sunday as nested days, as the following screen shot shows.

ultramonthviewsingle displaying weekends as compressed

You can change this default setting so that Saturday and Sunday are displayed as full days, like the other days of the week. The following example code shows how make such a change.

In Visual Basic:

Imports Infragistics.Win.UltraWinSchedule
...
Me.UltraMonthViewSingle1.WeekendDisplayStyle = WeekendDisplayStyleEnum.Full

In C#:

using Infragistics.Win.UltraWinSchedule;
...
this.ultraMonthViewSingle1.WeekendDisplayStyle = WeekendDisplayStyleEnum.Full;

Using the above code snippet results in the WinMonthViewSingle appearing similar to the following.

ultramonthviewsingle display weekends as full days