yurkinh / Plugin.Maui.Calendar

.NET MAUI port of XF calendar plugin
MIT License
142 stars 13 forks source link

How do I prevent deselecting a date? #88

Closed clm-unifly closed 1 month ago

clm-unifly commented 2 months ago

Hi, In my app, I am in need to have a guaranteed selected date. If I tap on the already selected date it is deselected. Is there a way to prevent this? Thanks,

yurkinh commented 1 month ago

Hi @clm-unifly There is "DayTappedCommand" which you can disable from the ViewModel after data is selected

[RelayCommand(CanExecute = Condition)]
Task EventSelected(object item)
{
}