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);
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page