Focused and Non-Focused Month Brush

In Schedule month view, date of the current selected month and date of previous/next months can be differentiated using the FocusedMonth and NonFocusedMonth properties respectively.

<Schedule:SfSchedule x:Name="schedule" FocusedMonth="White" 

NonFocusedMonth="WhiteSmoke" ScheduleType="Month" />
SfSchedule schedule = new SfSchedule();

schedule.ScheduleType = ScheduleType.Month;

schedule.FocusedMonth = new SolidColorBrush(Colors.White);

schedule.NonFocusedMonth = new SolidColorBrush(Colors.WhiteSmoke);

this.grid.Children.Add(schedule);