Last active
June 28, 2020 23:46
-
-
Save MartinZikmund/b555e291b8184f07030652c81727a38a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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