You can achieve this with not much of an effort using c#. And to be honest it's much better than writing up a style for such a trivial thing. Below is how you do it:
Subscribe to the CalendarViewDayItemChanging event of the CalendarView
Write up the code to change the color, something like below:
private void CalendarView_CalendarViewDayItemChanging(CalendarView sender, CalendarViewDayItemChangingEventArgs args)
{
if (args.Item.Date.Date.Equals(DateTime.Now.Date))
args.Item.Background = new SolidColorBrush(Colors.Yellow);
}
You can achieve this with not much of an effort using c#. And to be honest it's much better than writing up a style for such a trivial thing. Below is how you do it:
CalendarViewDayItemChanging
event of theCalendarView
While your XAML declaration looks like below: