Hi,
I have an event handler to capture when a date is selected:
_calendar.SelectionChanged += async (object sender, ValueChangedEventArgs<object> e) => {
// I want to change the background color of this date cell.
}
How can I change the color of each cell when a date is selected?
thanks