[c#]
SFMonthCellStyle monthCellStyle = new SFMonthCellStyle();
monthCellStyle.TodayTextColor = UIColor.White;
schedule.MonthCellStyle = monthCellStyle;
|
Yes, I talk about red color in day and week headers. Why you leave it without opportunity to customize? It is funny because it is important for me and I can customize every color of your control except exactly this one ((
ViewHeaderStyle viewHeaderStyle = new ViewHeaderStyle();
viewHeaderStyle.CurrentDayTextColor = Color.Blue;
viewHeaderStyle.CurrentDateTextColor = Color.Blue;
schedule.ViewHeaderStyle = viewHeaderStyle; |