By default WinMonthViewSingle™ displays Saturday and Sunday as nested days, as the following screen shot shows.
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.