Hi,
testing with latest V16.1.0.24 UWP,
in XAML:
...
CellTappedCommand="{Binding CellTappedCommand}"....
in ViewModel:
...
CellTappedCommand = new RelayCommand<CellTappedEventArgs>(CellTapped, CanCellTapped);...
but the methods of the command are never called.
Same thing with CellDoubleTappedCommand.
I tried to use the Commands without the parameter (CellTappedEventArgs), didn't work either.