Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Last active June 28, 2020 23:46
Show Gist options
  • Save MartinZikmund/b555e291b8184f07030652c81727a38a to your computer and use it in GitHub Desktop.
Save MartinZikmund/b555e291b8184f07030652c81727a38a to your computer and use it in GitHub Desktop.
private static void HighlightDay(CalendarViewDayItem displayedDay)
{
displayedDay.Background = new SolidColorBrush(Colors.Red);
}
private static void UnHighlightDay(CalendarViewDayItem displayedDay)
{
displayedDay.Background = new SolidColorBrush(Colors.Transparent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment