What is the proper syntax for setting the calendar text color? Doing it this way, I get The type 'CalendarMonthView' does not support direct content.
<Style x:Key="SfCalendarFilter" TargetType="calendar:SfCalendar">
<Setter Property="StartRangeSelectionBackground" Value="{StaticResource SecondaryColor}" />
<Setter Property="EndRangeSelectionBackground" Value="{StaticResource SecondaryColor}" />
<Setter Property="SelectionBackground" Value="{StaticResource Accent}" />
<Setter Property="MonthView">
<calendar:CalendarMonthView>
<Setter Property="TextStyle">
<calendar:CalendarTextStyle>
<Setter Property="TextColor" Value="Red"/>
</calendar:CalendarTextStyle>
</Setter>
</calendar:CalendarMonthView>
</Setter>
</Style>